2023-06-18 17:58:01 +00:00
|
|
|
. "$PSScriptRoot/../../scripts/Windows/Scripts/Prerequisites.ps1";
|
2023-06-16 20:49:47 +00:00
|
|
|
. "$PSScriptRoot/../../scripts/Windows/Scripts/Context.ps1";
|
|
|
|
|
|
|
|
$null = New-Module {
|
|
|
|
. "$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
|
|
|
}
|