mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2026-07-16 00:40:39 +00:00
13 lines
351 B
PowerShell
13 lines
351 B
PowerShell
function Test-WinUtilPerformanceTrace {
|
|
$enabledValue = ([string]$env:WINUTIL_PERF_LOG).ToLowerInvariant()
|
|
if ($enabledValue -in @("1", "true", "yes", "on")) {
|
|
return $true
|
|
}
|
|
|
|
if ($null -ne $sync -and $sync.ContainsKey("PerformanceTraceEnabled")) {
|
|
return [bool]$sync.PerformanceTraceEnabled
|
|
}
|
|
|
|
return $false
|
|
}
|