Printer queue quick launch

1

Can I open printer queue from keyboard? Or maybe programmatically (PS/CMD) so that I can access it from console quickly?

I saw this question but placing queue on the desktop seems inelegant solution for me.

Suncatcher

Posted 2018-04-12T16:10:50.940

Reputation: 908

Any shortcut can had a keyboard hotkey added to it, and then that keyboard hotkey will open the shortcutted item. – music2myear – 2018-04-12T16:15:07.470

Yep, I knew that, but I thought maybe there is native shortcut I am missing) – Suncatcher – 2018-04-12T16:20:08.273

Though, command will be helpful too, as I found only flushing command

– Suncatcher – 2018-04-12T16:20:47.117

Answers

2

Because there's a good chance there are multiple queues for multiple printers, it makes no sense for Microsoft to create a default "Open Printer Queue" keyboard shortcut.

However, you can call the queue for a specific printer from the command line.

You'll need to know the specific name of the printer you are trying to view. If it is a network printer the name will be the full network path: "\servername\printershare"

And then you put it together:

rundll32.exe printui.dll,PrintUIEntry /o /n "printername"

If you've entered the printer name correctly, the print queue dialog will open.

music2myear

Posted 2018-04-12T16:10:50.940

Reputation: 34 957

1Spectacular! Exactly what I need – Suncatcher – 2018-04-13T06:35:24.573