Click here to Skip to main content
15,889,833 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: (untagged)
hi,
iam installing my exe file through batch file..
when iam installing pop'ups are coming
but i want to install exe file as background(dat mean i dont want to show how the exe file is going to install)
how is it possible??
thanks
chaitu,
Posted
Updated 27-Jul-12 1:25am
v2

Hi,
You can specify that with a Startinfo:
C#
var si = new System.Diagnostics.ProcessStartInfo();
si.CreateNoWindow = true;
si.FileName = "test.cmd";
System.Diagnostics.Process.Start( si);


Refer this[^] also.
 
Share this answer
 
v2
Just write the silent trigger into your batch file
msiexec /i YOURPACKAGE.msi /qn
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900