vote up 3 vote down star
2

I need to deploy a web application on several laptops (although it is a web application, it is intended to run via localhost only - thus the need to deploy on several different machines).

Normally I would go to IIS and right click a directory to create a web application, but I would very much like to automate this leg of the installation. Can it be done?

edit: My question, clearly, isn't very clear.

I want to use IIS, but I want to create the web application automatically without opening the IIS Microsoft Management Console (MMC).

flag

9 Answers

vote up 4 vote down check

I can sugest you to take a look at this link if you are deploying on IIS6 or at this one if it is IIS7(I could recommend Mike Volodarsky's blog for any info on IIS7 in general). It should be quite simple for you to write some batch file to automate a site creation. Example:

  • IIS6 : iisweb /create C:\Rome "My Vacations" /d www.reskit.com /dontstart
  • IIS7 : %windir%\system32\inetsrv\AppCmd ADD SITE /name:MyNewSite /bindings:http/*:81: /physicalPath:c:\inetpub\mynewsite
link|flag
exactly what I needed, let's hope I can make it work :D – DrG Nov 24 '08 at 12:36
vote up 4 vote down

You're really asking two different questions. First, why reinvent the wheel? In all likelihood, the laptops are already capable of running IIS - it's available on all "modern" Windows versions with the possible exception of Vista Home. Second, a VS.NET installer can easily target and automate an install to IIS. If you use Wix or some other third party installer it will require more manual work but can still be done.

Edit: In re-reading your question, that sounds like what you're really asking - you already knew IIS was available on the target computers, but just didn't want to manually install on each computer. Correct? In that case, definitely look at the VS.NET setup project - they have a built-in target for IIS deployment.

link|flag
YES that is what I am talking about, I just edited the question :D Thx – DrG Nov 24 '08 at 11:16
+1 for reading the question. I was thinking "Mono" at first as well, but as it turns out the title has not much to do with the text... – Tomalak Nov 24 '08 at 11:16
actually i think no one read the word "automate" in the question title ..... – DrG Nov 24 '08 at 11:34
I think that's because it was not in there to begin with. :-) I changed the title to what it is right now. – Tomalak Nov 24 '08 at 12:19
hahaha. good one! – DrG Nov 24 '08 at 12:28
vote up 2 vote down

You can look inside the Cassini Sample Web Server (comes with source):

The ASP.NET Cassini Web Server Sample is a sample web server written using the Microsoft® .NET® Framework, and demonstrates hosting ASP.NET using the ASP.NET hosting APIs (System.Web.Hosting).

link|flag
vote up 2 vote down

You could use the system.DirectoryServices class e.g.

http://www.gafvert.info/iis/article/cs_create_website_iis6.htm

link|flag
vote up 1 vote down

To implement a minimal web server you can use HTTP.SYS (the core component of IIS deployed with Windows XP SP2 or higher). In .NET this can be done e.g. by using the HttpListener class in the System.Net namespace.

Regards, tamberg

link|flag
vote up 1 vote down

You could also try Mono http://mono-project.com/

It is for Linux, Mac OS X and Windows.

They have xsp a web server for .net applications.

There is documentation about that in

http://www.mono-project.com/ASP.NET

Good luck,

link|flag
vote up 1 vote down

Create a new Visual Studio project of type "Setup and Deployment", and use the "Web Setup" type.

This will create an .msi installer that will automatically create the web app for you within IIS.

You will then also get the ability to perform network installs, so if you have the right permissions you could manage this centrally.

link|flag
vote up 1 vote down

You can create a virtual directory without using the MMC console using the WebDirectoryCreate task available inside the project msbuildtasks

link|flag
vote up 0 vote down

Have look at this post. It explains how to start Cassini web server from the command line and add it as a shell extension.

EDIT: CarlosAg's blog has some great posts about IIS administration throw PowerShell and managed code.

link|flag

Your Answer

Get an OpenID
or

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