powershell在自助终端模式下打开Internet Explorer,30分钟后终止

时间:2012-07-11 13:24:55

标签: internet-explorer powershell

我想使用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

1 个答案:

答案 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