redfive19 Posted May 9, 2005 Posted May 9, 2005 guys, You've always been very helpful. I've got a stupid problem. I always have trouble running executables with parameters. I usually switch directories (FileChangeDir) to do this but I am having a hard time figuring out how to do this one. Here is the command line that needs to be run: RunDll32 C:\PROGRA~1\COMMON~1\INSTAL~1\engine\6\INTEL3~1\ctor.dll,LaunchSetup "C:\Program Files\InstallShield Installation Information\{E3FD18A0-5CB9-4942-A61A-34C8B51FE0CB}\setup.exe" Uninstall Can anyone tell me how I would word that in an autoit script? I am not sure cause it calls the RunDll32 first. Any help would be greatly appreciated. -redfive
CyberSlug Posted May 9, 2005 Posted May 9, 2005 Sounds like a fun one to deal with ctor.dll infoHere's a guess:FileChangeDir("C:\PROGRA~1\COMMON~1\INSTAL~1\engine\6\INTEL3~1\") RunWait('RunDll32 ctor.dll,LaunchSetup "C:\Program Files\InstallShield Installation Information\{E3FD18A0-5CB9-4942-A61A-34C8B51FE0CB}\setup.exe" Uninstall', '', @SW_HIDE) Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
redfive19 Posted May 9, 2005 Author Posted May 9, 2005 you are a gentlemen and a scholar, thanks so much. worked a charm.
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