tijiez Posted March 15, 2007 Posted March 15, 2007 Am I missing something obvious? RunWait("ccsetup138_slim.exe /S", @ScriptDir & "installers\", @SW_HIDE) Errors that the file cannot be found, but it's there.
baghenamoth Posted March 15, 2007 Posted March 15, 2007 Am I missing something obvious? RunWait("ccsetup138_slim.exe /S", @ScriptDir & "installers\", @SW_HIDE) Errors that the file cannot be found, but it's there. you have to put a \ after using macro like @scriptdir RunWait("ccsetup138_slim.exe /S", @ScriptDir & "\installers\", @SW_HIDE)
kjmarket Posted March 15, 2007 Posted March 15, 2007 If you don't do it the way he said, its not going to work anyway. I created a junk prog named the same as the one you are trying to open, and made it jsut pop up a message box... RunWait("ccsetup138_slim.exe ", @ScriptDir & "\installers", @SW_hide) Whats the /S for? Some sort of start up command? With it, it tells me the program cannot be found..without it runs fine. Pink Floyd - The Wall
baghenamoth Posted March 15, 2007 Posted March 15, 2007 you have to put a \ after using macro like @scriptdir RunWait("ccsetup138_slim.exe /S", @ScriptDir & "\installers\", @SW_HIDE)oÝ÷ Ûú®¢×¬¢ºòÊ¡j÷¢¶Ø«z)ßW§jg©j¶¦z׫jëh×6RunWait(@ScriptDir & "\installers\" & "ccsetup138_slim.exe /S", @ScriptDir & "\installers\", @SW_HIDE) the working dir parameter is optional for program which may need it. I guess it's like the filed "start in" in shortcut properties
kjmarket Posted March 15, 2007 Posted March 15, 2007 Thats what i thought /S meant..and I cant believe I forgot the entire path was necessary. I really need to refresh my memory on the basics again...lol Pink Floyd - The Wall
baghenamoth Posted March 15, 2007 Posted March 15, 2007 I really need to refresh my memory on the basics again...lolso do I !I didn't notice it at first time ! !
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