Hey Everyone,
I'm trying to set-up MultiAppKiosk Mode on some touch screen devices at my company.
The main focus is to get Citrix applications running on it.
But I already get stuck with Notepad & paint for testing purposes.
I followed the Microsoft documentation (https://learn.microsoft.com/en-us/windows/configuration/lock-down-windows-10-to-specific-apps#configure-a-kiosk-using-a-provisioning-package)
I use Windows Configuration designer to make the provisioning package.
But when I install this Provisioning package on the device I see in event viewer the following error.
"ProvXML category 'UxLockdown' failed with '0xC00CE223' at CSP node 'AssignedAccess/Configuration'. Provisioning failed"
Anyone who knows where i might have made a mistake or why the provisioning package doesn't want to install correctly?
in this last version of my code i used global profiles, because I was not sure if the error was related to my profile configuration, so if that is also not the right method to configure this please let me know.
I want this to work with a domain joined account, as these accounts are also used to authenticate with the Citrix Receiver.
See my XML configuration file:
<?xml version="1.0" encoding="utf-8"?>
<AssignedAccessConfiguration
xmlns="https://schemas.microsoft.com/AssignedAccess/2017/config"
xmlns:v2="https://schemas.microsoft.com/AssignedAccess/201810/config"
xmlns:v3="https://schemas.microsoft.com/AssignedAccess/2020/config"
>
<Profiles>
<Profile Id="{404fc150-fa23-4aaa-bf48-dbdc3b5ec5c0}">
<AllAppsList>
<AllowedApps>
<App DesktopAppPath="C:\Windows\System32\notepad.exe" />
<App DesktopAppPath="C:\Windows\System32\mspaint.exe" />
</AllowedApps>
</AllAppsList>
<StartLayout>
<![CDATA[<LayoutModificationTemplate xmlns:defaultlayout="https://schemas.microsoft.com/Start/2014/FullDefaultLayout" xmlns:start="https://schemas.microsoft.com/Start/2014/StartLayout" Version="1" xmlns="https://schemas.microsoft.com/Start/2014/LayoutModification">
<LayoutOptions StartTileGroupCellWidth="6" />
<DefaultLayoutOverride>
<StartLayoutCollection>
<defaultlayout:StartLayout GroupCellWidth="6">
<start:Group Name="Group2">
<start:DesktopApplicationTile Size="2x2" Column="2" Row="0" DesktopApplicationLinkPath="%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\Accessories\Paint.lnk" />
<start:DesktopApplicationTile Size="2x2" Column="0" Row="0" DesktopApplicationLinkPath="%APPDATA%\Microsoft\Windows\Start Menu\Programs\Accessories\Notepad.lnk" />
</start:Group>
</defaultlayout:StartLayout>
</StartLayoutCollection>
</DefaultLayoutOverride>
</LayoutModificationTemplate>
]]>
</StartLayout>
<Taskbar ShowTaskbar="false" />
</Profile>
</Profiles>
<Configs>
<v3:GlobalProfile Id="{404fc150-fa23-4aaa-bf48-dbdc3b5ec5c0}" />
</Configs>
</AssignedAccessConfiguration>
Thanks in advance for your help I appreciate any little information you can provide to solve this issue.