Monthly Archive for October, 2005

Working With Application Pools in IIS

WindowsNetworking has posted an article about Working With Application Pools in Internet Information Server.

“If your IIS Server hosts multiple Web sites, then buggy code within any one of those sites can bring down the other sites. Fortunately, there is something that you can do to prevent this from happening. In this article, I will show you how you can use application pools to prevent problems with a Web site from causing stability problems across your IIS server.”

Read the full article at source: Working With Application Pools in Internet Information Server

Real work logparser examples

The MSCOM team has posted some of their real world logparser which they use in their daily work.

If you are interested in Logparser and parsing IIS log, have a look at: Microsoft.com Operations : …Pull Out the Swiss Army Knife… (Logparser That Is)…

Using redirection in IIS

Chris Crowe had a great post on his blog ealier this year about doing website/page redirection in Microsoft Internet Information Server.

Read his article here: Microsoft Internet Information Server Redirection

Useful IP tool

IP Lookup, find the owner of an IP address.

Read more about it at source: IP Lookup: Find the owner of an IP address.

Thumbnail View on WSS Site Home Page

Found a blogpost explaining how to get thumbnail view on pictures within the SharePoint Image Library.

Read at source: Ted’s SharePoint.

Sharepoint Resources

Romeo Pruno has compiled a good list of SharePoint resources is his latest post.

Read his full list at source: Romeo Pruno : Sharepoint: Risorse utili

How to install IIS unattended

How to install IIS unattended.

Unattended install is useful if you need to deploy multiple web servers and need to ensure that each of the web servers is setup with the identical with IIS.
Unattended installs can also be used during the install of Windows Server 2003.
In this article I’ll cover installing IIS unattended after the OS has been deployed.

By default IIS installs the following directories:
* %systemroot%\InetPub
* %systemroot%\Help\IISHelp
* %systemroot%\System32\InetSrv
* %systemroot%\System32\InetSrv\MetaBack

These directories contain content and cannot be moved. You can, however, select the location of your wwwroot and ftproot directories at installation by using a script during unattended setup.

To start using unattended installs:
1. Create an answer file. Use notepad and type in the following:

[Components]
iis_common = on
iis_www = on
iis_inetmgr = on
iis_asp = on
aspnet = on
complusnetwork = on

[InternetServer]
PathFTPRoot = C:\Inetpub\Ftproot
PathWWWRoot = C:\Inetpub\Wwwroot

2. Save the file as IIS_Unattended.txt

3. Next we run the unattended install by running the following command from a command line:

Sysocmgr.exe /i:%windir%\inf\sysoc.inf /u:%PathToUnattendFile%

Setup will now install IIS with the IIS Components chosen in the answer file above, in this example we’ll install:

Components section:
* IIS Common Files – (iis_common)
* WWW Service – (iis_www)
* IIS Manager – (iis_inetmgr)
* Active Server Pages (ASP) – (iis_asp)
* ASP.NET – (aspnet)
* COM+ – (complusnetwork)

InternetServer section:
* Desired path for www content, i.e. D:\Inetpub\Wwwroot – (PathWWWRoot)
* Desired path for ftp content, i.e. D:\Inetpub\Ftproot – (PathFTPRoot)

To get a full overview over the IIS Components which you can add to your answer file, read the MS TechNet article: Microsoft TechNet – Creating an Answer File (IIS 6.0)

Unattended install can be used for all Windows components, for more information on this read:
Windows Server 2003 Technical Reference – How Unattended Installation Works

Other references: Microsoft TechNet – Installing (IIS 6.0)

Unattended, A Windows deployment system

I have posted an article earlier about how to create an unattended installation of IIS.
Here’s an opensource tool to help create unattended installations of Windows.

This is a system for fully automating the installation of Windows 2000 Professional and Server, Windows XP, and Windows Server 2003.

Features include:

* Automated install of operating system, hotfixes and applications.
* Full documentation and source code.
* Support for floppy, CD-ROM, and “nothing but net” installs.
* True unattended installation, not disk imaging.
* No Windows servers required; use your Unix servers instead.
* No Unix servers required; use your Windows servers after all.
* Completely free.

More at source: Unattended, A Windows deployment system.