Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim MyProcess As New System.Diagnostics.Process
MyProcess.StartInfo.CreateNoWindow = True
MyProcess.StartInfo.UseShellExecute = True
MyProcess.StartInfo.WorkingDirectory = "C:\MyDirectory\"
MyProcess.StartInfo.FileName = "MyApplication.exe"
MyProcess.StartInfo.Arguments = "MyArgument"
MyProcess.Start()