Prueba con esto:
Código vb:
Ver originalDim Ejecuta As New Process
Try
With Ejecuta
.StartInfo.UseShellExecute = False
.StartInfo.FileName = "C:\Windows\system32\calc.exe"
.StartInfo.CreateNoWindow = True
.EnableRaisingEvents = True
.Start()
End With
Catch ex As Exception
MsgBox(ex.Message)
End Try
En este ejemplo te abre la calculadora de windows. En principio solo tienes que modificar el nombre del ejecutable para poner el que tu quieras.