Added more information about game DVR to README & script prompts

This commit is contained in:
Raphire
2024-06-27 22:22:34 +02:00
parent 589f2e82df
commit 1e90e941a8
2 changed files with 5 additions and 5 deletions

View File

@@ -282,7 +282,7 @@ The quick and advanced method support parameters to tailor the behaviour of the
| -RemoveW11Outlook | Remove the new Outlook for Windows app. | | -RemoveW11Outlook | Remove the new Outlook for Windows app. |
| -RemoveDevApps | Remove developer-related apps such as Remote Desktop, DevHome and Power Automate. | | -RemoveDevApps | Remove developer-related apps such as Remote Desktop, DevHome and Power Automate. |
| -RemoveGamingApps | Remove the Xbox App and Xbox Gamebar. | | -RemoveGamingApps | Remove the Xbox App and Xbox Gamebar. |
| -DisableDVR | Disable Xbox game DVR. | | -DisableDVR | Disable Xbox game/screen recording feature & stop gaming overlay popups. |
| -ClearStart | Remove all pinned apps from the start menu. NOTE: This applies to all existing and new users. (Windows 11 update 22H2 or later only) | | -ClearStart | Remove all pinned apps from the start menu. NOTE: This applies to all existing and new users. (Windows 11 update 22H2 or later only) |
| -DisableTelemetry | Disable telemetry, diagnostic data & targeted ads. | | -DisableTelemetry | Disable telemetry, diagnostic data & targeted ads. |
| -DisableBing | Disable & remove bing search, bing AI & cortana in Windows search. | | -DisableBing | Disable & remove bing search, bing AI & cortana in Windows search. |

View File

@@ -700,7 +700,7 @@ if ((-not $global:Params.Count) -or $RunDefaults -or $RunWin11Defaults -or ($SPP
AddParameter 'RemoveW11Outlook' 'Remove the new Outlook for Windows app' AddParameter 'RemoveW11Outlook' 'Remove the new Outlook for Windows app'
AddParameter 'RemoveDevApps' 'Remove developer-related apps' AddParameter 'RemoveDevApps' 'Remove developer-related apps'
AddParameter 'RemoveGamingApps' 'Remove the Xbox App and Xbox Gamebar' AddParameter 'RemoveGamingApps' 'Remove the Xbox App and Xbox Gamebar'
AddParameter 'DisableDVR' 'Disable Xbox game DVR' AddParameter 'DisableDVR' 'Disable Xbox game/screen recording'
} }
'3' { '3' {
Write-Output "You have selected $($global:SelectedApps.Count) apps for removal" Write-Output "You have selected $($global:SelectedApps.Count) apps for removal"
@@ -709,8 +709,8 @@ if ((-not $global:Params.Count) -or $RunDefaults -or $RunWin11Defaults -or ($SPP
Write-Output "" Write-Output ""
if ($( Read-Host -Prompt "Disable Xbox game DVR? (y/n)" ) -eq 'y') { if ($( Read-Host -Prompt "Disable Xbox game/screen recording? Also stops gaming overlay popups (y/n)" ) -eq 'y') {
AddParameter 'DisableDVR' 'Disable Xbox game DVR' AddParameter 'DisableDVR' 'Disable Xbox game/screen recording'
} }
} }
} }
@@ -1073,7 +1073,7 @@ else {
continue continue
} }
'DisableDVR' { 'DisableDVR' {
RegImport "> Disabling Xbox game DVR..." $PSScriptRoot\Regfiles\Disable_DVR.reg RegImport "> Disabling Xbox game/screen recording..." $PSScriptRoot\Regfiles\Disable_DVR.reg
continue continue
} }
'ClearStart' { 'ClearStart' {