远程文件下载
powershell -c "(new-object System.Net.WebClient).DownloadFile('http://192.168.2.210:8000/index.html','C:UsershuanmsfDesktopindex.html')"
服务管理
Get-Service -Name se*
Stop-Service -Name spooler
Restart-Service -Name spooler
Get-Service | Where-Object -FilterScript {$_.CanStop} | Restart-Service