New to Intune so I'm trying to figure out what I'm doing wrong here. I've been trying to create a Multi-App Kiosk Mode using an XML file but it seems to keep erroring out when it try to apply the policy to the group (which is currently 1 computer now) Here is the source code that I've been applying. If anybody could provide some assistance that would be great.
<?xml version="1.0" encoding="utf-8" ?>
<AssignedAccessConfiguration xmlns="http://schemas.microsoft.com/AssignedAccess/2017/config" xmlns:win11="http://schemas.microsoft.com/AssignedAccess/2022/config">
<Profiles>
<Profile Id="{3652211898-3793493171-747654640-1012}">
<AllAppsList>
<AllowedApps>
<App AppUserModelId="Microsoft.WindowsCalculator\_8wekyb3d8bbwe!App" />
<App AppUserModelId="Microsoft.WindowsNotepad\_8wekyb3d8bbwe!App" />
<App AppUserModelId="Microsoft.Paint\_8wekyb3d8bbwe!App" />
<App AppUserModelId="Microsoft.Windows.Photos\_8wekyb3d8bbwe!App" />
<App AppUserModelId="windows.immersivecontrolpanel\_cw5n1h2txyewy!microsoft.windows.immersivecontrolpanel" />
</AllowedApps>
</AllAppsList>
<win11:StartPins>
<![CDATA[
{ "pinnedList":[
{"packagedAppId":"Microsoft.WindowsCalculator\_8wekyb3d8bbwe!App"},
{"packagedAppId":"Microsoft.WindowsNotepad\_8wekyb3d8bbwe!App"},
{"packagedAppId":"Microsoft.Paint\_8wekyb3d8bbwe!App"},
{"packagedAppId":"Microsoft.Windows.Photos\_8wekyb3d8bbwe!App"},
{"packagedAppId":"windows.immersivecontrolpanel\_cw5n1h2txyewy!microsoft.windows.immersivecontrolpanel"}
] }
]]>
</win11:StartPins>
<Taskbar ShowTaskbar="true"/>
</Profile>
</Profiles>
<Configs>
<Config>
<Account>.\33OBGRTL01</Account>
<DefaultProfile Id="{3652211898-3793493171-747654640-1012}"/>
</Config>
</Configs>
</AssignedAccessConfiguration>