Change Windows 10 File Explorer "Edit" context menu action for images to "Windows Store version" of Paint.net?

I know how to use RegEdit to change Windows 10 File Explorer "Edit" context menu action for images to any image editors like Paint.net. But I have no idea about how to change it to Windows Store version of Paint.net. I have already tried the value like

"explorer.exe" "shell:appsFolder\dotPDNLLC.paint.net_h55e3w7q8jbva!dotPDNLLC.paint.net %1"

But it is not working.


Since the executable itself doesn't seem to be a UWP app, you can launch it with arguments using:

%ProgramFiles%\WindowsApps\dotPDNLLC.paint.net_4.21.6589.0_x64__h55e3w7q8jbva\PaintDotNet.exe %1

The location of the app can be found by typing in PowerShell:

(get-appxpackage dotPDNLLC.paint.net).InstallLocation

Note: You might need to take own of the WindowsApps folder. Refer to this answer on how to do it.