FuTai Posted December 11, 2012 Posted December 11, 2012 Dear All, I'm new user to using this autoIT program, I wanna use this program to write a function to change printername & Regedit keys EG: Printer1 ==> Printer2 regedit keys 01 => 02. Please help me for this issue. thanks. Regards, Frank Ng
water Posted December 11, 2012 Posted December 11, 2012 Welcome to AutoIt and the forum!Please use the search function (e.g. search for "set default printer") and you will find a lot of threads with example code.Something like My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
FuTai Posted December 11, 2012 Author Posted December 11, 2012 Welcome to AutoIt and the forum!Please use the search function (e.g. search for "set default printer") and you will find a lot of threads with example code.Something like Thank you very Much Have a good day~
FuTai Posted December 11, 2012 Author Posted December 11, 2012 have any simple code to change the printer name?
water Posted December 11, 2012 Posted December 11, 2012 That's a locally attached printer not a network printer? My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
FuTai Posted January 10, 2013 Author Posted January 10, 2013 That's a locally attached printer not a network printer? Local Printer Just for rename printer
Moderators JLogan3o13 Posted January 10, 2013 Moderators Posted January 10, 2013 Something like this should work (untested): $WMI = ObjGet("winmgmts:\\" & @ComputerName & "\root\cimv2") $aPrinters = $WMI.ExecQuery("Select * From Win32_Printer Where DeviceID = 'HP'") For $element in $aPrinters $element.RenamePrinter("ArtDepartmentPrinter") Next "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
FuTai Posted January 11, 2013 Author Posted January 11, 2013 Something like this should work (untested): $WMI = ObjGet("winmgmts:\\" & @ComputerName & "\root\cimv2") $aPrinters = $WMI.ExecQuery("Select * From Win32_Printer Where DeviceID = 'HP'") For $element in $aPrinters $element.RenamePrinter("ArtDepartmentPrinter") Next No worked. I'm using OS XP.
Moderators JLogan3o13 Posted January 11, 2013 Moderators Posted January 11, 2013 "No worked" doesn't exactly tell us much, does it What error are you seeing? "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
FuTai Posted January 15, 2013 Author Posted January 15, 2013 "No worked" doesn't exactly tell us much, does it What error are you seeing?Dear, Thanks for your help, I have one printer only for the system, but I need to change the printer name to "PrinterA","PrinterB" or PrinterC..etc.because the system printing is point to Server database "printer Name", this is for client use.
Moderators JLogan3o13 Posted January 15, 2013 Moderators Posted January 15, 2013 You still haven't told us what "No worked" means. What error are you receiving when you run the code I supplies in post #7? "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now