Question : Merging 2 DNS zones

I have 2  DNS zones with the same name and different records. I would like to use a script to merge  records from one zone to another.
I checked DNSCMD.exe and didn;t see an example that can do that.

Any help?

Thanks

Answer : Merging 2 DNS zones

Example :
dnscdm /RecordAdd yourdomain.local  computername    A     192.168.18.20

You can use the Excel method to import all the record you want : http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Server/2003_Server/Q_23798709.html

Or use powershell (don't forget to clean records.txt before) :
1:
Import-CSV records.txt -delimiter `t | foreach { dnscmd /RecordAdd yourzone.local $_.Name A $_.Data }
Random Solutions  
 
programming4us programming4us