mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 14:45:52 -06:00
Added get installed check for classic start menu tweak (#2231)
Co-authored-by: Chris Titus <contact@christitus.com>
This commit is contained in:
parent
49b7224a6f
commit
7dcd0ed67e
@ -2852,6 +2852,15 @@
|
||||
$process = Get-Process -Name \"explorer\"
|
||||
Stop-Process -InputObject $process
|
||||
"
|
||||
],
|
||||
"registry": [
|
||||
{
|
||||
"Path": "HKCU:\\Software\\Classes\\CLSID\\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\\InprocServer32",
|
||||
"Name": "(default)",
|
||||
"Value": "",
|
||||
"OriginalValue": "",
|
||||
"Type": "String"
|
||||
}
|
||||
]
|
||||
},
|
||||
"WPFTweaksDiskCleanup": {
|
||||
|
@ -58,6 +58,9 @@ Function Invoke-WinUtilCurrentSystem {
|
||||
$values += $False
|
||||
}
|
||||
}
|
||||
else {
|
||||
$values += $False
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
13
winutil.ps1
13
winutil.ps1
@ -8,7 +8,6 @@
|
||||
Author : Chris Titus @christitustech
|
||||
Runspace Author: @DeveloperDurp
|
||||
GitHub : https://github.com/ChrisTitusTech
|
||||
Version : 24.07.08
|
||||
#>
|
||||
param (
|
||||
[switch]$Debug,
|
||||
@ -1808,6 +1807,9 @@ Function Invoke-WinUtilCurrentSystem {
|
||||
$values += $False
|
||||
}
|
||||
}
|
||||
else {
|
||||
$values += $False
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -11761,6 +11763,15 @@ $sync.configs.tweaks = '{
|
||||
$process = Get-Process -Name \"explorer\"
|
||||
Stop-Process -InputObject $process
|
||||
"
|
||||
],
|
||||
"registry": [
|
||||
{
|
||||
"Path": "HKCU:\\Software\\Classes\\CLSID\\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\\InprocServer32",
|
||||
"Name": "(default)",
|
||||
"Value": "",
|
||||
"OriginalValue": "",
|
||||
"Type": "String"
|
||||
}
|
||||
]
|
||||
},
|
||||
"WPFTweaksDiskCleanup": {
|
||||
|
Loading…
Reference in New Issue
Block a user