$wc = New-Object System.Net.WebClient
$DownloadString = $wc.DownloadString("http://www.example.com")
$HTML = New-Object -ComObject "HTMLFile"
$HTML.IHTMLDocument2_write($DownloadString)
服务器脚本运行在
Major Minor Build Revision
----- ----- ----- --------
5 1 14409 1005
开发电脑
Major Minor Build Revision
----- ----- ----- --------
5 1 15063 502
我的 Windows 10 开发 PC 在上面的代码中运行良好。我想在我的 Server 2008 R2 x64 机器上运行它。我将它升级到 PowerShell v5。我得到以下信息:
方法调用失败,因为 [System.__ComObject] 不包含名为“IHTMLDocument2_write”的方法。
然后下线...
Unable to find type [mshtml.HTMLDocumentClass].