<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>HowConfig &#187; cmd</title>
	<atom:link href="http://www.howconfig.com/tag/cmd/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.howconfig.com</link>
	<description>Quick tips on software configuration.</description>
	<lastBuildDate>Fri, 13 Jan 2012 12:55:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Batch adding multiple ip addresses to Windows server with netsh</title>
		<link>http://www.howconfig.com/windows/batch-adding-multiple-ip-addresses-to-windows-server-with-netsh/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=batch-adding-multiple-ip-addresses-to-windows-server-with-netsh</link>
		<comments>http://www.howconfig.com/windows/batch-adding-multiple-ip-addresses-to-windows-server-with-netsh/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 18:33:41 +0000</pubDate>
		<dc:creator>config</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[batch script]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[cmd script]]></category>
		<category><![CDATA[ip address]]></category>
		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://www.howconfig.com/?p=24</guid>
		<description><![CDATA[Ever wanted to add 200 ip addresses to Windows Server with one command instead of manually configure it on the interface? Netsh will help you to save time. You can use this quick batch command in cmd: FOR /L %I IN (2,1,254) DO netsh interface ip add address "Local Area Connection" 10.0.0.%I 255.255.255.0 This example [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to add 200 ip addresses to Windows Server with one command instead of manually configure it on the interface? Netsh will help you to save time.<br />
You can use this quick batch command in cmd:</p>
<pre>FOR /L %I IN (2,1,254) DO netsh interface ip add address "Local Area Connection" 10.0.0.%I 255.255.255.0</pre>
<p>This example will add ip addresses from 10.0.0.2 to 10.0.0.254 with 1 step each time.<br />
You can play with this example and change the place of <code>%I</code> to say add ip addresses from 10.0.1.1 to 10.0.200.1 and so on.<br />
Do not forget to change the name of the interface (<code>"Local Area Connection"</code>) to the exact name of the interface you would like to use.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.howconfig.com/windows/batch-adding-multiple-ip-addresses-to-windows-server-with-netsh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

