我試圖解析以下網頁:解析網頁使用PowerShell
http://msdn.microsoft.com/en-us/library/ff647642.aspx
對於此行:
Offline catalog (Wsusscn2.cab). This is the offline catalog file. Download it from http://go.microsoft.com/fwlink/?LinkId=76054.
所以,我可以下載鏈接存在的文件。
但是,每當我做到以下幾點:
$url = http://go.microsoft.com/fwlink/?LinkId=76054
$result = Invoke-WebRequest $url
$result.content | select-string "Wsusscn2.cab"
這只是返回頁面上的所有內容。我如何解析鏈接?
[此Q/A](HTTP:/ /stackoverflow.com/questions/15859843/grab-image-links-from-html-website-using-powershell)可能是你在找什麼。 – admdrew 2014-08-28 19:55:05
我不認爲它是重複的,因爲關鍵在於激活重定向。 – 2014-08-31 11:07:27