我想使用powershell v1.0,打开Internet Explorer并以自助服务终端模式访问某个网址,等待30分钟,然后关闭所有Internet Explorer实例。
到目前为止,我有以下ps命令,它将在kiosk模式下打开IE并转到网址
Write-Host "Starting IE"
C:\Progra~1\Intern~1\iexplore.exe -k http://google.com
答案 0 :(得分:1)
关注您的代码:
Write-Host "Starting IE"
C:\Progra~1\Intern~1\iexplore.exe -k http://google.com
start-sleep -seconds 1800
get-process iexplore -ErrorAction silentlycontinue | stop-process -ErrorAction silentlycontinue