How do I call up the modern PrintDialog window for a file
Mia Lopez
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.PrintDialogBut 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