docs(kiosk): Added sleep hints
This commit is contained in:
parent
3e7e82c8b5
commit
759376ca13
@ -17,8 +17,8 @@ So richten Sie den Kiosk für die Veranstaltung ein.
|
||||
1. Laden Sie [psexec](/files/psexec.exe) herunter
|
||||
2. Öffnen Sie eine PowerShell mit Administratorrechten
|
||||
3. Wechseln Sie zum Download-Ordner `cd C:\Users\<Benutzername>\Downloads`
|
||||
4. Führen Sie den psexec-Befehl aus: `.\psexec.exe -i -s powershell.exe`
|
||||
5. Führen Sie das folgende Skript aus
|
||||
4. Führe den psexec-Befehl aus: `.\psexec.exe -i -s powershell.exe`
|
||||
5. Führe das folgende Skript aus
|
||||
|
||||
```powershell
|
||||
$assignedAccessConfiguration = @"
|
||||
@ -26,7 +26,7 @@ So richten Sie den Kiosk für die Veranstaltung ein.
|
||||
<AssignedAccessConfiguration xmlns="http://schemas.microsoft.com/AssignedAccess/2017/config" xmlns:rs5="http://schemas.microsoft.com/AssignedAccess/201810/config" xmlns:v4="http://schemas.microsoft.com/AssignedAccess/2021/config">
|
||||
<Profiles>
|
||||
<Profile Id="{EDB3036B-780D-487D-A375-69369D8A8F78}">
|
||||
<KioskModeApp v4:ClassicAppPath="%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge.exe" v4:ClassicAppArguments="--kiosk http://10.1.1.90:5173/ --kiosk-printing --edge-kiosk-type=fullscreen" />
|
||||
<KioskModeApp v4:ClassicAppPath="%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge.exe" v4:ClassicAppArguments="--kiosk https://kiosk.lauf-fuer-kaya.de/ --kiosk-printing --edge-kiosk-type=fullscreen" />
|
||||
<v4:BreakoutSequence Key="Ctrl+A" />
|
||||
</Profile>
|
||||
</Profiles>
|
||||
@ -46,7 +46,20 @@ So richten Sie den Kiosk für die Veranstaltung ein.
|
||||
Set-CimInstance -CimInstance $obj
|
||||
```
|
||||
|
||||
6. Starten Sie den Computer neu
|
||||
6. Öffne die Windows Befehlseingabe (cmd) mit Administratorrechten und führe diese Befehle aus, um den Energiesparmodus zu deaktivieren
|
||||
|
||||
```batch
|
||||
powercfg.exe -x -monitor-timeout-ac 0
|
||||
powercfg.exe -x -monitor-timeout-dc 0
|
||||
powercfg.exe -x -disk-timeout-ac 0
|
||||
powercfg.exe -x -disk-timeout-dc 0
|
||||
powercfg.exe -x -standby-timeout-ac 0
|
||||
powercfg.exe -x -standby-timeout-dc 0
|
||||
powercfg.exe -x -hibernate-timeout-ac 0
|
||||
powercfg.exe -x -hibernate-timeout-dc 0
|
||||
```
|
||||
|
||||
7. Reboot via `shutdown /r /t 0`
|
||||
|
||||
### Deinstallation
|
||||
|
||||
|
@ -26,8 +26,8 @@ How to set up the kiosk for the event.
|
||||
<AssignedAccessConfiguration xmlns="http://schemas.microsoft.com/AssignedAccess/2017/config" xmlns:rs5="http://schemas.microsoft.com/AssignedAccess/201810/config" xmlns:v4="http://schemas.microsoft.com/AssignedAccess/2021/config">
|
||||
<Profiles>
|
||||
<Profile Id="{EDB3036B-780D-487D-A375-69369D8A8F78}">
|
||||
<KioskModeApp v4:ClassicAppPath="%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge.exe" v4:ClassicAppArguments="--kiosk http://10.1.1.90:5173/ --kiosk-printing --edge-kiosk-type=fullscreen" />
|
||||
<v4:BreakoutSequence Key="Ctrl+A" />
|
||||
<KioskModeApp v4:ClassicAppPath="%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge.exe" v4:ClassicAppArguments="--kiosk https://kiosk.lauf-fuer-kaya.de/ --kiosk-printing --edge-kiosk-type=fullscreen" />
|
||||
<v4:BreakoutSequence Key="Ctrl+E" />
|
||||
</Profile>
|
||||
</Profiles>
|
||||
<Configs>
|
||||
@ -46,11 +46,24 @@ How to set up the kiosk for the event.
|
||||
Set-CimInstance -CimInstance $obj
|
||||
```
|
||||
|
||||
6. Reboot
|
||||
6. Open a new admin command prompt (cmd) an run these commands to turn off sleep
|
||||
|
||||
```batch
|
||||
powercfg.exe -x -monitor-timeout-ac 0
|
||||
powercfg.exe -x -monitor-timeout-dc 0
|
||||
powercfg.exe -x -disk-timeout-ac 0
|
||||
powercfg.exe -x -disk-timeout-dc 0
|
||||
powercfg.exe -x -standby-timeout-ac 0
|
||||
powercfg.exe -x -standby-timeout-dc 0
|
||||
powercfg.exe -x -hibernate-timeout-ac 0
|
||||
powercfg.exe -x -hibernate-timeout-dc 0
|
||||
```
|
||||
|
||||
7. Reboot via `shutdown /r /t 0`
|
||||
|
||||
### Teardown
|
||||
|
||||
1. To escape the experience press "Ctrl+Alt+E"
|
||||
1. To escape the experience press "Ctrl+E"
|
||||
2. Open a admin windows PowerShell prompt
|
||||
3. Cd to Desktop (C:\Users\<Username>\Desktop
|
||||
4. Run the psexec command: `psexec.exe -i -s powershell.exe`
|
||||
|
Loading…
x
Reference in New Issue
Block a user