Forum Discussion
vkondemand
Dec 04, 2018Copper Contributor
Context menu regsitration
Does MSIX currently support context menu handler registration? Tried MSIX conversion of 7-zip package. The required registry entries are captured, but after installation of the MSIX package, the opt...
Mike Francis
Dec 04, 2018Copper Contributor
Yes - see here how to specify context menus in the app package manifest file: https://docs.microsoft.com/en-us/windows/uwp/porting/desktop-to-uwp-extensions#add
- Tim ManganJan 10, 2019MVP
The document referenced shows how to add shell menus (we sometimes call these shell integrations). These integrations point to the application executable to be run..
It does not, however, show how to add context menus, which points to a dll that is loaded by explorer.exe to determine if menus should be added (depending on the context) when the user right-clicks. Context Menus are a subset of "shell extensions". It appears to me that at this time shell extensions are not supported in MSIX.
- vkondemandDec 05, 2018Copper Contributor
Hi Mike, Thanks for the response. Just to confirm, the MSIX packaging tool will not be automatically capturing these entries and would need to be manually edited in the manifest file