mirror of
https://github.com/Raphire/Win11Debloat.git
synced 2026-02-17 16:06:59 +00:00
30 lines
991 B
PowerShell
30 lines
991 B
PowerShell
# Shows the CLI menu options and prompts the user to select one. Loops until a valid option is selected.
|
|
function ShowCLIMenuOptions {
|
|
Do {
|
|
$ModeSelectionMessage = "Please select an option (1/2)"
|
|
|
|
PrintHeader 'Menu'
|
|
|
|
Write-Host "(1) Default mode: Quickly apply the recommended changes"
|
|
Write-Host "(2) App removal mode: Select & remove apps, without making other changes"
|
|
|
|
# Only show this option if SavedSettings file exists
|
|
if (Test-Path $script:SavedSettingsFilePath) {
|
|
Write-Host "(3) Quickly apply your last used settings"
|
|
|
|
$ModeSelectionMessage = "Please select an option (1/2/3)"
|
|
}
|
|
|
|
Write-Host ""
|
|
Write-Host ""
|
|
|
|
$Mode = Read-Host $ModeSelectionMessage
|
|
|
|
if (($Mode -eq '3') -and -not (Test-Path $script:SavedSettingsFilePath)) {
|
|
$Mode = $null
|
|
}
|
|
}
|
|
while ($Mode -ne '1' -and $Mode -ne '2' -and $Mode -ne '3')
|
|
|
|
return $Mode
|
|
} |