Link to home
Start Free TrialLog in
Avatar of typertec
typertec

asked on

Export DHCP scope and names to a text file on Windows server 2000

In Windows Server 2000 DHCP, is there a way to export the scope and name to a text file? For example, I open up the DHCP msc. I see on the left pane all the scopes. Can I export that to a text file?
Avatar of sk_raja_raja
sk_raja_raja

netsh dhcp server export c:\dhcp all
1.Refer this link from MS,
http://support.microsoft.com/kb/130642

2.try this command also,
netsh dhcp server dump all > dump.txt

3.create a batch file like this,
netsh dhcp server \\dhcpservername1 export c:\DHCP_Backup_Server1 all
netsh dhcp server \\dhcpservername2 export c:\DHCP_Backup_Server2 all
netsh dhcp server \\dhcpservername3 export c:\DHCP_Backup_Server3 all

ASKER CERTIFIED SOLUTION
Avatar of Pber
Pber
Flag of Canada image

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