2023-06-22 15:05:19 +00:00
|
|
|
. "$PSScriptRoot/../../../scripts/Windows/Scripts/Prerequisites.ps1";
|
|
|
|
. "$PSScriptRoot/../../../scripts/Windows/Scripts/Context.ps1";
|
2023-06-16 20:49:47 +00:00
|
|
|
|
|
|
|
$null = New-Module {
|
2023-06-22 15:18:50 +00:00
|
|
|
Write-Information "Starting Restoration of Windows";
|
2023-06-22 15:05:19 +00:00
|
|
|
. "$PSScriptRoot/../../../scripts/Windows/OS/Install.ps1";
|
2023-06-21 20:07:25 +00:00
|
|
|
[Context]$context = [Context]::new();
|
|
|
|
$context.EntryPoint = "$($MyInvocation.MyCommand.Path)";
|
|
|
|
Invoke-WindowsInstallation $context;
|
2023-06-16 20:49:47 +00:00
|
|
|
}
|