Windows-iotcore-samples
Windows-iotcore-samples copied to clipboard
Shell Launcher V2 Not Launching a Regular Desktop When Signed In as Other User
I'd like to setup shell launcher so that it runs my UWP app when signed-in as the Kiosk user, but I can sign out and sign in as a different user (such as Admin) and have it show a regular desktop. This used to work but for whatever reason now whenever I sign in as the Admin account it is only showing File Explorer and nothing else.
This is my XML configuration I'm using to setup Shell Launcher:
<?xml version="1.0" encoding="utf-8"?>
<ShellLauncherConfiguration xmlns="http://schemas.microsoft.com/ShellLauncher/2018/Configuration" xmlns:v2="http://schemas.microsoft.com/ShellLauncher/2019/Configuration">
<Profiles>
<DefaultProfile>
<Shell Shell="%systemroot%\explorer.exe">
<DefaultAction Action="RestartShell"/>
</Shell>
</DefaultProfile>
<Profile Id="{814B6409-8C51-4EE2-95F8-DB39B70F5F68}">
<Shell Shell="Monarc.MonarcSeeker_ph0wx5t34d02e!App" v2:AppType="UWP" v2:AllAppsFullScreen="true">
<ReturnCodeActions>
<ReturnCodeAction ReturnCode="1" Action="DoNothing" />
</ReturnCodeActions>
<DefaultAction Action="RestartDevice"/>
</Shell>
</Profile>
</Profiles>
<Configs>
<Config>
<AutoLogonAccount />
<Profile Id="{814B6409-8C51-4EE2-95F8-DB39B70F5F68}"/>
</Config>
</Configs>
</ShellLauncherConfiguration>
Any ideas on what could be causing this?