Multi App kiosk installation fails

Gerick Monta 0 Reputation points
2023-01-11T10:58:35.6633333+00:00

i cant seem to log in/ sign in to a kiosk account im trying to make, its just a simple kiosk with browser and file explorer for a library. i dont know what im doing wrong, here is the XML i used on the provision.

these are the steps on what i did

  1. create the xml with explorer and browser as allowed apps
  2. i used windows configuration designer to make the provision
  3. create a local user(kiosk_user) in computer management
  4. apply the provision

what am i lacking?

<?xml version="1.0" encoding="utf-8" ?>
<AssignedAccessConfiguration
    xmlns="http://schemas.microsoft.com/AssignedAccess/2017/config"
    xmlns:v2="http://schemas.microsoft.com/AssignedAccess/201810/config"
    xmlns:v3="http://schemas.microsoft.com/AssignedAccess/2020/config"
    >
     <Profiles>
        <Profile Id="{7A00F2B8-E126-421E-9C7C-121E86061B32}">
            <AllAppsList>
                <AllowedApps>
                    <App DesktopAppPath="C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" />
                    <App DesktopAppPath="C:\Windows\explorer.exe" />
                </AllowedApps>
            </AllAppsList>
            <v2:FileExplorerNamespaceRestrictions>
                <v2:AllowedNamespace Name="Downloads"/>
                <v3:AllowRemovableDrives/>
            </v2:FileExplorerNamespaceRestrictions>
            <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="Library">
                                        <start:DesktopApplicationTile Size="2x2" Column="0" Row="0" DesktopApplicationLinkPath="Microsoft.Windows.Explorer" />
                                        <start:DesktopApplicationTile Size="2x2" Column="2" Row="0" AppUserModelID="Microsoft.MicrosoftEdge_8wekyb3d8bbwe!MicrosoftEdge" />
                                    </start:Group>
                                </defaultlayout:StartLayout>
                            </StartLayoutCollection>
                        </DefaultLayoutOverride>
                    </LayoutModificationTemplate>
]]>
            </StartLayout>
            <Taskbar ShowTaskbar="true"/>
        </Profile>
    </Profiles>
    <Configs>
        <Config>
            <Account>kiosk_user</Account>
            <DefaultProfile Id="{7A00F2B8-E126-421E-9C7C-121E86061B32}"/>
        </Config>
    </Configs>
</AssignedAccessConfiguration>
Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
11,991 questions
0 comments No comments
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.