VMware Workspace ONE Community
JHK_MTE
Contributor
Contributor

Single-App Kiosk

I'm attempting to build a kiosk profile for a proof-of-concept for digital signage. All I'm wanting to do is have a simple Win11 box open Edge and show a single SharePoint page. Simple.

Using Microsoft's Assigned Access XML documentation (https://learn.microsoft.com/en-us/windows/configuration/kiosk-xml), I've constructed an XML file. However, I'm also new to XML and I'm running into an error when attempting to save the profile in WSO.

The error: "Save Failed

  • guid_t' - The Pattern constraint failed.
  • Classic App Path' attribute is not declared.
  • Classic App Arguments' attribute is not declared.
  • //schemas.microsoft.com/ Assigned Access/2021/config'.
  • guid_t' - The Pattern constraint failed.
  • An error has occurred"

 

My XML:

 

 

 

<?xml version="1.0" encoding="utf-8" ?>
<AssignedAccessConfiguration
              xmlns="http://schemas.microsoft.com/AssignedAccess/2017/config"
              xmlns:v4="http://schemas.microsoft.com/AssignedAccess/2021/config"
              >
              <Profiles>
                             <Profile Id="{S-1-5-21-139651417-2946663792-2447621734-1002}">
                                           <KioskModeApp v4:ClassicAppPath="%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge.exe"
                                                          v4:ClassicAppArguments="--no-first-run --kiosk [SharePoint URL]"/>
                                           <v4:BreakoutSequence Key="Ctrl+A"/>
                             </Profile>
              </Profiles>
              <Configs>
                             <Config>
                                           <Account>KioskUser</Account>
                                           <DefaultProfile Id="{S-1-5-21-139651417-2946663792-2447621734-1002}"/>
                             </Config>
              </Configs>
</AssignedAccessConfiguration>

 

 

 

Any thoughts?

Labels (2)
Tags (1)
0 Kudos
1 Reply
Afshin_Lak
Enthusiast
Enthusiast

https://brookspeppin.com/2019/10/10/configuring-kiosk-mode-on-windows-10-using-a-custom-xml-with-wor...

a few things to know:

Use Notepad++ on windows machine. MAC sometimes break the code.

Edge is a modern app. 

0 Kudos