使用bat批处理关闭并间隔5秒后重新启动chrom浏览器软件
使用bat批处理关闭并间隔5秒后重新启动chrom浏览器软件@echo off
echo 准备关闭chrome软件。。。
taskkill /f /im chrome.exe
echo 关闭软件成功
echo 准备启动chrome软件。。。
start "" "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
echo 启动软件成功
echo 等待5秒后再次启动
CHOICE /T 5 /C ync /CS /D y /n
echo 重新启动本程序
start "" "D:\start_Program.bat"
echo 退而本界面
exit
使用bat批处理关闭并间隔5秒后重新启动360极速浏览器软件
@echo off
echo 准备关闭chrome软件。。。
taskkill /f /im 360chrome.exe
echo 关闭软件成功
echo 准备启动chrome软件。。。
start "" "C:\Users\Administrator\AppData\Local\360Chrome\Chrome\Application\360chrome.exe"
echo 启动软件成功
echo 等待5秒后再次启动
CHOICE /T 5 /C ync /CS /D y /n
echo 重新启动本程序
start "" "D:\start_Program2.bat"
echo 退而本界面
exit
页:
[1]