aTekTipsUser
Programmer
I have a process where I have an application on a network drive that everyone shares. I subscribe to the RenamedEventHandler for when the file is renamed. When the file is renamed, the application should restart and use the updated file. When I test it myself, it works fine. When the live users get the notification of an update, the application restarts, but it starts the old application. Ex. If app1.exe is the old file, and I rename it to app1_OLD.exe and place the new app1.exe in the same folder, the application.restart starts app1_OLD.exe. I have also tried using Process.Start(Application.StartupPath & "\\app1.exe"), but app1_OLD.exe is still started. How can I start the updated version? Thanks for the help!