我使用此脚本的目的是一次打开5个网址...! 现在我想在30秒后自动关闭此浏览器。
它将如何运作?任何想法?
@echo off
START chrome.exe javascript:document. "http://google.com"
exit
答案 0 :(得分:1)
@echo off
START chrome.exe javascript:document. "http://google.com"
w32tm /stripchart /computer:localhost /period:1 /dataonly /samples:30 >nul 2>&1
taskkill /im chrome.exe /f
exit
答案 1 :(得分:0)
您可以使用Windows Sysinternals Tools中的pskill。
要暂停使用timeout 30
这样的事情:
@echo off
START chrome.exe javascript:document. "http://google.com"
... more stuff here ...
TIMEOUT 30
PSKILL chrome.exe