将运行中进程杀掉:

   卸载时使用(调用CMD命令):

         szApplicationPath = WINSYSDIR^"taskkill.exe ";
       szApplicationCmdLine = "APP.exe";
       LongPathToQuote( szApplicationPath, TRUE );
       szCmdLine = szApplicationPath +  " " + "/f" + " " + "/im" + " " + "\"" + szApplicationCmdLine + "\"";
       LaunchAppAndWait ("", szCmdLine, WAIT);