10 lines
422 B
PowerShell
10 lines
422 B
PowerShell
. "$PSScriptRoot/../../../scripts/Windows/Scripts/Prerequisites.ps1";
|
|
. "$PSScriptRoot/../../../scripts/Windows/Scripts/Context.ps1";
|
|
|
|
$null = New-Module {
|
|
Write-Information "Starting Restoration of Windows";
|
|
. "$PSScriptRoot/../../../scripts/Windows/OS/Install.ps1";
|
|
[Context]$context = [Context]::new();
|
|
$context.EntryPoint = "$($MyInvocation.MyCommand.Path)";
|
|
Invoke-WindowsInstallation $context;
|
|
}
|