Hello
I am trying to deploy assigned access kiosk via Intune to a few devices. This is the xml I am using:
<?xml version="1.0" encoding="utf-8"?>
<AssignedAccessConfiguration xmlns="http://schemas.microsoft.com/AssignedAccess/2022/config" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<Profiles>
<Profile Id="{7C5ADA78-DA87-DF6C-874A-C0FDB459FA8E}">
<AllAppsList>
<AllowedApps>
<App AppUserModelId="Microsoft.MicrosoftEdge.Stable_8wekyb3d8bbwe!App" />
<App AppUserModelId="Microsoft.Windows.Magnifier_8wekyb3d8bbwe!App" />
</AllowedApps>
</AllAppsList>
<Taskbar ShowTaskbar="true" />
</Profile>
</Profiles>
<Configs>
<Config>
<AutoLogonAccount>
<UserName>AssignedAccessKiosk</UserName>
</AutoLogonAccount>
<DefaultProfile Id="{7C5ADA78-DA87-DF6C-874A-C0FDB459FA8E}" />
</Config>
</Configs>
</AssignedAccessConfiguration>
This is a simple XML that should deploy assigned access kiosk with only Edge and magnifier allowed to run on the device. Separate to this, I am creating a local account to auto logon and another script to clear all desktop shortcuts other than Edge and magnifier.
When deploying this I am getting the below error:
The element '{http://schemas.microsoft.com/AssignedAccess/2022/config}AssignedAccessConfiguration' is used but not declared in the DTD/Schema. , ErrorCode(0xC00CE00D)
How do I go about solving this issue please?