Pause on error by default

This commit is contained in:
Manuel Thalmann 2024-08-01 21:08:31 +02:00
parent 985661a91e
commit 6c7bb9c268

View file

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