Implement the windows installation in a loop

This commit is contained in:
Manuel Thalmann 2024-07-31 16:09:50 +02:00
parent 401aa9e41c
commit afb2d1be65
2 changed files with 51 additions and 22 deletions

View file

@ -11,15 +11,24 @@
. "$PSScriptRoot/../Scripts/SetupConfig.ps1"; . "$PSScriptRoot/../Scripts/SetupConfig.ps1";
. "$PSScriptRoot/../Software/Firefox/Install.ps1"; . "$PSScriptRoot/../Software/Firefox/Install.ps1";
<#
Finishes the installation of a running Windows machine.
#>
function Start-WindowsInstallation { function Start-WindowsInstallation {
Start-InstallationLoop;
}
<#
.SYNOPSIS
Starts the installation loop.
#>
function Start-InstallationLoop {
. "$PSScriptRoot/../Scripts/Choco.ps1"; . "$PSScriptRoot/../Scripts/Choco.ps1";
. "$PSScriptRoot/../Scripts/Hooks.ps1"; . "$PSScriptRoot/../Scripts/Hooks.ps1";
. "$PSScriptRoot/../Scripts/PowerManagement.ps1"; . "$PSScriptRoot/../Scripts/PowerManagement.ps1";
. "$PSScriptRoot/../Scripts/SetupConfig.ps1"; . "$PSScriptRoot/../Scripts/SetupConfig.ps1";
while (-not (Get-IsFinished)) { while (-not (Get-IsFinished)) {
}
switch (Get-Stage) { switch (Get-Stage) {
$null { $null {
Invoke-Hook "Start-Initialization" -Fallback { Invoke-Hook "Start-Initialization" -Fallback {
@ -45,6 +54,7 @@ function Start-WindowsInstallation {
Default {} Default {}
} }
} }
}
function Invoke-WindowsInstallation([Context] $context) { function Invoke-WindowsInstallation([Context] $context) {
$Global:InformationPreference = "Continue"; $Global:InformationPreference = "Continue";

View file

@ -5,6 +5,7 @@ using namespace System.Security.Principal;
$null = New-Module { $null = New-Module {
[string] $configRoot = "HKLM:\Software\PortValhalla"; [string] $configRoot = "HKLM:\Software\PortValhalla";
[string] $stageOption = "Stage"; [string] $stageOption = "Stage";
[string] $finishedOption = "Finished";
[RegistryKey] $key = $null; [RegistryKey] $key = $null;
<# <#
@ -99,4 +100,22 @@ $null = New-Module {
$null = Set-SetupOption $stageOption $Name; $null = Set-SetupOption $stageOption $Name;
} }
<#
.SYNOPSIS
Gets a value indicating whether the setup has finished.
#>
function Get-IsFinished {
return [bool] (Get-SetupOption $finishedOption);
}
<#
.SYNOPSIS
Sets a value indicating whether the setup has finished.
#>
function Set-IsFinished {
param(
$Value
)
}
} }