查看 Windows PowerShell 的版本:
Get-Host | Select-Object Version
检查执行策略:
有关信息和说明,请键入:
get-help about_execution_policies
若要查找系统上的执行策略,请键入:
get-executionpolicy
若要更改系统上的执行策略,请使用 Set-ExecutionPolicy cmdlet。例如,若要将执行策略更改为 RemoteSigned,请键入:
set-executionpolicy remotesigned
搜索文件中的关键字:
get-childitem | select-string -pattern "关键字"
释放原来的IP地址
ipconfig /release
获取新的ip 地址
ipconfig /renew
转载请注明出处:http://blog.csdn.net/xiezuoyong/article/details/11029905