IT Management Daily
Storage Daily
Security Daily
FREE NEWSLETTERS
search
 

follow us on Twitter


internet.commerce
Be a Commerce Partner















internet.com
IT
Developer
Internet News
Small Business
Personal Technology

Search internet.com
Advertise
Corporate Info
Newsletters
Tech Jobs
E-mail Offers




Products
 LinqConnect Express (LinqConnect Express)
 LinqConnect 2.00 (Devart)
 EMS SQL Manager for MySQL (EMS Database Management Solutions, Inc.)
 EMS SQL Management Studio for MySQL (EMS Database Management Solutions, Inc.)
 Database Designer for PostgreSQL (MicroOLAP Technologies LTD)
 ESBFinCalc Pro - Financial Calculator (ESB Consultancy)
» Enterprise IT Planet » Resources » Win Scripts

Create a Record in DNS from a TXT File

September 26, 2005

Email Print Digg This Add to del.icio.us

Author: Eugenio Talarico - eugeniotalarico at vodafone dot it
Platform: Windows
Type: Windows Script

Description:

The BAT file creates a series of records into DNS. It uses the LISTA.TXT file as input, wherein you have to specify the name of the record and its value.

If you open the BAT file you'll see that after DNSCMD you have to also specify a server that contains the zone (SERVERNAME), the parameter /RecordADD to add the record, and the ZONE.

You can also dictate whether the record you want to add is a HOST or an ALIAS. To do so, you have to place the following between the RECORD_NAME and the value XXX.XXX.XXX.XXX or alias:

A = HOST
CNAME = ALIAS
so the result of the string inside the input.txt reads as:
RECORD_2_ADD;A;IP_ADDRESS
OR
RECORD_2_ADD;CNAME;ALIAS_WHERE_POINT

Download Location - Link

Scroll down to view the script.


Script Code:

BATCH FILE:

for /f "tokens=1-3 delims=;" %%a in (input.txt) do (dnscmd SERVERNAME/RecordAdd ZONE_WHERE_ADD_RECORD %%a %%b %%c >>insert.log)


Disclaimer: We hope that the information in these pages is valuable to you. Your use of the information contained in these pages, however, is at your sole risk. All information on these pages is provided "as - is", without any warranty, whether express or implied, of its accuracy, completeness, fitness for a particular purpose, title or non-infringement, and none of the third-party products or information mentioned in the work are authored, recommended, supported or guaranteed by me. I shall not be liable for any damages you may sustain by using this information, whether direct, indirect, special, incidental or consequential, even if it has been advised of the possibility of such damages.

Email Print Digg This Add to del.icio.us

Win Scripts Archives