문서 편집 권한이 없습니다. 다음 이유를 확인해주세요: 요청한 명령은 다음 권한을 가진 사용자에게 제한됩니다: 사용자. 문서의 원본을 보거나 복사할 수 있습니다. ==== Syntax ==== <source lang="powershell">Invoke-WebRequest [-Uri] <uri> [-UseBasicParsing] [-WebSession <WebRequestSession>] [-SessionVariable <string>] [-Credential <pscredential>] [-UseDefaultCredentials] [-CertificateThumbprint <string>] [-Certificate <X509Certificate>] [-UserAgent <string>] [-DisableKeepAlive] [-TimeoutSec <int>] [-Headers <IDictionary>] [-MaximumRedirection <int>] [-Method <WebRequestMethod> {Default | Get | Head | Post | Put | Delete | Trace | Options | Merge | Patch}] [-Proxy <uri>] [-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-Body <Object>] [-ContentType <string>] [-TransferEncoding <string> {chunked | compress | deflate | gzip | identity}] [-InFile <string>] [-OutFile <string>] [-PassThru] [<CommonParameters>]</source> ==== Aliases ==== * iwr * wget * curl ==== Remark ==== Get-Help cannot find the Help files for this cmdlet on this computer. It is displaying only partial help. * To download and install Help files for the module that includes this cmdlet, use Update-Help. * To view the Help topic for this cmdlet online, type: "Get-Help Invoke-WebRequest -Online" or go to http://go.microsoft.com/fwlink/?LinkID=217035. ==== Example ==== <source lang="powershell">PS C:\> curl http://localhost/images/sample.png -outfile d:\sample.png</source> <nowiki>http://localhost/images/sample.png</nowiki> 파일을 로컬 디렉터리에 파일(d:\sample.png)로 저장한다. [[분류:PowerShell]] Invoke-WebRequest 문서로 돌아갑니다.