ウェブページの取得 - 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


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS