How to execute an exe from vbScript

April 18th, 2011 by leoganda Leave a reply »

Sometime we will need to execute an exe file from our vbs, so here’s the snippet.

Set wsShell = WScript.CreateObject("WScript.shell")
wsShell.run "C:\windows\system32\calc.exe"

What people search:

Leave a Reply