Pause on error by default

This commit is contained in:
Manuel Thalmann 2024-08-01 21:08:31 +02:00
parent 7215cfe7b0
commit eed031e193

View file

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