20 lines
704 B
PowerShell
20 lines
704 B
PowerShell
#!/bin/pwsh
|
|
. "$PSScriptRoot/Drivers.ps1";
|
|
. "$PSScriptRoot/../../../scripts/Windows/Collections/Personal.ps1"
|
|
. "$PSScriptRoot/../../../scripts/Windows/OS/Install.ps1";
|
|
. "$PSScriptRoot/../../../scripts/Windows/Scripts/Context.ps1";
|
|
|
|
function Initialize-Configuration {
|
|
# Fix synchronization between Linux and Windows clock
|
|
Set-ItemProperty "HKLM:\SYSTEM\CurrentControlSet\Control\TimeZoneInformation" -Name "RealTimeIsUniversal" -Value 1 -Type "DWord";
|
|
}
|
|
|
|
function Restore-Apps {
|
|
param([Context] $context)
|
|
Restore-PersonalApps $context;
|
|
}
|
|
|
|
Write-Host "Starting Restoration of Windows";
|
|
[Context]$context = [Context]::new();
|
|
Invoke-WindowsInstallation $context;
|
|
Restart-Computer -Force;
|