Pause on error by default

This commit is contained in:
Manuel Thalmann 2024-08-01 21:08:31 +02:00
parent e5a3bdd0b8
commit 85dc2a8c48

View file

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