首先,我正在尝试将一个网页保存为powershell中的.mht文件
之后,我需要能够再次从该文件中检索内容,
并将其存储在init.d
对象中,就像使用HtmlWebResponse
cmdlet检索网站一样。
示例:
Get-WebResponse
我需要类似的东西:
$google = Get-WebResponse -Uri 'http://www.google.be'
$google.GetType()
IsPublic IsSerial Name BaseType
-------- -------- ---- --------
True False HtmlWebResponseObject Microsoft.PowerShell.Commands.WebResponseObject
# Save content
Save-AsMht -Content $google -Path 'C:\temp\savedFile.mht'
# Retrieve content
$google2 = Read-Mht -Path 'C:\temp\savedFile.mht'
为$google2