How to customize .Net deployment projects dialogs

D

Dhananjay

Hi All,
How to customize .Net deployment projects User Interface dialogs? In
other word, lets say, if I want to disable "Disk Cost" button on the
"Select Installation Folder" dialog of my .Net setup, how can I do
that?

Thanks,
Sam
 
P

Phil Wilson

I assume you mean Visual Studio Setup&Deployment proojects that generate MSI
files. The short answer is you customize them by using Orca, an MSI editor,
and use the Windows SDK docs to figure out what bits to fiddle. The longer
answer is that Visual Studio setup projects expose less of the Windows
Installer functionality than any other setup tool, but they do this to hide
the complexity. They're not .NET deployment projects, they're just MSI
builders, and tools from WiX, InstallShield, Wise, Advanced Installer have
support for custom dialogs, custom actions anywhere (including to validate
dialog input), features and more. So if Visual Studio setups don't supply
the functionality you need, either look at other tools or get to know Orca
and the internals of MSI files.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top