Jump to content

How to open the "Printer and Faxes" folder?


Recommended Posts

I've looked in the help file, in my own tips file with all the CPL names for the AI syntax I use to open CPLs, as well as messages on the board but I can't find how to do this. Is there any way to get directly to the printers and faxes folder? Like what doing this does:

START > SETTINGS > PRINTERS AND FAXES.

Thanks. :D

Link to comment
Share on other sites

I've looked in the help file, in my own tips file with all the CPL names for the AI syntax I use to open CPLs, as well as messages on the board but I can't find how to do this. Is there any way to get directly to the printers and faxes folder? Like what doing this does:

START > SETTINGS > PRINTERS AND FAXES.

Thanks. :D

; Printers and Faxes 
ShellExecute("::{2227A280-3AEA-1069-A2DE-08002B30309D}")

For more CLSIDs of other special folders, see the help file Appendix, CLSIDs of Special Folders.

:D

Edited by PsaltyDS
Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

@diana

Maybe this call help too.

; http://www.robvanderwoude.com/2kprintcontrol.html

; Command Line Printer Control

;Run server properties:
ShellExecuteWait("RUNDLL32", "PRINTUI.DLL,PrintUIEntry /s /t1 /n\\127.0.0.1")

;Run printer properties
ShellExecuteWait("RUNDLL32", "PRINTUI.DLL,PrintUIEntry /p /n\\127.0.0.1\PDFCreator")

;Run add printer wizard localy
ShellExecuteWait("RUNDLL32","PRINTUI.DLL,PrintUIEntry /il")

;Run add printer wizard on \\machine
ShellExecuteWait("RUNDLL32","PRINTUI.DLL,PrintUIEntry /il /c\\machine")

;Run queue view 
;ShellExecuteWait("RUNDLL32","PrintUIEntry /o /n\\127.0.0.1\PDFCreator")

;Enumerate per machine printer connections 
ShellExecuteWait("RUNDLL32","PRINTUI.DLL,PrintUIEntry /ge /c\\127.0.0.1")

;Set printer as default
ShellExecuteWait("RUNDLL32",'PRINTUI.DLL,PrintUIEntry /y /n "printer"')

;Set printer comment
; ....

regards,

ptrex

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...