标题: [求助]请教下,为何不能运行下一程序。
[打印本页]
作者: zaqqaz
时间: 2010-7-11 10:44
标题: [求助]请教下,为何不能运行下一程序。
@echo off
for /f "skip=3" %%i in ('wmic process get name^|findstr /v /i "smss.exe csrss.exe winlogon.exe services.exe lsass.exe svchost.exe explorer.exe ctfmon.exe"') do taskkill /f /t /im %%i
start a.exe
echo
请教:为何不能运行a.exe文件呀!
谢谢!
作者: qinchun36
时间: 2010-7-11 13:17
a.exe 是否跟你的批处理在一个文件夹?
如果是的话直接就 a.exe 就可以了,不要 start
作者: zaqqaz
时间: 2010-7-11 17:38
谢谢,我试试。