I would like to know if there’s a way to handle c# to install a third party application (mysql server 5.0 in this case). I’m not talking about a visual studio installer project but a winForm application that could be programatically used to handle third party installers.
Thanks in advance
I would like to know if there’s a way to handle c# to install
Share
I have used
System.Diagnostics.Processfor that. It can execute files on a given path, e.g. MySQL server installer. You would however need to supply the executable file.