lmilesuk Posted December 1, 2010 Posted December 1, 2010 Hi, I'n new to this and am trying to run a program with a working dir Run ("Ctrl.exe", "\\controlES\Process Repository") However beacuse the folder Process Repository has a space it won't read it in all it reads is process, how do I input this correctly I've tried ""\\controlES\Process Repository"" but to no avail.
hannes08 Posted December 1, 2010 Posted December 1, 2010 Hi Imilesuk, please try this: "'\\server\working path'". Single-quotes in between double-quotes. Regards, Hannes Regards,Hannes[spoiler]If you can't convince them, confuse them![/spoiler]
lmilesuk Posted December 1, 2010 Author Posted December 1, 2010 This does'nt seem to work; Run ("\\ultra02\controlES\Client\Ctrl.exe " ,"'\\ultra02\controlES\Process Repository'") at all
martin Posted December 1, 2010 Posted December 1, 2010 (edited) This does'nt seem to work; Run ("\\ultra02\controlES\Client\Ctrl.exe " ,"'\\ultra02\controlES\Process Repository'") at all I think the problem is that Run expects the short names, so you could either try this Run (FileGetShertName("\\ultra02\controlES\Client\Ctrl.exe ") ,FileGetShortName("'\\ultra02\controlES\Process Repository'")) or use ShellExecute instead. ShellExecute ("\\ultra02\controlES\Client\Ctrl.exe " , "", "'\\ultra02\controlES\Process Repository'") Edited December 1, 2010 by martin Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
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