jiroe
jiroe

Reputation: 63

How to run an exe from a AutoHotKey script?

I have a .exe which I have converted from .bat. I want to run that .exe file from AHK. How do I write a script for this case?

Is it something like this - run, converted.exe, hide or run, path.converted.exe, hide?

Upvotes: 1

Views: 3187

Answers (1)

Steev James
Steev James

Reputation: 2654

Just use this :

Run, filename.exe

In V2:

Run filename.exe

Upvotes: 3

Related Questions