fix(setup): correct property type in registry modification command
All checks were successful
Build latest image / build-container (push) Successful in 1m28s
All checks were successful
Build latest image / build-container (push) Successful in 1m28s
This commit is contained in:
parent
1497fa19d0
commit
4d2c993ba2
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user