i Need install software with switch silent install
Example:
Process process = new System.Diagnostics.Process();
process.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
process.StartInfo.FileName = "cmd.exe";
process.StartInfo.Arguments = "/C msiexec.exe /i " + My.Resources + "eav_nt64_enu.msi /qb";
process.Start();
process.WaitForExit();
So How i can add My.Resources in cmd command.