Simplify Copilot/Recall to one option in Custom Mode

This commit is contained in:
Raphire
2025-04-19 21:03:40 +02:00
parent 9cdad77107
commit 9f0a331582
4 changed files with 14 additions and 10 deletions

View File

@@ -822,14 +822,9 @@ function DisplayCustomModeOptions {
if ($WinVersion -ge 22621){
Write-Output ""
if ($( Read-Host -Prompt "Disable & remove Windows Copilot? This applies to all users (y/n)" ) -eq 'y') {
if ($( Read-Host -Prompt "Disable & remove Windows Copilot and Windows Recall snapshots? This applies to all users (y/n)" ) -eq 'y') {
AddParameter 'DisableCopilot' 'Disable and remove Windows Copilot'
}
Write-Output ""
if ($( Read-Host -Prompt "Disable Windows Recall snapshots? This applies to all users (y/n)" ) -eq 'y') {
AddParameter 'DisableRecall' 'Disable Windows Recall snapshots'
AddParameter 'DisableRecall' 'Disable and remove Windows Recall snapshots'
}
}