InstallShield 杀掉进程
时间:2014-03-15 08:11:39
收藏:0
阅读:456
将运行中进程杀掉:
卸载时使用(调用CMD命令):
szApplicationPath = WINSYSDIR^"taskkill.exe ";
szApplicationCmdLine = "APP.exe";
LongPathToQuote( szApplicationPath, TRUE );
szCmdLine = szApplicationPath + " " + "/f" + " " + "/im" + " " + "\"" + szApplicationCmdLine + "\"";
LaunchAppAndWait ("", szCmdLine, WAIT);
本文出自 “None” 博客,请务必保留此出处http://evely.blog.51cto.com/1089422/1377054
InstallShield 杀掉进程,布布扣,bubuko.com
原文:http://evely.blog.51cto.com/1089422/1377054
评论(0)