首页 > 代码库 > 自动设置ip bat文件 虚函数重载

自动设置ip bat文件 虚函数重载

实现软件启动的时候就自动修改ip地址,可以自动调用






重载项目ForcePlate.cpp中的InitInstance()函数,并在该初始化函数中加

ShellExecute(NULL, _T("open"), _T("1.bat"),NULL, m_strEXEPath, SW_SHOW);

1.bat文件:(修改ip)

netsh int ip set addr name="本地连接" source=static addr=192.168.2.3 mask=255.255.255.0

2.bat文件:(还原)

@echo off 
netsh interface ip set address "本地连接" dhcp    (//P:“dhcp”设置成自动获得ip地址)
netsh interface ip set dns "本地连接" dhcp 








需要在退出的时候处理,那么重载虚函数ExitInstance()








ShellExecute
  ShellExecute的功能是运行一个外部程序(或者是打开一个已注册的文件、打开一个目录、打印一个文件等等),并对外部程序有一定的控制。


bat文件学习与使用:http://jingyan.baidu.com/article/e8cdb32b61e98437052bada9.html






自动设置ip bat文件 虚函数重载