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