Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I had a web setup project in VS 2005. I converted it into VS 2010.
Now i see an option for selecting application pool.
Can anyone tell me how can i hide this application pool option from my installer.

Thanks,
Nagendra.
Posted

1 solution

Exact same question asked and marked resolved: How to hide "application pool" option in web setup project?[^]

I solved the problem by hiding the installer user interface at all, because it was unimportant in my case. I simply call the MSI from command line in this way:
Installer.msi /qr TARGETAPPPOOL="MyAppPoolName"

The "/gr" option means "reduced user interface". Shows only progress bar without user inputs.
The "TARGETAPPPOOL" argument enables specify the default app pool you want to use (the pool must exist...).
 
Share this answer
 

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