echol Posted December 6, 2005 Posted December 6, 2005 Hi all, I need advise, I got error " Unable to execute the external program" when run my script.below the error line $PID = Run("C:\Temp\Altiris\AeXNSC.exe -s -a ns= "snap.basf-apc.co.id" NOSTARTMENU /s")does anybody know why ??
TK_Incorperate Posted December 6, 2005 Posted December 6, 2005 ok this really isnt any of my buisness but just a question... why are you binding a run command? sorry it just doesnt make sense to me
echol Posted December 6, 2005 Author Posted December 6, 2005 Hi all, I need advise, I got error " Unable to execute the external program" when run my script.below the error line $PID = Run("C:\Temp\Altiris\AeXNSC.exe -s -a ns= "snap.basf-apc.co.id" NOSTARTMENU /s")does anybody know why ??b'cause the program need to be hardcode ns=snap.basf-apc.co.idbelow my complete script RunAsSet("Administrator", @Computername, "xxxxx")SplashTextOn("Windows Installer", "Installing program" & @CR & "Please wait .....(approx. 2 min)" & @CR & @CR & "IS Department", -1, 200, -1, -1, 0, "Tahoma", 22)if FileExists("C:\Program Files\Altiris\Altiris Agent\AeXSWDUsrUIWin.exe") thenelse FileCopy("Z:\DRIVER\patch\AeXNSC.exe", "C:\WINNT\Temp") $PID = Run("C:\Temp\Altiris\AeXNSC.exe -s -a ns= ""snap.basf-apc.co.id"" NOSTARTMENU /s") ProcessWaitClose($PID)endifSplashOff()RunAsSet()
MHz Posted December 6, 2005 Posted December 6, 2005 $PID = Run("C:\Temp\Altiris\AeXNSC.exe -s -a ns= ""snap.basf-apc.co.id"" NOSTARTMENU /s")The quotes are different to the 1st post. Is that working for you now ?
echol Posted December 7, 2005 Author Posted December 7, 2005 The quotes are different to the 1st post. Is that working for you now ?Yup, it's different I tried using double qoute, but still doesn't work. What command should I use, so Autoit will read this snap.basf-apc.co.id as a text.
MHz Posted December 7, 2005 Posted December 7, 2005 I would suggest this: $PID = Run('"C:\Temp\Altiris\AeXNSC.exe" -s -a ns= "snap.basf-apc.co.id" NOSTARTMENU /s') I have wrapped the whole command used in single quotes to make double quotes easy to manage. This looks like an installer. Some installers, like NSIS for example, do not like quotes used. The NSIS /D= switch can fail when the path used behind the /D= is wrapped in quotes. NSIS seems to read the whole commandline raw so no problems with spaces. Just a note.
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