mirror of
https://github.com/Raphire/Win11Debloat.git
synced 2026-04-03 22:16:30 +00:00
10 lines
246 B
PowerShell
10 lines
246 B
PowerShell
function GetFriendlyTargetUserName {
|
|
$target = GetTargetUserForAppRemoval
|
|
|
|
switch ($target) {
|
|
"AllUsers" { return "all users" }
|
|
"CurrentUser" { return "the current user" }
|
|
default { return "user $target" }
|
|
}
|
|
}
|