powershell Microsoft.PowerShell_profile
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell Microsoft.PowerShell_profile相关的知识,希望对你有一定的参考价值。
function Measure-Command2 ([scriptblock]$Expression, [int]$Samples = 1, [Switch]$Silent) {
$timings = @()
do {
$sw = New-Object Diagnostics.Stopwatch
if ($Silent) {
$sw.Start()
$null = & $Expression
$sw.Stop()
Write-Host "." -NoNewline
}
else {
$sw.Start()
& $Expression
$sw.Stop()
}
$timings += $sw.Elapsed
$Samples--
} while ($Samples -gt 0)
if ($Silent) {
Write-Host
}
$stats = $timings | Measure-Object -Average -Minimum -Maximum -Property Ticks
Write-Host "Avg:`t$(New-Object System.TimeSpan $stats.Average)"
Write-Host "Min:`t$(New-Object System.TimeSpan $stats.Minimum)"
Write-Host "Max:`t$(New-Object System.TimeSpan $stats.Maximum)"
}
Set-Alias time Measure-Command2
以上是关于powershell Microsoft.PowerShell_profile的主要内容,如果未能解决你的问题,请参考以下文章
powershell PowerShell:启动PowerShell作为其他用户提升
powershell [提示输入powershell] #powershell #input #prompt
powershell 测量PowerShell命令或PowerShell脚本的速度
powershell远程下载exe并执行
powershell 使用啥端口
如何在不卸载powershell的情况下,有效禁用/启用powershel