Exit script after rebooting

This commit is contained in:
Manuel Thalmann 2023-06-25 18:11:56 +02:00
parent 2320c9dbf4
commit 9cd6834819
2 changed files with 2 additions and 0 deletions

View file

@ -35,5 +35,6 @@ function New-PersonalUser([Context] $context)
Write-Host "Registering setup script for all new users";
$context.RegisterNewUserReboot();
Restart-Computer;
exit;
}
}

View file

@ -114,5 +114,6 @@ class Context {
Write-Host "Restarting Computer...";
$this.RegisterReboot();
Restart-Computer;
exit;
}
}