KenzoIT Posted April 23, 2010 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 !
MrMitchell Posted April 23, 2010 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" ')
funkey Posted April 23, 2010 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.
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