vc6操作批处理文件bat和cmd命令

vc写代码执行cmd命令

ShellExecute(NULL,_T("open"), _T("cmd.exe"), _T("/c ipconfig") , NULL, SW_SHOWNORMAL); 

ShellExecute(NULL,_T("open"), _T("cmd.exe"), _T("/c net stop mysql") , NULL, SW_SHOWNORMAL); 

 

vc写代码执行bat文件

system("F:\\unity\\server\\mysql-5.1.6-win32\\bin\\install.bat");

ShellExecute函数不能执行bat文件

你可能感兴趣的:(vc6操作批处理文件bat和cmd命令)