PPoelma1
Contributor
Contributor

Windows 11 Kiosk XML

Can someone please assist me in creating an XML to put Windows 11 in kiosk mode with two web shortcuts opening in google chrome and the user needs access to connect to wifi. Everything needs locked down.

This isnt exactly what i am looking for but i have started with the below XML and it fails to apply to the device. 

 

<AssignedAccessConfiguration
xmlns="http://schemas.microsoft.com/AssignedAccess/2017/config" xmlns:win11="http://schemas.microsoft.com/AssignedAccess/2022/config"
xmlns:rs5="http://schemas.microsoft.com/AssignedAccess/201810/config"
>
<Profiles>
<Profile Id="{2d37d0db-19a0-48ad-8b8b-976a7cbf556d}">
<AllAppsList>
<AllowedApps>
<App DesktopAppPath="C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"/>
</AllowedApps>
</AllAppsList>
<StartLayout>
<![CDATA[<LayoutModificationTemplate xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout" Version="1" xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification">
<LayoutOptions StartTileGroupCellWidth="6" />
<DefaultLayoutOverride>
<StartLayoutCollection>
<defaultlayout:StartLayout GroupCellWidth="6">
<start:Group Name="Digital Workspace">
<start:DesktopApplicationTile Size="2x2" Column="6" Row="0" DesktopApplicationLinkPath="%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\CUSTOMER\Office365.lnk" />
</start:Group>
</defaultlayout:StartLayout>
</StartLayoutCollection>
</DefaultLayoutOverride>
</LayoutModificationTemplate>
]]>
</StartLayout>
<Taskbar ShowTaskbar="true"/>
</Profile>
</Profiles>
<Configs>
<Config>
<AutoLogonAccount/>
<DefaultProfile Id="{2d37d0db-19a0-48ad-8b8b-976a7cbf556d}"/>
</Config>
</Configs>
</AssignedAccessConfiguration>

Tags (3)
Reply
0 Kudos
Phil_Helmling
VMware Employee
VMware Employee

try this example and duplicate line 41 to create the second shortcut. But you must have the shortcuts created already

https://github.com/helmlingp/WS1UEM_CustomKiosk/blob/main/ExampleKioskProfile_Chrome_AutoLaunch.xml

 

Reply
0 Kudos