Added get installed check for classic start menu tweak (#2231)

Co-authored-by: Chris Titus <contact@christitus.com>
This commit is contained in:
btstromberg 2024-07-08 22:11:39 +02:00 committed by GitHub
parent 49b7224a6f
commit 7dcd0ed67e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 24 additions and 1 deletions

View File

@ -2852,6 +2852,15 @@
$process = Get-Process -Name \"explorer\" $process = Get-Process -Name \"explorer\"
Stop-Process -InputObject $process Stop-Process -InputObject $process
" "
],
"registry": [
{
"Path": "HKCU:\\Software\\Classes\\CLSID\\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\\InprocServer32",
"Name": "(default)",
"Value": "",
"OriginalValue": "",
"Type": "String"
}
] ]
}, },
"WPFTweaksDiskCleanup": { "WPFTweaksDiskCleanup": {

View File

@ -58,6 +58,9 @@ Function Invoke-WinUtilCurrentSystem {
$values += $False $values += $False
} }
} }
else {
$values += $False
}
} }
} }

View File

@ -8,7 +8,6 @@
Author : Chris Titus @christitustech Author : Chris Titus @christitustech
Runspace Author: @DeveloperDurp Runspace Author: @DeveloperDurp
GitHub : https://github.com/ChrisTitusTech GitHub : https://github.com/ChrisTitusTech
Version : 24.07.08
#> #>
param ( param (
[switch]$Debug, [switch]$Debug,
@ -1808,6 +1807,9 @@ Function Invoke-WinUtilCurrentSystem {
$values += $False $values += $False
} }
} }
else {
$values += $False
}
} }
} }
@ -11761,6 +11763,15 @@ $sync.configs.tweaks = '{
$process = Get-Process -Name \"explorer\" $process = Get-Process -Name \"explorer\"
Stop-Process -InputObject $process Stop-Process -InputObject $process
" "
],
"registry": [
{
"Path": "HKCU:\\Software\\Classes\\CLSID\\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\\InprocServer32",
"Name": "(default)",
"Value": "",
"OriginalValue": "",
"Type": "String"
}
] ]
}, },
"WPFTweaksDiskCleanup": { "WPFTweaksDiskCleanup": {