|
| ||||||||||
| Tags: batch file, ip address, lan, local area connection, tcp ip |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| I want to create a TCP/IP Batch file
I need to create a batch file where I can change my TCP/IP settings, i.e., IP addresses. When I run that batch file it should ask in the following order one by one: 1. IP Address 2. Subnet Mask 3. Default gateway 4. Preferred DNS 5. Alternate DNS My OS is WinXP SP3 I read the following thread but it couldn't solve my problem. Create a simple IP Tool Batch File. I want to ask that when I copied the commands in notepad from the above link and ran the batch file then it asks LAN name. But I tried almost all names like Local Area Connection or LAN but it said "Local Area Connection, Lan" is wrongly specified or something like this. I want to know the name of LAN command. So I want a batch file and also the name of LAN which I should enter during running of batch file. Please someone help me. my email: aladdin2006@ymail.com thanks. |
|
#2
| |||
| |||
| Re: I want to create a TCP/IP Batch file
Check the below examples: Code: 1.@ECHO OFF 2. 3.set varip=65.88.48.77 4.set varsm=255.255.255.224 5.set vargw=65.88.48.65 6.set vardns1=66.78.202.254 7.set vardns2=66.78.210.254 8.set varhome=www.google.com 9. 10.REM ***** You don’t need to change anything below this line! ****** 11. 12.ECHO This fanciness is brought to you by Saman Sadeghi! 13.ECHO Setting IP Address and Subnet Mask 14.netsh int ip set address name = "Local Area Connection" source = static addr = %varip% mask = %varsm% 15. 16.ECHO Setting Gateway 17.netsh int ip set address name = "Local Area Connection" gateway = %vargw% gwmetric = 1 18. 19.ECHO Setting Primary DNS 20.netsh int ip set dns name = "Local Area Connection" source = static addr = %vardns1% 21. 22.ECHO Setting Secondary DNS 23.netsh int ip add dns name = "Local Area Connection" addr = %vardns2% 24. 25.ECHO Setting Internet Explorer Homepage to %varhome% 26.reg add "hkcusoftwaremicrosoftinternet explorermain" /v "Start Page" /d "%varhome%" /f 27. 28.ECHO Here are the new settings for %computername%: 29.netsh int ip show config 30. 31.pause |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "I want to create a TCP/IP Batch file" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Create and edit batch file in windows 7? | bomblast | Tips & Tweaks | 2 | 08-11-2011 02:56 PM |
| Help me create this batch file. | bomblast | Windows Software | 1 | 31-10-2011 10:47 AM |
| How to create blank line in batch file | Carey | Software Development | 4 | 27-03-2010 09:36 PM |
| How to create batch for RAR file extension | Jayden | Windows Software | 1 | 13-04-2009 11:58 PM |
| How to create a Batch file | Katty | Software Development | 1 | 10-01-2009 12:26 PM |