我如何使用这样的批处理文件:restart.bat explorer.exe
什么变量" explorer.exe"举行?
例如,批处理文件如下所示:
@echo off
taskkill /f /im %VARIABLE%
start %VARIABLE%
color b
echo COMPLETE
timeout /t 10
exit
感谢您的帮助。
答案 0 :(得分:0)
在您的示例中,explorer.exe
将位于%1
批处理参数中。
@echo off
taskkill /f /im %1
...
答案 1 :(得分:0)
您应该在批处理文件中这样写:
%1
代表参数
在您的情况下,%1
将替换为explorer.exe
restart.bat explorer.exe
@echo off
color b
taskkill /f /im %1
start %1
echo COMPLETE
timeout /t 3 /nobreak>nul
exit