I need to let a .reg file and a .msi file execute automatically using whatever executables these two file types associated with on user\'s Windows.
.NET Core 2.0 Pro
You can set UseShellExecute to true and include this and your path in a ProcessStartInfo object:
Process.Start(new ProcessStartInfo(@"C:\Users\user2\Desktop\XXXX.reg") { UseShellExecute = true });