PortValhalla/profiles/Generic/Windows/Install.ps1

14 lines
392 B
PowerShell
Raw Normal View History

#!/bin/pwsh
2024-08-07 19:05:32 +00:00
. "$PSScriptRoot/../../../scripts/Common/Scripts/Context.ps1";
2024-08-27 21:35:56 +00:00
. "$PSScriptRoot/../../../scripts/Windows/OS/Manage.ps1";
. "$PSScriptRoot/../../../scripts/Windows/Collections/Generic.ps1"
function Restore-Apps {
param([Context] $context)
Restore-GenericApps $context;
}
[Context]$context = [Context]::new();
Invoke-WindowsInstallation $context;
Restart-Computer -Force;