<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Managing Datacenter Machine Names</title><link>http://blogs.msdn.com/b/powershell/archive/2008/04/11/managing-datacenter-machine-names.aspx</link><description>One of the first things managers of large scale datacenter do is to produce a regular naming scheme for their servers.&amp;#160; These often embed the function, location, and then an integer.&amp;#160; e.g. &amp;#160; IIS-West-001 IIS-West-002 ... IIS-West-234 or</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>re: Managing Datacenter Machine Names</title><link>http://blogs.msdn.com/b/powershell/archive/2008/04/11/managing-datacenter-machine-names.aspx#8453501</link><pubDate>Sat, 03 May 2008 07:43:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8453501</guid><dc:creator>Ryan M. Ferris</dc:creator><description>&lt;p&gt;creates sequential directories&lt;/p&gt;
&lt;p&gt;1..100 | %{ni ( &amp;quot;NewDirectory-{0:0}&amp;quot; -f $_ ) -type directory }&lt;/p&gt;
&lt;p&gt;creates files with sequential content&lt;/p&gt;
&lt;p&gt;1..100 | %{ni ( &amp;quot;NewFile-{0:0}&amp;quot; -f $_ ) -type &amp;quot;file&amp;quot; -value &amp;quot;Number $_ of 100 files.&amp;quot;}&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8453501" width="1" height="1"&gt;</description></item><item><title>re: Managing Datacenter Machine Names</title><link>http://blogs.msdn.com/b/powershell/archive/2008/04/11/managing-datacenter-machine-names.aspx#8393669</link><pubDate>Mon, 14 Apr 2008 20:38:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8393669</guid><dc:creator>joepruitt</dc:creator><description>&lt;p&gt;Don't forget the network configuration. &amp;nbsp;Once you've got all those servers named, you'll have to deploy them and if you are lucky enough to be using a BIG-IP to front all your servers, you can use the iControl Cmdlets to provision all those servers at the network layer. &lt;/p&gt;
&lt;p&gt;iControl PowerShell Cmdlets: &lt;a rel="nofollow" target="_new" href="http://devcentral.f5.com/Default.aspx?tabid=71"&gt;http://devcentral.f5.com/Default.aspx?tabid=71&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8393669" width="1" height="1"&gt;</description></item><item><title>re: Managing Datacenter Machine Names</title><link>http://blogs.msdn.com/b/powershell/archive/2008/04/11/managing-datacenter-machine-names.aspx#8391524</link><pubDate>Mon, 14 Apr 2008 12:31:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8391524</guid><dc:creator>Jakob Bindslet</dc:creator><description>&lt;p&gt;Remember that you can easily construct a range with &amp;quot;holes&amp;quot;. Let's for instance say that your servers are numbered from 1-15 and from 50-60:&lt;/p&gt;
&lt;p&gt;(1..15 + 50..60) |%{&amp;quot;IIS-West-{0:000}&amp;quot; -f $_} &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8391524" width="1" height="1"&gt;</description></item><item><title>re: Managing Datacenter Machine Names</title><link>http://blogs.msdn.com/b/powershell/archive/2008/04/11/managing-datacenter-machine-names.aspx#8385455</link><pubDate>Sat, 12 Apr 2008 19:06:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8385455</guid><dc:creator>PowerShell Team</dc:creator><description>&lt;p&gt;&amp;gt; PS C:\Users\daniel.hofmann&amp;gt; 1..5000000 |%{&amp;quot;IIS-West-{0:0000000}&amp;quot; -f $_} &amp;gt;c:\test.txt&lt;/p&gt;
&lt;p&gt;&amp;gt; Bad range expression; 4999999 is larger than the maximum size of a range (=50000 elements).&lt;/p&gt;
&lt;p&gt;If you promise to buy that many Windows Servers, I'll promise to fix that bug.&lt;/p&gt;
&lt;p&gt;Deal?&lt;/p&gt;
&lt;p&gt;(Actually, we've already fixed in V2 so you better start buying those servers. :-) )&lt;/p&gt;
&lt;p&gt;Jeffrey Snover [MSFT]&lt;/p&gt;
&lt;p&gt;Windows Management Partner Architect&lt;/p&gt;
&lt;p&gt;Visit the Windows PowerShell Team blog at: &amp;nbsp; &amp;nbsp;&lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/PowerShell"&gt;http://blogs.msdn.com/PowerShell&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Visit the Windows PowerShell ScriptCenter at: &amp;nbsp;&lt;a rel="nofollow" target="_new" href="http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx"&gt;http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx&lt;/a&gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8385455" width="1" height="1"&gt;</description></item><item><title>re: Managing Datacenter Machine Names</title><link>http://blogs.msdn.com/b/powershell/archive/2008/04/11/managing-datacenter-machine-names.aspx#8385231</link><pubDate>Sat, 12 Apr 2008 16:33:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8385231</guid><dc:creator>dan</dc:creator><description>&lt;p&gt;PS C:\Users\daniel.hofmann&amp;gt; 1..50000 |%{&amp;quot;IIS-West-{0:000}&amp;quot; -f $_} &amp;gt;c:\test.txt&lt;/p&gt;
&lt;p&gt;PS C:\Users\daniel.hofmann&amp;gt; 1..50000 |%{&amp;quot;IIS-West-{0:00000}&amp;quot; -f $_} &amp;gt;c:\test.txt&lt;/p&gt;
&lt;p&gt;PS C:\Users\daniel.hofmann&amp;gt; 1..5000000 |%{&amp;quot;IIS-West-{0:0000000}&amp;quot; -f $_} &amp;gt;c:\test.txt&lt;/p&gt;
&lt;p&gt;Bad range expression; 4999999 is larger than the maximum size of a range (=50000 elements).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8385231" width="1" height="1"&gt;</description></item><item><title>re: Managing Datacenter Machine Names</title><link>http://blogs.msdn.com/b/powershell/archive/2008/04/11/managing-datacenter-machine-names.aspx#8383145</link><pubDate>Sat, 12 Apr 2008 03:50:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8383145</guid><dc:creator>Chris Federico</dc:creator><description>&lt;p&gt;---&amp;quot;Buy as many Windows Servers as you like, we'll make it easy to manage them.&amp;quot;&lt;/p&gt;
&lt;p&gt;Just as long as they are virtual Servers right Jeffrey :) Got too keep it green&lt;/p&gt;
&lt;p&gt;hehehe&lt;/p&gt;
&lt;p&gt;Chris&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8383145" width="1" height="1"&gt;</description></item></channel></rss>