HTTP/HTTPS 요청을 수행합니다. 참고: 이 명령어는 PowerShell을 통해서만 사용할 수 있습니다. 더 많은 정보: https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/invoke-webrequest.
Invoke-WebRequest {{http://example.com}} -OutFile {{경로\대상\파일}}
application/x-www-form-urlencoded
타입의 POST 요청):Invoke-WebRequest -Method Post -Body @{ name='bob' } {{http://example.com/form}}
Invoke-WebRequest -Headers {{@{ X-My-Header = '123' }}} -Method {{PUT}} {{http://example.com}}
Invoke-WebRequest -Body {{'{"name":"bob"}'}} -ContentType 'application/json' {{http://example.com/users/1234}}
Invoke-WebRequest -Headers @{ Authorization = "Basic "+ [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes("myusername:mypassword")) } {{http://example.com}}