I have a program (exe) that starts an external .exe program in response to a user request.
If the external program is started by me on the desktop it checks for updates to the program prior to opening up. If I do it using the ProcessStartInfo then it doesn't check for updates before loading. I need the Master program to check for updates on the external .exe when starting.
I was hoping someone could explain what I'm doing wrong.
Thanks.
Directory.SetCurrentDirectory(MainPath)
Dim startInfo As New ProcessStartInfo
startInfo.FileName = "Program.exe"
startInfo.UseShellExecute = False
startInfo.WorkingDirectory = "C:\users\public\documents\"
Process.Start(startInfo)