How to get .exe file version number from file path
You can use FileVersionInfo.FileVersion to fetch this from a path. var versionInfo = FileVersionInfo.GetVersionInfo(pathToExe); string version = versionInfo.FileVersion; // Will typically return “1.0.0.0” in your case