Customers developing UWP applications have asked if there is a way to prevent the app from appearing in the Start menu. For example, printer manufacturers have a UWP print extension app that is launched automatically by the Print Settings UI. They don’t want the user launching their print extension app directly; they want the user to do it through the system printing UI. Is there a way to remove the app from the Start menu?
Yes: In your manifest, go to the VisualElements element and add the attribute AppListEntry="none"
.
This removes the app from the Start menu, as well as from Search. The app does remain visible in the Apps & features list of all apps, so that the user can uninstall it. If the app is registered for any extension points, such as file types or protocols, the app will show up in the corresponding UI for controlling those extension points.
Disappearing from the Start menu does not render your app unlaunchable. The app can raise toast notifications that will launch the app when clicked. And the app can be launched programmatically by methods such as Launcher.
and Launcher.
, say because the application is the registered default handler for the URI or file type. If the app is a handler but not the default handler, the caller can specify an explicit TargetÂApplicationÂPackageÂFamilyÂName
to get the app to launch.
A lot of this is moot now because the Windows 11 shell is such a mean-spirited power play that more people are going to write their own without all of these rules. Custom Taskbars and Start Menus are easier to create in XAML now than anyone realizes. Converging the Windows desktop to Apple's look and feel when Apple can't move desktop machines out the door to save their lives is hilariously suspicious. Apple is a two-hit-wonder. Nothing they do justifies their income or stock value.
The only sticking point is a nasty little discovery.... Aero Glass appears to be software-rendered inside...