Pause before reboot when debugging

This commit is contained in:
Manuel Thalmann 2024-09-12 19:04:37 +02:00
parent 8c376a029e
commit 3bf64ff7e5
2 changed files with 5 additions and 0 deletions
scripts/Windows/Scripts

View file

@ -185,6 +185,10 @@ $null = New-Module {
}
}
if ($env:DEBUG -and (-not $Global:NonInteractive)) {
Read-Host "Press enter to reboot";
}
Restart-Computer -Force;
}
}