You can start an application two ways you can shell the application or you can process start.

Dim shell
shell = CreateObject("wscript.shell")
shell.run("%SystemDrive%\application.exe")

or

Process1.StartInfo.FileName = ("%SystemDrive%\application.exe")

What is the difference between these two approaches?