Mariano
Mariano

Reputation: 3018

Install tool to create virtual directory on IIS

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

Upvotes: 2

Views: 2140

Answers (5)

Tom
Tom

Reputation: 6707

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

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

Upvotes: 0

Sacha Bruttin
Sacha Bruttin

Reputation: 4163

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 :

Upvotes: 1

Xian
Xian

Reputation: 76601

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

Upvotes: 2

Marijn Deé
Marijn Deé

Reputation: 976

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

Upvotes: 0

Ferruccio
Ferruccio

Reputation: 100748

WiX can create IIS virtual directories.

Upvotes: 3

Related Questions