vote up 2 vote down star

What install tool can I use to create Virtual Directory on IIS? OpenSource, free or to do in C#.

flag

77% accept rate
IIS6, II7? they have different APIs – craigb Sep 22 '08 at 21:20

5 Answers

vote up 1 vote down check

WiX can create IIS virtual directories.

link|flag
vote up 0 vote down

You could use Microsoft Web Deployment Tool to recreate a website structure.

link|flag
vote up 1 vote down

You can create IIS virtual directorys using NAnt and the MKIISdir task in the NAntContrib project

link|flag
NAnt is a build tool, not an install tool. – Ferruccio Sep 22 '08 at 21:42
Actually NAnt can be much more than a build tool, but in this instance I believe you are correct, as Mariano is probably seeking an installer for a windows executable. – Xian Sep 23 '08 at 19:39
vote up 1 vote down

You can use the VS.NET Web Setup Project included into visual studio.

Check this article for a list of deployment possiblities for your web app :

link|flag
I have used Web Setup Projects and they work very nicely. Both the virtual directory and the application are automatically created and you can control a lot of the default settings for the virtual directory. The actual installation process is very simple as well. – J c Oct 10 '08 at 12:22
vote up 0 vote down

you can call a small VBScript from any installer via command line, and access the IIS object.

Set objMimeMap = GetObject("IIS://localhost/w3svc")

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.