KenzoIT 0 Posted April 23, 2010 Hi all,This is my code :#include <Process.au3>_Rundos("Start D:\LPI\OpenVZ") --> It work well. But I write_Rundos("Start C:\Documents and Settings\Kenzo.XPWINDOWS7\Desktop\ZABBIX")to open Zabbix folder --> It doesn't work.Please help me to fix a problem.Thanks ! Share this post Link to post Share on other sites
MrMitchell 16 Posted April 23, 2010 There are spaces in "Documents and settings", need to put quotes around it: Old: _Rundos("Start C:\Documents and Settings\Kenzo.XPWINDOWS7\Desktop\ZABBIX") Try new way: _Rundos('Start "C:\Documents and Settings\Kenzo.XPWINDOWS7\Desktop\ZABBIX" ') Share this post Link to post Share on other sites
funkey 128 Posted April 23, 2010 Or use Shellexecute. Programming today is a race between software engineers striving tobuild bigger and better idiot-proof programs, and the Universetrying to produce bigger and better idiots.So far, the Universe is winning. Share this post Link to post Share on other sites
KenzoIT 0 Posted April 23, 2010 Thanks for your support ! Share this post Link to post Share on other sites