从powershell 2.0运行下载文件到目录脚本

时间:2014-12-18 23:15:34

标签: powershell-v2.0

我正在尝试编写脚本或直接从批处理中运行 - 这将从Internet下载文件并将其放在脚本运行的目录中。我可以在v3和v4中完成它,但是powershell 2.0给了我一些问题。我不是程序员,所以这对我来说基本上是新的。

我想要的。

从网址下载文件 将文件放在从

运行.bat或.ps1的目录中

运气好吗?

1 个答案:

答案 0 :(得分:0)

在PowerShell使用BITS功能之前,您需要导入BitsTransfer模块,例如

Powershell import-module BitsTransfer; Start-BitsTransfer (source) (destination)