dot45 Posted September 21, 2009 Posted September 21, 2009 (edited) Below is the command I am trying to run, I enclosed it with single qoutes because of the command using qoutes internally. Should this execute properly? RunWait( @ComSpec & 'rundll32 printui.dll,PrintUIEntry /ia /m "HP Universal Printing PCL 6 (v4.7)" /h "Intel" /v "Windows 2000 or XP" /f Y:\printer\HP_UPD\hpcu083c.inf') I am able to run the command from a command line and it does execute properly. Do I need to use "&" signs and break up the command so i can just use the double qoutes? Edited September 21, 2009 by dot45 Tools I've Created & Shared[/url][url="http://www.autoitscript.com/forum/index.php?showtopic=97177&st=0&p=698665&hl=printer&fromsearch=1&#entry698665"]Printer Migration Tool
PsaltyDS Posted September 21, 2009 Posted September 21, 2009 On 9/21/2009 at 5:02 PM, 'dot45 said: Below is the command I am trying to run, I enclosed it with single qoutes because of the command using qoutes internally. Should this execute properly? RunWait( @ComSpec & 'rundll32 printui.dll,PrintUIEntry /ia /m "HP Universal Printing PCL 6 (v4.7)" /h "Intel" /v "Windows 2000 or XP" /f Y:\printer\HP_UPD\hpcu083c.inf') I am able to run the command from a command line and it does execute properly. Do I need to use "&" signs and break up the command so i can just use the double qoutes? Just replace RunWait() with ConsoleWrite() and you'll see the problem pretty quickly: ConsoleWrite(@ComSpec & 'rundll32 printui.dll,PrintUIEntry /ia /m ...') 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
dot45 Posted September 21, 2009 Author Posted September 21, 2009 On 9/21/2009 at 5:53 PM, 'PsaltyDS said: Just replace RunWait() with ConsoleWrite() and you'll see the problem pretty quickly: ConsoleWrite(@ComSpec & 'rundll32 printui.dll,PrintUIEntry /ia /m ...') Thanks, OMG is it a Monday Tools I've Created & Shared[/url][url="http://www.autoitscript.com/forum/index.php?showtopic=97177&st=0&p=698665&hl=printer&fromsearch=1&#entry698665"]Printer Migration Tool
TurionAltec Posted September 21, 2009 Posted September 21, 2009 won't rundll32 run perfectly well without even invoking @comspec?
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