(Unattended Installation)
Applies To: Windows Server 2003, Windows Server 2003 R2, Windows Server 2003 with SP1, Windows Server 2003 with SP2
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. |
Specifies the Web Server Extension groups that an application depends on.
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. |
[InternetServer]
ApplicationDependency = CommerceServer;ASP60,INDEX99
ApplicationDependency = ExchangeServer;ASP60
ApplicationDependency = MyApp,ASPNET20
There is no default value.
Specifies whether to keep the World Wide Web Service running on a server after an operating system upgrade.
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. |
[InternetServer]
DisableWebServiceOnUpgrade = False
The default value is True.
Specifies the IIS extension files.
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. |
[InternetServer]
ExtensionFile = 1, C:\Directory\, 0, ASP60
There is no default value.
Enclose file_path in double quotation marks if it is a long file name.
Specifies the installation folder for the File Transfer Protocol (FTP) Service.
PathFTPRoot = path_to_FTProot
[InternetServer]
PathFTPRoot = C:\Inetpub\Ftproot
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.
Specifies the installation folder for the World Wide Web Service.
PathWWWRoot = path_to_wwwroot
[InternetServer]
PathWWWRoot = C:\Inetpub\Wwwroot
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.
Specifies whether to start the World Wide Web Service or the File Transfer Protocol (FTP) Service manually after an upgrade.
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. |
[InternetServer]
SvcManualStart = ftp
There is no default value.