2023-09-27 10:32:44 +00:00
|
|
|
#!/bin/pwsh
|
2024-08-07 19:05:32 +00:00
|
|
|
. "$PSScriptRoot/../../../scripts/Common/Scripts/Context.ps1";
|
2023-09-27 10:32:44 +00:00
|
|
|
. "$PSScriptRoot/../../../scripts/Windows/OS/Install.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;
|