Link to home
Start Free TrialLog in
Avatar of TheToad
TheToad

asked on

Unattended Setup script

I am in the process of creating an unattended setup script and would like to know what I should specify under the TCParamSection in order to set an IP address and a subnet mask.
ASKER CERTIFIED SOLUTION
Avatar of sgenther
sgenther

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Koen
If your are not using DHCP it could/should look like this

[TCParamSection]
DHCP = no
IPAddress = 255.255.255.255 ip address of the PC
Subnet = 255.255.252.0
Gateway = 255.255.255.255                    ip address of the gateway(router)
DNSServer = 255.255.255.255                 ip address of the dns server
WINSPrimary = 255.255.255.255             ip address of the primary wins
WINSSecondary = 255.255.255.255         ip address of the secondary wins
DNSName = dns.domain.name                your dns domain name

Avatar of whiteg
whiteg

It would be a good idea to use a udf.txt file if you need to have a unique static ip address for multiple machines ....