A family of Microsoft products that enable users to capture, organize, and reuse notes electronically.
I've found a way to hijack the notifications panel Note button, without having to uninstall the default onenote modern app, which is integrated with Edge.
• Open registry editor and go to this key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\ActionCenter\Quick Actions\All\SystemSettings_Launcher_QuickNote
• Rename "Uri" to Uri-backup". Because we are about to replace "Uri".
• Save the following block-of-code as a .reg file.
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\OneNote-sidenote]
@="URL:onenote-sidenote Protocol"
"URL Protocol"=""
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\OneNote-sidenote\shell]
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\OneNote-sidenote\shell\Open]
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\OneNote-sidenote\shell\Open\command]
;!!!make sure this matches OneNote path in your system,
; and double each backslash () in path
@=""C:\Program Files (x86)\Microsoft Office\Office15\ONENOTE.EXE" /sidenote /paste /nologo"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\ActionCenter\Quick Actions\All\SystemSettings_Launcher_QuickNote]
;back up default value, as found in my system
;"Uri-backup"="onenote-cmd://quicknote?onOpen=typing"
"Uri"="onenote-sidenote://"
• Merge that reg file with the registry (right-click the reg file).
• Now restart Windows Explorer via task manager (ctrl+shift+escape).
• If all goes well, tapping that "Note" tile in the notification pane will now open a Onenote dekstop sidenote (with current clipboard contents pasted in) .
• This is backwards-compatible with at least OneNote 2007, and both click-to-run and regular install.
edit: fixed a typo.