Pause on error by default

This commit is contained in:
Manuel Thalmann 2024-08-01 21:08:31 +02:00
parent d9be9fe3da
commit b5d9489f21

View file

@ -16,6 +16,7 @@ $null = New-Module {
Finishes the installation of a running Windows machine.
#>
function Start-WindowsInstallation {
$ErrorActionPreference = 'Inquire';
Start-InstallationLoop;
}