jheibeck Posted August 30, 2006 Posted August 30, 2006 In our domain, the network people have decided that certain network settings must be configured. I use Symantec Ghost and Sysprep to create images. Unfortunatly, Sysprep wipes out the required network settings. Can anyone help me discover the registry keys to acheive the following? Or, it seems that I should be able to configure these in the sysprep.inf file, but I don't know how.The settings:1. The properties under the Local Area Connection should have the "Client for Microsoft Networks" box *unchecked*. (Question about this- what does unchecking this box do?)2. Our domain must be listed on the DNS tab under TCP/IP Properties > Advanced > DNS3. On this same tab, the "Register this connection's addresses in DNS" box must be *unchecked*.We do a lot of ghosting and I really need to automate these settings or they will be forgotten.I'v tried to isolate the settings using Regsnap, but there are to many differences and I don't know which ones apply to MY settings. Thanks
jheibeck Posted August 30, 2006 Author Posted August 30, 2006 Well I solved #2 by searching for our domain in the registry and exporting it. I sure need help with the other 2 though.
BDS250 Posted September 1, 2006 Posted September 1, 2006 You could always set the network settings from a batch file using the NETSH.exe enviroment.On a a machine with the network settings configured use this command:netsh.exe int ip dump > c:\ipsettings.txtThat will create the netsh script that you run on the freshly imaged machinenetsh.exe exec ipsettings.txtIf you are using static IP address's you will want to edit the ipsettings.txt file and change the ip settings.Hope that helps.
dim Posted September 2, 2006 Posted September 2, 2006 Here ya go bud... To get network client put the following in sysprep.inf file[NetClients] MS_MSClient=params.MS_MSClientand under your network settings you want the following[params.MS_TCPIP.Adapter01]DisableDynamicUpdate = YESDNSDomain = fabrikam.comDNSServerSearchOrder = server1.fabrikam.com, fabrikam.com
pdmcmahon Posted September 4, 2006 Posted September 4, 2006 Any way to rename the network card to anything but Local Area Connection?
p4ntb0y Posted September 5, 2006 Posted September 5, 2006 bad boy jumping on a thread!any ways you can rename the NIC card with a vbscript and WMI using "Win32_NetworkAdapter"[Networking]Supports the same settings as unattend.txtSampleThis sample demonstrates one use of the [MS_TCPIP parameters] section of Unattend.txt or sysprep.inf[MS_TCPIP parameters]DeadGWDetectDefault = NoDNSDomain = fabrikam.comDNSSuffixSearchOrder = server1.fabrikam.com, fabrikam.comDontAddDefaultGatewayDefault = NoEnableICMPRedirect = NoEnableLMHosts = YesEnableSecurity = NoScopeID = REDMONDSyncDomainWithMembership = 1UseDomainNameDevolution = No[params.MS_TCPIP.Adapter01]SpecificTo = Adapter01DisableDynamicUpdate = NoEnableAdapterDomainNameRegistration = NoDefaultGateway = 193.1.1.1DHCP = YesDHCPClassId = abcDNSDomain = fabrikam.comDNSServerSearchOrder = server1.fabrikam.com, fabrikam.comIPAddress = 193.1.1.33,193.1.1.34NetBIOSOptions = 1SubnetMask = 193.1.1.255WINS = YesWINSServerList = 193.1.1.95,193.1.1.97amazing what you can find in the ref.chm file in the deploy.cab on your xp cd in the tools folder!!link to tools download M$ XP DEPLOY TOOLS
diveboy Posted September 6, 2006 Posted September 6, 2006 this should cover all your needs.Scripting DNS on XP
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now