Docfxit 7 Posted September 20, 2011 I'm getting an error with: RunWait(@Comspec & ' /K Copy /y "C:\Dnload\9xAddons\rc4.key" $ProgramFiles & "UltraVNC\" ') The error I'm getting is: '"UltraVNC\"' is not recognized as an internal or external command, operable program or batch file. What is in &ProgramFiles is C:\Programs\ Thanks, Docfxit Share this post Link to post Share on other sites
Jos 2,209 Posted September 20, 2011 try: RunWait(@Comspec & ' /K Copy /y "C:\Dnload\9xAddons\rc4.key" "' & $ProgramFiles & 'UltraVNC\" ') SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Share this post Link to post Share on other sites
Docfxit 7 Posted September 20, 2011 That worked perfect. Thank you very much, Docfxit Share this post Link to post Share on other sites