fix(setup): correct property type in registry modification command
All checks were successful
Build latest image / build-container (push) Successful in 1m28s

This commit is contained in:
Nicolai Ort 2025-04-25 14:37:36 +02:00
parent 1497fa19d0
commit 4d2c993ba2
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ So richten Sie den Kiosk für die Veranstaltung ein.
New-Item -Path $RegistryPath -Force | Out-Null
}
New-ItemProperty -Path $RegistryPath -Name $Name -Value $Value -DWORD -Force | Out-Null
New-ItemProperty -Path $RegistryPath -Name $Name -Value $Value -Type DWORD -Force | Out-Null
powercfg.exe -x -monitor-timeout-ac 0
powercfg.exe -x -monitor-timeout-dc 0

View File

@ -118,7 +118,7 @@ How to set up the kiosk for the event.
New-Item -Path $RegistryPath -Force | Out-Null
}
New-ItemProperty -Path $RegistryPath -Name $Name -Value $Value -DWORD -Force | Out-Null
New-ItemProperty -Path $RegistryPath -Name $Name -Value $Value -Type DWORD -Force | Out-Null
powercfg.exe -x -monitor-timeout-ac 0
powercfg.exe -x -monitor-timeout-dc 0