8 lines
208 B
PowerShell
8 lines
208 B
PowerShell
. "$PSScriptRoot/Manage.ps1";
|
|
|
|
function Invoke-WindowsInstallation([Context] $context)
|
|
{
|
|
. "$PSScriptRoot/../Scripts/Prerequisites.ps1";
|
|
Invoke-Upgrade $context;
|
|
Invoke-WindowsRestore $context;
|
|
}
|