mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-04-04 18:22:09 +00:00
Add detections for expedited app removal
They only affect 24H2 and newer. Earlier releases don't have these expedited apps
This commit is contained in:
parent
31fc41588b
commit
3f2d42fa3f
@ -285,20 +285,22 @@ public class PowerManagement {
|
|||||||
reg add "HKLM\zSYSTEM\Setup\LabConfig" /v "BypassTPMCheck" /t REG_DWORD /d 1 /f
|
reg add "HKLM\zSYSTEM\Setup\LabConfig" /v "BypassTPMCheck" /t REG_DWORD /d 1 /f
|
||||||
reg add "HKLM\zSYSTEM\Setup\MoSetup" /v "AllowUpgradesWithUnsupportedTPMOrCPU" /t REG_DWORD /d 1 /f
|
reg add "HKLM\zSYSTEM\Setup\MoSetup" /v "AllowUpgradesWithUnsupportedTPMOrCPU" /t REG_DWORD /d 1 /f
|
||||||
|
|
||||||
# Prevent Windows Update Installing so called Expedited Apps
|
# Prevent Windows Update Installing so called Expedited Apps - 24H2 and newer
|
||||||
@(
|
if ((Microwin-TestCompatibleImage $imgVersion $([System.Version]::new(10,0,26100,1))) -eq $true) {
|
||||||
'EdgeUpdate',
|
@(
|
||||||
'DevHomeUpdate',
|
'EdgeUpdate',
|
||||||
'OutlookUpdate',
|
'DevHomeUpdate',
|
||||||
'CrossDeviceUpdate'
|
'OutlookUpdate',
|
||||||
) | ForEach-Object {
|
'CrossDeviceUpdate'
|
||||||
Write-Host "Removing Windows Expedited App: $_"
|
) | ForEach-Object {
|
||||||
|
Write-Host "Removing Windows Expedited App: $_"
|
||||||
|
|
||||||
# Copied here After Installation (Online)
|
# Copied here After Installation (Online)
|
||||||
# reg delete "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Orchestrator\UScheduler\$_" /f | Out-Null
|
# reg delete "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Orchestrator\UScheduler\$_" /f | Out-Null
|
||||||
|
|
||||||
# When in Offline Image
|
# When in Offline Image
|
||||||
reg delete "HKLM\zSOFTWARE\Microsoft\WindowsUpdate\Orchestrator\UScheduler_Oobe\$_" /f | Out-Null
|
reg delete "HKLM\zSOFTWARE\Microsoft\WindowsUpdate\Orchestrator\UScheduler_Oobe\$_" /f | Out-Null
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
reg add "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f
|
reg add "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f
|
||||||
|
Loading…
Reference in New Issue
Block a user