## Summary of the Pull Request Accumulated information from internal transition about the modules development, and reworked it to be added in dev docs. Also the dev docs intself was restructured to be more organized. New pages was verified by transition team. ## PR Checklist - [x] **Dev docs:** Added/updated --------- Co-authored-by: Zhaopeng Wang (from Dev Box) <zhaopengwang@microsoft.com> Co-authored-by: Hao Liu <liuhao3418@gmail.com> Co-authored-by: Peiyao Zhao <105847726+zhaopy536@users.noreply.github.com> Co-authored-by: Mengyuan <162882040+chenmy77@users.noreply.github.com> Co-authored-by: zhaopeng wang <33367956+wang563681252@users.noreply.github.com> Co-authored-by: Jaylyn Barbee <51131738+Jaylyn-Barbee@users.noreply.github.com>
6.1 KiB
NewPlus Module
Public overview - Microsoft Learn
Quick Links
Overview
NewPlus is a PowerToys module that provides a context menu entry for creating new files directly from File Explorer. Unlike some other modules, NewPlus implements a different approach to context menu registration to avoid duplication issues in Windows 11.
Context Menu Implementation
NewPlus implements two separate context menu handlers:
-
Windows 10 Handler (
NewPlus.ShellExtension.win10.dll
)- Implements "old-style" context menu handler for Windows 10 compatibility
- Not shown in Windows 11 (this is intentional and controlled by a condition in
QueryContextMenu
) - Registered via registry keys
-
Windows 11 Handler (
NewPlus.ShellExtension.dll
)- Implemented as a sparse MSIX package for Windows 11's modern context menu
- Only registered and used on Windows 11
This implementation differs from some other modules like ImageResizer which register both handlers on Windows 11, resulting in duplicate menu entries. NewPlus uses selective registration to provide a cleaner user experience, though it can occasionally lead to issues if the Windows 11 handler fails to register properly.
Project Structure
- NewPlus.ShellExtension - Windows 11 context menu handler implementation
- NewPlus.ShellExtension.win10 - Windows 10 "old-style" context menu handler implementation
Debugging NewPlus Context Menu Handlers
Debugging the Windows 10 Handler
-
Update the registry to point to your debug build:
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\CLSID\{<NewPlus-CLSID>}] @="PowerToys NewPlus Extension" [HKEY_CLASSES_ROOT\CLSID\{<NewPlus-CLSID>}\InprocServer32] @="x:\GitHub\PowerToys\x64\Debug\PowerToys.NewPlusExt.win10.dll" "ThreadingModel"="Apartment" [HKEY_CURRENT_USER\Software\Classes\Directory\Background\shellex\ContextMenuHandlers\NewPlus] @="{<NewPlus-CLSID>}"
-
Restart Explorer:
taskkill /f /im explorer.exe && start explorer.exe
-
Attach the debugger to explorer.exe
-
Add breakpoints in the NewPlus code
-
Right-click in File Explorer to trigger the context menu handler
Debugging the Windows 11 Handler
Debugging the Windows 11 handler requires signing the MSIX package:
-
Build PowerToys to get the MSIX packages
-
Create certificate (if you don't already have one):
New-SelfSignedCertificate -Subject "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" ` -KeyUsage DigitalSignature ` -Type CodeSigningCert ` -FriendlyName "PowerToys SelfCodeSigning" ` -CertStoreLocation "Cert:\CurrentUser\My"
-
Get the certificate thumbprint:
$cert = Get-ChildItem -Path Cert:\CurrentUser\My | Where-Object { $_.FriendlyName -like "*PowerToys*" } $cert.Thumbprint
-
Install the certificate in the Trusted Root (requires admin Terminal):
Export-Certificate -Cert $cert -FilePath "$env:TEMP\PowerToysCodeSigning.cer" Import-Certificate -FilePath "$env:TEMP\PowerToysCodeSigning.cer" -CertStoreLocation Cert:\LocalMachine\Root
Alternatively, you can manually install the certificate using the Certificate Import Wizard:
-
Sign the MSIX package:
SignTool sign /fd SHA256 /sha1 <THUMBPRINT> "x:\GitHub\PowerToys\x64\Debug\WinUI3Apps\NewPlusPackage.msix"
Note: SignTool might not be in your PATH, so you may need to specify the full path, e.g.:
& "C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\x64\signtool.exe" sign /fd SHA256 /sha1 <THUMBPRINT> "x:\GitHub\PowerToys\x64\Debug\WinUI3Apps\NewPlusPackage.msix"
-
Check if the NewPlus package is already installed and remove it if necessary:
Get-AppxPackage -Name Microsoft.PowerToys.NewPlusContextMenu Remove-AppxPackage Microsoft.PowerToys.NewPlusContextMenu_<VERSION>_neutral__8wekyb3d8bbwe
-
Install the new signed MSIX package (optional if launching PowerToys settings first):
Add-AppxPackage -Path "x:\GitHub\PowerToys\x64\Debug\WinUI3Apps\NewPlusPackage.msix" -ExternalLocation "x:\GitHub\PowerToys\x64\Debug\WinUI3Apps"
Note: If you prefer, you can simply launch PowerToys settings and enable the NewPlus module, which will install the MSIX package for you.
-
Restart Explorer to ensure the new context menu handler is loaded:
taskkill /f /im explorer.exe && start explorer.exe
-
Run Visual Studio as administrator (optional)
-
Set breakpoints in the code (e.g., in shell_context_menu.cpp#L45)
-
Right-click in File Explorer and attach the debugger to the
DllHost.exe
process (with NewPlus title) that loads when the context menu is invoked -
Right-click again (quickly) after attaching the debugger to trigger the breakpoint
Note: The DllHost process loads the DLL only when the context menu is triggered and unloads after, making debugging challenging. For easier development, consider using logging or message boxes instead of breakpoints.
Common Issues
-
If the Windows 11 context menu entry doesn't appear, it may be due to:
- The package not being properly registered
- Explorer not being restarted after registration
- A signature issue with the MSIX package
-
For development and testing, using the Windows 10 handler can be easier since it doesn't require signing.