Changing Network Settings

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I wanting to change the DNS settings from one IP to Anothers . When I click
on TCP/IP Within network settings the Properties button is ghosted out even
though I have Admin Privs.

Any Ideas !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 
You might try netsh from a command prompt;

1 to set ip address and subnet, 2 to clear previous dns server ip's, 3 to
set primary dns server, 4 to set alt dns server, 5 to set ip address DHCP
assigned

1.) netsh interface ip set address name="Local Area Connection"
source=static addr=192.168.10.10 mask=255.255.255.0 gateway=none
2.) netsh interface ip delete dns name="Local Area Connection" addr=all
3.) netsh interface ip set dns name="Local Area Connection" source=static
addr=192.168.20.20
4.) netsh interface ip add dns name="Local Area Connection"
addr=192.168.30.30
5.) netsh interface ip set address name="Local Area Connection" source=dhcp

Where "Local Area Connection" is the name of your connection. (watch for
line wrap)

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

:
|I wanting to change the DNS settings from one IP to Anothers . When I click
| on TCP/IP Within network settings the Properties button is ghosted out
even
| though I have Admin Privs.
|
| Any Ideas !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 
Back
Top