Reputation: 3018
What install tool can I use to create Virtual Directory on IIS? OpenSource, free or to do in C#.
Upvotes: 2
Views: 2140
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
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
Reputation: 76601
You can create IIS virtual directorys using NAnt and the MKIISdir task in the NAntContrib project
Upvotes: 2
Reputation: 976
You could use Microsoft Web Deployment Tool to recreate a website structure.
Upvotes: 0