banner

[Proxy]

Answer File = Unattend.txt

The [Proxy] section contains entries for specifying proxy server settings for the Microsoft® Windows® XP or Windows Server 2003 family browser. If these settings are not present, Setup uses the default for Windows XP or the Windows Server 2003 family.

Important

Entry Description
FTP_Proxy_Server Specifies the Internet Protocol (IP) address or Uniform Resource Locator (URL) of the File Transfer Protocol (FTP) proxy server on the network.
Gopher_Proxy_Server Specifies the IP address or URL of the Gopher proxy server on the network.
HTTP_Proxy_Server Specifies the IP address or URL of the HTTP proxy server on the network.
Proxy_Enable Specifies whether to use a proxy server to connect to the Internet.
Proxy_Override Specifies a semicolon-separated list of IP addresses to bypass the proxy server.
Secure_Proxy_Server Specifies the IP address or URL of the Secure proxy on the network.
Socks_Proxy_Server Specifies the IP address or URL of the Socks proxy on the network.
Use_Same_Proxy Specifies whether to use the same proxy server for all protocols.

Sample

This sample demonstrates one use of the [Proxy] section of Unattend.txt.

[Proxy]
FTP_Proxy_Server = http://proxyserver:80
Gopher_Proxy_Server = http://proxyserver:80
HTTP_Proxy_Server = http://proxyserver:80
Proxy_Enable = 1
Proxy_Override = <local>
Secure_Proxy_Server = http://proxyserver:80
Socks_Proxy_Server = http://proxyserver:80
Use_Same_Proxy = 1

FTP_Proxy_Server

Specifies the Internet Protocol (IP) address or URL of the FTP proxy server on the network.

Syntax FTP_Proxy_Server = URL_or_IP_address
Value URL_or_IP_address
Example
FTP_Proxy_Server = http://proxyserver:80

icon Return to top

Gopher_Proxy_Server

Specifies the IP address or URL of the Gopher proxy server on the network.

Syntax Gopher_Proxy_Server = URL_or_IP_address
Value URL_or_IP_address
Example
Gopher_Proxy_Server = http://proxyserver:80

icon Return to top

HTTP_Proxy_Server

Specifies the IP address or URL of the HTTP proxy server on the network.

Syntax HTTP_Proxy_Server = URL_or_IP_address
Value URL_or_IP_address
Dependencies Required if you use Use_Same_Proxy.
Example
HTTP_Proxy_Server = http://proxyserver:80

icon Return to top

Proxy_Enable

Specifies whether to use a proxy server to connect to the Internet.

Syntax Proxy_Enable = 0 | 1
Values 0

Does not use a proxy server.

1

Uses a proxy server.

Registry subkey HKEY_CURRENT_USER\Software\Microsoft\Windows\
    CurrentVersion\Internet Settings\ProxyEnable
Example
Proxy_Enable = 1

icon Return to top

Proxy_Override

Specifies a semicolon-separated list of IP addresses to bypass the proxy server.

Syntax Proxy_Override = list_of_IP_addresses
Value list_of_IP_addresses
Registry subkey HKEY_CURRENT_USER\Software\Microsoft\Windows\
    CurrentVersion\Internet Settings\ProxyOverride
Example
Proxy_Override = <local>
Comments You must enclose the list in quotation marks (for more than one address) and add the string <local> to override local addresses.

icon Return to top

Secure_Proxy_Server

Specifies the IP address or URL of the Secure proxy on the network.

Syntax Secure_Proxy_Server = URL_or_IP_address
Value URL_or_IP_address
Example
Secure_Proxy_Server = http://proxyserver:80

icon Return to top

Socks_Proxy_Server

Specifies the IP address or URL of the Socks proxy on the network.

Syntax Socks_Proxy_Server = URL_or_IP_address
Value URL_or_IP_address
Example
Socks_Proxy_Server = http://proxyserver:80

icon Return to top

Use_Same_Proxy

Specifies whether to use the same proxy server for all protocols.

Syntax Use_Same_Proxy = 0 | 1
Values 0

Does not use the same proxy server for all protocols.

1

Uses the same proxy server for all protocols.

Example
Use_Same_Proxy = 1
Comments If you specify this entry, all other transports use the HTTP proxy server.

icon Return to top