Fading Coder

One Final Commit for the Last Sprint

Launching a WinForms Application from a Browser via Custom URI Protocol

To enable a browser to launch a WinForms desktop application, you can register a custom URI scheme in the Windows Registry. This allows links like myapp:// to invoke your executable. The approach uses the application's ProductName (obtained from Form.ProductName) as the protocol name. The following...

Resolving Duplicate OneDrive Icons in Windows File Explorer

Windows File Explorer sometimes displays redundant OneDrive entries in the navigation pane. This behavior occurs because the system registers distinct CLSIDs (Class IDs) for personal and professional OneDrive accounts, leading the Shell Namespace to render multiple shortcuts. The Root Cause The Shel...