Compare commits
No commits in common. "9cc7c7f27c51c73c0ff877fa2a926b5eb688c35a" and "b828322da12d67328cea5b39b51a435c2dfbaae8" have entirely different histories.
9cc7c7f27c
...
b828322da1
@ -15,7 +15,7 @@ So richten Sie den Kiosk für die Veranstaltung ein.
|
|||||||
### Voraussetzungen
|
### Voraussetzungen
|
||||||
|
|
||||||
- Windows 11 Pro oder Enterprise
|
- Windows 11 Pro oder Enterprise
|
||||||
- Nur ein konfigurierter Drucker oder Belegdrucker als Standarddrucker eingerichtet - du kannst die Druckfunktion deaktivieren, aber mit Drucker ist die Benutzererfahrung besser
|
- Nur ein konfigurierter Drucker oder Belegdrucker als Standarddrucker eingerichtet
|
||||||
- Administratorzugriff auf das System
|
- Administratorzugriff auf das System
|
||||||
|
|
||||||
### Einrichtung
|
### Einrichtung
|
||||||
@ -26,16 +26,13 @@ So richten Sie den Kiosk für die Veranstaltung ein.
|
|||||||
4. Führe den psexec-Befehl aus: `.\psexec.exe -i -s powershell.exe`
|
4. Führe den psexec-Befehl aus: `.\psexec.exe -i -s powershell.exe`
|
||||||
5. Führe das folgende Skript aus
|
5. Führe das folgende Skript aus
|
||||||
|
|
||||||
{{< tabs items="Mit Drucker, Ohne Drucker" >}}
|
|
||||||
|
|
||||||
{{< tab >}}
|
|
||||||
```powershell
|
```powershell
|
||||||
$assignedAccessConfiguration = @"
|
$assignedAccessConfiguration = @"
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<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">
|
<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>
|
<Profiles>
|
||||||
<Profile Id="{EDB3036B-780D-487D-A375-69369D8A8F78}">
|
<Profile Id="{EDB3036B-780D-487D-A375-69369D8A8F78}">
|
||||||
<KioskModeApp v4:ClassicAppPath="%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge.exe" v4:ClassicAppArguments="--kiosk http://kiosk.lauf-fuer-kaya.de/?print=true --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+E" />
|
<v4:BreakoutSequence Key="Ctrl+E" />
|
||||||
</Profile>
|
</Profile>
|
||||||
</Profiles>
|
</Profiles>
|
||||||
@ -54,35 +51,6 @@ So richten Sie den Kiosk für die Veranstaltung ein.
|
|||||||
$obj.Configuration = [System.Net.WebUtility]::HtmlEncode($assignedAccessConfiguration)
|
$obj.Configuration = [System.Net.WebUtility]::HtmlEncode($assignedAccessConfiguration)
|
||||||
Set-CimInstance -CimInstance $obj
|
Set-CimInstance -CimInstance $obj
|
||||||
```
|
```
|
||||||
{{< /tab >}}
|
|
||||||
{{< tab >}}
|
|
||||||
```powershell
|
|
||||||
$assignedAccessConfiguration = @"
|
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<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://kiosk.lauf-fuer-kaya.de/ --kiosk-printing --edge-kiosk-type=fullscreen" />
|
|
||||||
<v4:BreakoutSequence Key="Ctrl+E" />
|
|
||||||
</Profile>
|
|
||||||
</Profiles>
|
|
||||||
<Configs>
|
|
||||||
<Config>
|
|
||||||
<AutoLogonAccount rs5:DisplayName="Lfk Kiosk" />
|
|
||||||
<DefaultProfile Id="{EDB3036B-780D-487D-A375-69369D8A8F78}" />
|
|
||||||
</Config>
|
|
||||||
</Configs>
|
|
||||||
</AssignedAccessConfiguration>
|
|
||||||
"@
|
|
||||||
|
|
||||||
$namespaceName="root\cimv2\mdm\dmmap"
|
|
||||||
$className="MDM_AssignedAccess"
|
|
||||||
$obj = Get-CimInstance -Namespace $namespaceName -ClassName $className
|
|
||||||
$obj.Configuration = [System.Net.WebUtility]::HtmlEncode($assignedAccessConfiguration)
|
|
||||||
Set-CimInstance -CimInstance $obj
|
|
||||||
```
|
|
||||||
{{< /tab >}}
|
|
||||||
{{< /tabs >}}
|
|
||||||
|
|
||||||
6. Öffne die Windows Befehlseingabe (cmd) mit Administratorrechten und führe diese Befehle aus, um den Energiesparmodus zu deaktivieren
|
6. Öffne die Windows Befehlseingabe (cmd) mit Administratorrechten und führe diese Befehle aus, um den Energiesparmodus zu deaktivieren
|
||||||
|
|
||||||
@ -114,18 +82,3 @@ So richten Sie den Kiosk für die Veranstaltung ein.
|
|||||||
$obj.Configuration = $null
|
$obj.Configuration = $null
|
||||||
Set-CimInstance -CimInstance $obj
|
Set-CimInstance -CimInstance $obj
|
||||||
```
|
```
|
||||||
|
|
||||||
## Mit deinem bevorzugten Browser
|
|
||||||
|
|
||||||
{{< callout type="warning" >}}
|
|
||||||
Die Möglichkeit, den Browser zu verlassen und/oder DevTools zu öffnen, könnte standardmäßig verfügbar sein.
|
|
||||||
Bitte prüfe, ob dein Browser einen Kiosk-Modus unterstützt und wie du ihn einrichten kannst.
|
|
||||||
{{< /callout >}}
|
|
||||||
{{< callout type="warning" >}}
|
|
||||||
Dein Browser unterstützt möglicherweise nicht das Drucken ohne Dialog.
|
|
||||||
Bitte prüfe, ob dein Browser diese Funktion unterstützt und wie du sie einrichten kannst.
|
|
||||||
{{< /callout >}}
|
|
||||||
|
|
||||||
Öffne einfach den Link in deinem bevorzugten Browser und nutze den Kiosk-Modus deines Browsers:
|
|
||||||
- Mit automatischem Druck: <https://kiosk.lauf-fuer-kaya.de/?print=true>
|
|
||||||
- Ohne automatischen Druck: <https://kiosk.lauf-fuer-kaya.de/>
|
|
||||||
|
@ -15,7 +15,7 @@ How to set up the kiosk for the event.
|
|||||||
### Prerequesites
|
### Prerequesites
|
||||||
|
|
||||||
- Windows 11 Pro or Enterprise
|
- Windows 11 Pro or Enterprise
|
||||||
- Only one configured printer or receipt printer configured as default printer - you can disable printing but it's cooler to have it
|
- Only one configured printer or receipt printer configured as default printer
|
||||||
- Admin access to the system
|
- Admin access to the system
|
||||||
|
|
||||||
### Setup
|
### Setup
|
||||||
@ -26,16 +26,13 @@ How to set up the kiosk for the event.
|
|||||||
4. Run the psexec command: `.\psexec.exe -i -s powershell.exe`
|
4. Run the psexec command: `.\psexec.exe -i -s powershell.exe`
|
||||||
5. Run the following script
|
5. Run the following script
|
||||||
|
|
||||||
{{< tabs items="With printing, Without printing" >}}
|
|
||||||
|
|
||||||
{{< tab >}}
|
|
||||||
```powershell
|
```powershell
|
||||||
$assignedAccessConfiguration = @"
|
$assignedAccessConfiguration = @"
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<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">
|
<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>
|
<Profiles>
|
||||||
<Profile Id="{EDB3036B-780D-487D-A375-69369D8A8F78}">
|
<Profile Id="{EDB3036B-780D-487D-A375-69369D8A8F78}">
|
||||||
<KioskModeApp v4:ClassicAppPath="%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge.exe" v4:ClassicAppArguments="--kiosk http://kiosk.lauf-fuer-kaya.de/?print=true --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+E" />
|
<v4:BreakoutSequence Key="Ctrl+E" />
|
||||||
</Profile>
|
</Profile>
|
||||||
</Profiles>
|
</Profiles>
|
||||||
@ -54,35 +51,6 @@ How to set up the kiosk for the event.
|
|||||||
$obj.Configuration = [System.Net.WebUtility]::HtmlEncode($assignedAccessConfiguration)
|
$obj.Configuration = [System.Net.WebUtility]::HtmlEncode($assignedAccessConfiguration)
|
||||||
Set-CimInstance -CimInstance $obj
|
Set-CimInstance -CimInstance $obj
|
||||||
```
|
```
|
||||||
{{< /tab >}}
|
|
||||||
{{< tab >}}
|
|
||||||
```powershell
|
|
||||||
$assignedAccessConfiguration = @"
|
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<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://kiosk.lauf-fuer-kaya.de/ --kiosk-printing --edge-kiosk-type=fullscreen" />
|
|
||||||
<v4:BreakoutSequence Key="Ctrl+E" />
|
|
||||||
</Profile>
|
|
||||||
</Profiles>
|
|
||||||
<Configs>
|
|
||||||
<Config>
|
|
||||||
<AutoLogonAccount rs5:DisplayName="Lfk Kiosk" />
|
|
||||||
<DefaultProfile Id="{EDB3036B-780D-487D-A375-69369D8A8F78}" />
|
|
||||||
</Config>
|
|
||||||
</Configs>
|
|
||||||
</AssignedAccessConfiguration>
|
|
||||||
"@
|
|
||||||
|
|
||||||
$namespaceName="root\cimv2\mdm\dmmap"
|
|
||||||
$className="MDM_AssignedAccess"
|
|
||||||
$obj = Get-CimInstance -Namespace $namespaceName -ClassName $className
|
|
||||||
$obj.Configuration = [System.Net.WebUtility]::HtmlEncode($assignedAccessConfiguration)
|
|
||||||
Set-CimInstance -CimInstance $obj
|
|
||||||
```
|
|
||||||
{{< /tab >}}
|
|
||||||
{{< /tabs >}}
|
|
||||||
|
|
||||||
6. Open a new admin command prompt (cmd) an run these commands to turn off sleep
|
6. Open a new admin command prompt (cmd) an run these commands to turn off sleep
|
||||||
|
|
||||||
@ -114,18 +82,3 @@ How to set up the kiosk for the event.
|
|||||||
$obj.Configuration = $null
|
$obj.Configuration = $null
|
||||||
Set-CimInstance -CimInstance $obj
|
Set-CimInstance -CimInstance $obj
|
||||||
```
|
```
|
||||||
|
|
||||||
## With your favourite browser
|
|
||||||
|
|
||||||
{{< callout type="warning" >}}
|
|
||||||
The ability to exit the browser and/or open devtools may be available by default.
|
|
||||||
Please check if your browser supports a kiosk mode and how to set it up.
|
|
||||||
{{< /callout >}}
|
|
||||||
{{< callout type="warning" >}}
|
|
||||||
Your browser might not support printing without a dialog.
|
|
||||||
Please check if your browser supports this feature and how to set it up.
|
|
||||||
{{< /callout >}}
|
|
||||||
|
|
||||||
Just open the link in your favourite browser and use the kiosk mode of your browser:
|
|
||||||
- With auto-printing: <https://kiosk.lauf-fuer-kaya.de/?print=true>
|
|
||||||
- Without auto-printing: <https://kiosk.lauf-fuer-kaya.de/>
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user