14 lines
410 B
PowerShell
14 lines
410 B
PowerShell
|
#!/bin/pwsh
|
||
|
. "$PSScriptRoot/../../../../../scripts/Common/Scripts/Context.ps1";
|
||
|
. "$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;
|