Refactor switch statements
This commit is contained in:
parent
67fc0770f3
commit
04e8ae1197
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ function Start-WindowsInstallation([Context] $context) {
|
|||
|
||||
while (-not $finished) {
|
||||
switch ($context.GetStage()) {
|
||||
{ $_ -in $null,$initialConfigStage } {
|
||||
{ (-not $_) -or ($_ -eq $initialConfigStage) } {
|
||||
$context.SetStage($initialConfigStage);
|
||||
|
||||
if ((Get-Command Initialize-Configuration -ErrorAction SilentlyContinue)) {
|
||||
|
|
|
@ -25,7 +25,7 @@ function New-PersonalUser([Context] $context, [string] $userName)
|
|||
}
|
||||
|
||||
switch (Get-UserStage) {
|
||||
{ $_ -in $null,$creationStage } {
|
||||
{ (-not $_) -or ($_ -eq $creationStage) } {
|
||||
Set-UserStage $creationStage;
|
||||
|
||||
if (-not (Get-LocalUser $userName -ErrorAction SilentlyContinue)) {
|
||||
|
|
Loading…
Reference in a new issue