支持所有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
新聞熱點
疑難解答