Jump to content

Recommended Posts

Posted

How would you write the syntax for trying to launch and .cpl file in windows 98? Here is what I have, but it's not working.

Run(@WindowsDir & "\" & "control.exe " & "\" & '@WindowsDir & "\" & "System" & "\" & " desk.cpl"')

Control.exe is in the Windows directory, while the desk.cpl is in the windows\system directory.

Thanks.

Posted (edited)

Better

Run("control.exe """ & @WindowsDir & "\" & "System" & "\" & "desk.cpl""")

Though I would use @SystemDir

Run("control.exe """ & @SystemDir & "\desk.cpl""")

Edited by Shevilie

Start here if you are new Valuater's AutoIT 1-2-3Looking for an UDF - Look hereDo you need to do it twice - Autoit

  • Developers
Posted

Thank, I'll try that out. Is the run command not setup to handle a scenerio like that or am I just entering the syntax wrong? I'm just curious at this point.

your syntax is wrong...

put it into an editor that has syntax coloring and you would see its wrong ....

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...