I'm trying to set up the Windows 8.1 Shell Launcher within Embedded Lockdown Manager (ELM) to use my custom app as the windows shell.
Currently, I have it set up like this:

When logged on as 'DefaultUser' the default shell gets started and not 'myapp'.
Here is the PowerShell script that ELM created for me:
Clear-Shells
Set-DefaultShell "c:\windows\system32\cmd.exe" 0
Add-Shell "DefaultUser" "c:\myapp.exe"
Set-CustomActions "DefaultUser" @(0,1,2,3) @(0,1,2,3)
Any ideas on how to get Shell Launcher to start up my shell?
Thanks