Hello sandeep,
According to my research, VS 2005 setup bootstrapper does not offer an option to install prerequisite packages in silent mode. These prerequisite packages themselves have silent modes though.
Please look at a related topic.
http://social.msdn.microsoft.com/Forums/en-US/netfxsetup/thread/0ad3ff70-3f98-4556-90c1-f9f30777e22e
The following document discusses the product.xml and silent install parameter
http://msdn.microsoft.com/en-us/magazine/cc163899.aspx
Turn to “Figure 2 Product Manifest for the .NET Framework 2.0� you can see the code as following
<Command PackageFile="dotnetfx.exe"
Arguments=' /q:a /c:"install /q /l"'
EstimatedInstalledBytes="21000000"
EstimatedInstallSeconds="300">
These command arguments is for silent install purpose. Hope this helps you.
And this document indicates VS 2008 setup project use silent install mode by default.
http://msdn.microsoft.com/en-us/library/xhz1cfs8.aspx#cpconsetupexebootstrappersampleoperationsanchor2
“Setup.exe uses the following command to launch a silent installation of Dotnetfx.exe�/span>
Please feel free to tell me if you have any question.
Sincerely,
Kira Qian
Send us any feedback you have about the help from MSFT at fbmsdn@microsoft.com
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the
All-In-One Code Framework!