(Unattended Installation)

Applies To: Windows Server 2003, Windows Server 2003 R2, Windows Server 2003 with SP1, Windows Server 2003 with SP2

[InternetServer]

The [InternetServer] section contains entries for configuring the installation folder for Internet Information Services (IIS) components.

This section requires that you provide the following entries and values in the [Components] section: IIS_Common = On, IIS_InetMgr = On, and IIS_WWW = On .

Answer File Entries for the [InternetServer] Section

Entry Description

ApplicationDependency

Specifies the Web Server Extension groups that an application depends on.

DisableWebServiceOnUpgrade

Specifies whether to keep the World Wide Web Service running on a server after an operating system upgrade.

ExtensionFile

Specifies the IIS extension files.

PathFTPRoot

Specifies the installation folder for the File Transfer Protocol (FTP) Service.

PathWWWRoot

Specifies the installation folder for the World Wide Web Service.

SvcManualStart

Specifies whether to start the World Wide Web Service or File Transfer Protocol Service manually on an upgrade.

ApplicationDependency

Specifies the Web Server Extension groups that an application depends on.

Syntax
ApplicationDependency = "AppName; GroupID, GroupID..."
Value Description

AppName

The name of the application.

GroupID

A unique text ID associated with one or more ISAPIs or CGIs required for enabling the group.

Example
[InternetServer]
ApplicationDependency = CommerceServer;ASP60,INDEX99
ApplicationDependency = ExchangeServer;ASP60
ApplicationDependency = MyApp,ASPNET20
Comments

There is no default value.

DisableWebServiceOnUpgrade

Specifies whether to keep the World Wide Web Service running on a server after an operating system upgrade.

Syntax
DisableWebServiceOnUpgrade = True | False
Value Description

True

Prevents the World Wide Web Service from running after an upgrade.

False

Keeps the World Wide Web Service running after an upgrade.

Example
[InternetServer]
DisableWebServiceOnUpgrade = False
Comments

The default value is True.

ExtensionFile

Specifies the IIS extension files.

Syntax
ExtensionFile = enable, file_path[ ,ui_deletable [ ,group_id [ ,description ] ] ]
Value Description

Enable 0 | 1

Disables (0) or enables (1) the extension file.

File_path

The path to the extension file. Can contain environment variables.

Ui_deletable 0 | 1

Disables (0) or enables (1) the ability to delete the extension file from the user interface.

GroupID

A unique text ID associated with one or more ISAPIs or CGIs required for enabling the group. Also used with ApplicationDependency.

Description

The description of the extension file.

Example
[InternetServer]
ExtensionFile = 1, C:\Directory\, 0, ASP60
Comments

There is no default value.

Enclose file_path in double quotation marks if it is a long file name.

PathFTPRoot

Specifies the installation folder for the File Transfer Protocol (FTP) Service.

Syntax
PathFTPRoot = path_to_FTProot
Example
[InternetServer]
PathFTPRoot = C:\Inetpub\Ftproot
Comments

The default is systemdrive\Inetpub\Ftproot.

Enclose path_to_FTProot in quotation marks if it is a long file name.

This entry is useful only if you install the File Transfer Protocol (FTP) Service.

PathWWWRoot

Specifies the installation folder for the World Wide Web Service.

Syntax
PathWWWRoot = path_to_wwwroot
Example
[InternetServer]
PathWWWRoot = C:\Inetpub\Wwwroot
Comments

The default is systemdrive\Inetpub\Wwwroot.

Enclose path_to_wwwroot in quotation marks if it is a long file name.

This entry is useful only if you install the World Wide Web Service.

SvcManualStart

Specifies whether to start the World Wide Web Service or the File Transfer Protocol (FTP) Service manually after an upgrade.

Syntax
SvcManualStart = www | ftp
Value Description

www

The World Wide Web Service requires a manual restart after an upgrade.

ftp

The File Transfer Protocol (FTP) Service requires a manual restart after an upgrade.

Example
[InternetServer]
SvcManualStart = ftp
Comments

There is no default value.