mirror of
https://github.com/Raphire/Win11Debloat.git
synced 2026-07-20 21:10:20 +08:00
12 lines
251 B
PowerShell
12 lines
251 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Returns the explicitly targeted user name or the current process user name.
|
|
#>
|
|
function Get-UserName {
|
|
if ($script:Params.ContainsKey("User")) {
|
|
return $script:Params.Item("User")
|
|
}
|
|
|
|
return $env:USERNAME
|
|
}
|