ウェブページの取得 - Invoke-WebRequest (wget)GET$res = wget http://www.yahoo.co.jp/ $res.Content | Out-File index.html echo $res.Links.href POST$params = @{ name = "taro"; age = 10 } $res = wget -Method Post -Uri http://example.com/ -Body $params 注意点
参考http://technet.microsoft.com/library/3e3dac17-3373-4d22-a54a-9d56a4a556c3(v=wps.630).aspx |
|