Powershell检查网站响应并计算执行时间例子


有时候你需要知道命令的执行时间,例如,你可以使用Invoke-WebReques查看网站的响应,再使用Measure-Command计算执行的时间。

$url = 'http://www.powershell.com'

 

 

# track execution time:

$timeTaken = Measure-Command -Expression {

  $site = Invoke-WebRequest -Uri $url

}

 

$milliseconds = $timeTaken.TotalMilliseconds

 

$milliseconds = [Math]::Round($milliseconds, 1)

 

"This took $milliseconds ms to execute"

其中返回的时间间隔属性中包涵了一个“TotalMilliseconds”属性;如果有必须要你也可以使用Round()函数将其化整,这个例子中我们将保留小数点后第一位。

PowerShell添加本地账户脚本分享
脚本源码:$nt=[adsi]"WinNT://localhost"$user=$nt.create("user","test")$user.setpassword("password")$user.setinfo()Get-WmiObject-ClassWin32_UserAccount-Filter"name='test'"|Set-WmiInstance-Argument

PowerShell检查网卡状态和对应的电源设置
适用于Windows8.1/Server2012R2操作系统。在Windows8.1和WindowsServer2012R2中引入了一些用来管理网络适配器的命令。当你想检查Wifi的连通性,比如你想弄明白为什

PowerShell中实现混淆密码示例
适用于PowerShell3.0或者更高版本,尽管我们并不推荐将密码硬编码在脚本文件中,但是仍旧有一些场景非如此不可。与将密码以一种纯文本的方式硬编码