You have the installer forcibly require UAC upon launch, and then place the shortcuts in the %APPDATA%\Microsoft\Windows\Start Menu of the account which runs the installer. In the conventional UAC elevation scenario, Start Menu shortcuts will end up in the private start menu of the admin user, which is inaccessible to other users.
There are two ways to fix this
1. Bypass the issue by placing the shortcuts in the public Start Menu
Code: Select all
C:\ProgramData\Microsoft\Windows\Start Menu
Code: Select all
%APPDATA%\Microsoft\Windows\Start Menu
Thanks!