Fix time for QEMU VMs

This commit is contained in:
Manuel Thalmann 2024-08-18 09:35:16 +02:00
parent 0e2a0acadc
commit dd7b18f8d7

View file

@ -485,8 +485,10 @@ $null = New-Module {
switch (Get-Stage) { switch (Get-Stage) {
([SetupStage]::Configure) { ([SetupStage]::Configure) {
if (Get-Config "valhalla.windows.dualboot.enable") { if (Get-Config "valhalla.windows.dualboot.enable") {
# Fix synchronization between Linux and Windows clocks. if (-not (Test-Qemu)) {
Set-ItemProperty "HKLM:\SYSTEM\CurrentControlSet\Control\TimeZoneInformation" -Name "RealTimeIsUniversal" -Value 1 -Type "DWord"; # Fix synchronization between Linux and Windows clocks.
Set-ItemProperty "HKLM:\SYSTEM\CurrentControlSet\Control\TimeZoneInformation" -Name "RealTimeIsUniversal" -Value 1 -Type "DWord";
}
# Force time resynchronization # Force time resynchronization
$timeZoneOption = "Start"; $timeZoneOption = "Start";