meganwebb 0 Posted September 8, 2010 I have a variable called $LocalShare and it is populated by browsing to a specific location (ie: C:\temp or C:\documents and settings\user\desktop). When I attempt to open the program from the $LocalShare, it opens just fine when it is set to C:\temp, or something without spaces, but when it is set to something with spaces (like C:\documents and settings\user\desktop), it will not open. How do I specify that spaces are allowed when I go to open the file at $LocalShare? This is my acutal code for running that program: Run("\\sharelocation\scripts\wts\local.bat " & $arraysite[2] & " " & $LocalShare) Share this post Link to post Share on other sites
Country73 6 Posted September 8, 2010 Here's one option. Run("\\sharelocation\scripts\wts\local.bat " & $arraysite[2] & ' "' & $LocalShare & '"') If you try to fail and succeed which have you done?AutoIt Forum Search Share this post Link to post Share on other sites