Forum Discussion

Peter Wuytack's avatar
Peter Wuytack
Brass Contributor
Sep 19, 2018
Solved

Windows 10 Enterprise Start Menu in KIOSK mode show the expected tiles but they are not working

Hi ,   I am deploying Windows 10 Enterprise devices with an Azure AD account into Azure AD and intune. Users are enrolled as normal users (no admin). After enrolment we deploy an UWP app to the dev...
  • I know what you are dealing with, and this one is documented poorly. It is not terribly hard to fix however. I learned all of this while working with a really helpful field engineer out of Australia. Actually he was Customer Experience driver, and put all the field engineers (who know nothing it seems) to shame. :

    When you export the start layout that you want, crack it open in your favorite XML editor , and change the  URL for the application. You see, with that profile the AMUID is generated based on the Provisioned account. The Azure account does not pre-exist on the computer so it has to be provisioned, This means hard links like that will not work because all applications are consumed on a user base for the most part, in Windows 10. One way to get around this is to place the start menu shortcuts in "%AllUsersProfile%\Microsoft\Windows\Start Menu\Programs\<appName>.lnk" ; then they will always work.I recently learned, that is not the best way either. I had the links showing up just like you , but not working. Here is how you fix that:
    The Start Menu XML, the app tile will use DesktopApplicationLinkPath for the reference to the app, which will fail when using MDM to provision the tile.   You need to use https://docs.microsoft.com/en-us/windows/configuration/start-layout-xml-desktop. In order to get the DesktopApplicationID,https://www.systemcenterdudes.com/configure-start-menu-windows-10-1703-and-above/ 

     

    The trick that NO ONE I KNOW knew about was this cmdlet: Get-StartApps. This allows you to work like you normally do and design a start menu, and then harvest the correct AppID GUID/URL thingy after you Export-StartLayout, and replace the Path, with the ID.

     

    Sorry im so verbose. It is an easy fix though.

     

     

     

Resources