How do I call up the modern PrintDialog window for a file

in the windows 10 photos app, there is a new print dialog. Using task manager, I traced it to the folder C:\Windows\PrintDialog. According to task manager the program running used the command line argument:

C:\Windows\PrintDialog\PrintDialog.exe -ServerName:Microsoft.Windows.PrintDialog

But this hasn't worked for me and besides, it has no argument for the image I want to print. Can anybody help?

1 Answer

From powershell:

Start-Process -FilePath .\MyImageIWantToPrint.png -Verb Print
3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like