如何从文件下载弹出窗口下载文件并保存

时间:2014-05-10 13:04:00

标签: powershell download

我正在尝试从文件下载弹出下载文件并将其保存到某个位置。

我正在使用:

$ie = new-object -com "InternetExplorer.Application"
$wc = New-Object System.Net.WebClient

有人可以分享一些PowerShell提示/代码吗?

1 个答案:

答案 0 :(得分:0)

我想你在问:我如何使用powershell下载文件?

    $webclient = New-Object System.Net.WebClient
    $webclient.DownloadFile("http://www.example.com/file.txt", "~\downloads\file.txt" )

哪里"〜\"是C:\ users \ [yourusername] \

的快捷方式