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)

Recommended Answers

All 3 Replies

Are updates within the exe program or are saved by an exe program somewhere?

When you start the external app on the desktop, are you using a shortcut? If so, is the shortcut passing a parameter to the app telling it to check for updates?

The external app itself checks a table to see if the version number is different to the current version and if it's different it loads the new version. I can't figure out why it works if I run the external exe myself but not when started from another exe. It doesn't pass a parameter to say check for an update as it does it automatically.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.