Powershell小技巧之轻松从网上下载文件

时间:2022-06-01 22:16:53

支持所有PS版本

在PS中可以轻松的从网上下载文件。这里有一段代码下载PS说明书(这是一个珍贵并丰富的Powershell文档)自动到你的电脑。

 

复制代码 代码如下:

$link = 'http://download.microsoft.com/download/3/2/6/326DF7A1-EE5B-491B-9130-F9AA9C23C29A/PowerShell%202%200%20Language%20Specification.docx'
$outfile = "$env:temp\languageref.docx"
Invoke-WebRequest -Uri $link -OutFile $outfile
Invoke-Item -Path $outfile