- 论坛徽章:
- 0
|
不知道大家碰到和我一样的问题么??
最近公司网段要重新划分,dhcp的绑定地址要重新建,2000 server没有导入工具,几百条记录啊,我真晕
赶快google,一无所获
查找msdn,功夫不负有心人,终于找到解决的办法了,下载windows 2000 server resource kit,安装dhcpobjs,注册dhcpobjs.dll
下面的dhcp-export.vbs代码是导出的,导入的还有点bug,以后发上来
其实大家看了代码写导入的也不难了。
- strfilepath = "dhcp.txt"
- Set objFile = CreateObject("Scripting.FileSystemObject")
- Set strguyfile=objFile.CreateTextFile(strFilePath,true)
- strguyfile.WriteLine("******************DHCP Server Configure*************")
- set dhcpmgr =Createobject("Dhcp.Manager")
- set dhcpsrv = dhcpmgr.Servers.Connect("192.168.0.2")
- set ll_dhcp = dhcpsrv
- for i = 1 to dhcpsrv.Scopes.count
- strguyfile.WriteLine("Scopes"&i&":"&dhcpsrv.Scopes.Item(i).Address)
- strguyfile.WriteLine("Reservations:")
- for j = 1 to dhcpsrv.Scopes(i).Reservations.count
- ll_address = dhcpsrv.Scopes(i).Reservations(j).Address
- ll_name = dhcpsrv.Scopes(i).Reservations(j).name
- ll_uniqueid=dhcpsrv.Scopes(i).Reservations(j).UniqueID
- ll_comment=dhcpsrv.Scopes(i).Reservations(j).Comment
- strguyfile.WriteLine(chr(9)&ll_name&","&ll_address&","&ll_uniqueid&","&ll_comment )
- next
- next
- strguyfile.WriteLine("****************** END *************")
复制代码
运行,赶快看看dhcp.txt,哈哈,成功。 |
|