在IE中使用powershell打开网页会挂起

时间:2019-09-13 16:29:13

标签: powershell internet-explorer

我尝试使用Powershell代码打开网页,以便使用PDFCreator打印页面。当我尝试运行它时,它挂了;可能是在打开Internet Explorer时。

$ie = new-object -com internetexplorer.application 
if ($showWindow) {
    $ie.Visible = $true
} else {
    $ie.Visible = $false
}
$ie.navigate($WebSiteURL) 

为什么会挂起,我该如何解决?

0 个答案:

没有答案