invoso.com Report post Posted 06/24/2019 12:02 PM Hi, we have problem with run exe file in RUN module. How to write VBS to start exe file with parameters? Share this post Link to post
SupportTeam Report post Posted 06/24/2019 12:43 PM What is the problem that you are encountering when trying to use the Run Program module? In a Run VBScript module you can use the approach below: Dim objShell Set objShell = WScript.CreateObject( "WScript.Shell" ) objShell.Run("c:\mydir\myprogram.exe") Set objShell = Nothing Share this post Link to post