sam
sam

Reputation: 4684

Executing AutoIT script from vb.net

I am successfully running a Autoit script from command prompt.

"Z:\AutoItScripts\test.au3" "parameter1"

I need to do same from VB.net. Please help how can I do this.

Upvotes: 1

Views: 1480

Answers (1)

El Ronnoco
El Ronnoco

Reputation: 11922

Use Shell

eg

Shell("Z:\AutoItScripts\test.au3 parameter1")

Upvotes: 1

Related Questions