2012-07-31 2 views

답변

0

당신은 파일의 정확한 URL은 당신이, 당신이 해결 방법으로 PowerShell을 사용하여 다운로드하려는 알고있는 경우 :

$client = New-Object System.Net.WebClient 
$client.DownloadFile("http://example.com/path/to/file", "path/to/destination/file.zip") 
관련 문제