Hi Manish Rahul
Legacy Win32 shell extensions often get pushed under “Show more options.” The way to bring your corporate encryption utility back to the primary menu is to register it using the IExplorerCommand interface or the newer context menu handler registration that Windows 11 supports. Instead of relying on the old shell extension model, enterprise developers can declare the extension in the app’s manifest or registry with the proper verbs so the OS knows to surface it directly.
The key is to avoid legacy-only registration and instead use the modern schema that Windows 11 looks for. You’ll want to define the command under HKLM\Software\Microsoft\Windows\CurrentVersion\ShellExtensions with the right CLSID, and make sure it’s marked as compatible with the modern context menu. Once registered correctly, the utility will appear on the first layer of the right-click menu, not hidden away.
It’s worth testing on a few endpoints before rolling out fleet-wide, just to confirm the handler behaves as expected. This approach keeps your encryption tool visible and easy for employees to use without extra clicks.
If this clears things up and helps you move forward, please hit accept answer