mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-04-04 10:12:09 +00:00
remove helper console logs
This commit is contained in:
parent
a2c31008cf
commit
faad84da46
@ -46,19 +46,15 @@ Function Get-WinUtilToggleStatus {
|
|||||||
Write-Debug "$($regentry.Name) is false (state: $regstate, value: $($regentry.Value), original: $($regentry.OriginalValue))"
|
Write-Debug "$($regentry.Name) is false (state: $regstate, value: $($regentry.Value), original: $($regentry.OriginalValue))"
|
||||||
}
|
}
|
||||||
if (!$regstate) {
|
if (!$regstate) {
|
||||||
write-host "missing $($regentry.Name)"
|
|
||||||
switch ($regentry.DefaultState) {
|
switch ($regentry.DefaultState) {
|
||||||
"true" {
|
"true" {
|
||||||
write-host "true"
|
|
||||||
$regstate = $regentry.Value
|
$regstate = $regentry.Value
|
||||||
$count += 1
|
$count += 1
|
||||||
}
|
}
|
||||||
"false" {
|
"false" {
|
||||||
write-host "false"
|
|
||||||
$regstate = $regentry.OriginalValue
|
$regstate = $regentry.OriginalValue
|
||||||
}
|
}
|
||||||
default {
|
default {
|
||||||
write-host "default"
|
|
||||||
Write-Error "Entry for $($regentry.Name) does not exist and no DefaultState is defined."
|
Write-Error "Entry for $($regentry.Name) does not exist and no DefaultState is defined."
|
||||||
$regstate = $regentry.OriginalValue
|
$regstate = $regentry.OriginalValue
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user