<?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>When Will PowerShell V2 Ship?</title><link>http://blogs.msdn.com/powershell/archive/2008/06/17/when-will-powershell-v2-ship.aspx</link><description>By far, the most frequently asked question at TechEd 2008 was, "When will PowerShell V2 Ship?". We are expressly prohibited from answering that question and I know that that can be frustrating. I can say this: We are now feature complete with V2. History</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: When Will PowerShell V2 Ship?</title><link>http://blogs.msdn.com/powershell/archive/2008/06/17/when-will-powershell-v2-ship.aspx#8612167</link><pubDate>Tue, 17 Jun 2008 21:21:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8612167</guid><dc:creator>Eric</dc:creator><description>&lt;p&gt;Jeffrey: &amp;nbsp;Any idea whether or not the WinRM team is going to do a non Vista-only installer so the rest of us can enjoys these great new features?&lt;/p&gt;</description></item><item><title>I'm sorry</title><link>http://blogs.msdn.com/powershell/archive/2008/06/17/when-will-powershell-v2-ship.aspx#8615179</link><pubDate>Wed, 18 Jun 2008 11:38:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8615179</guid><dc:creator>isml</dc:creator><description>&lt;p&gt;I'm sorry I have to post a problem that is not related to this article here, as I do not know where to ask.&lt;/p&gt;
&lt;p&gt;The following is my test script:&lt;/p&gt;
&lt;p&gt;function Test()&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;$a1 = New-Object System.Collections.ArrayList&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;[void]$a1.Add(&amp;quot;1&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;[void]$a1.Add(&amp;quot;2&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;[void]$a1.Add(&amp;quot;3&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;$a2 = New-Object System.Collections.ArrayList&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;[void]$a2.Add($a1)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Write-Host &amp;quot;In Function Test Count:&amp;quot; $a2.Count&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;$a2&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;$a = Test&lt;/p&gt;
&lt;p&gt;Write-Host &amp;quot;Out Function Test Count:&amp;quot; $a2.Count&lt;/p&gt;
&lt;p&gt;The Result:&lt;/p&gt;
&lt;p&gt;In Function Test Count: 1&lt;/p&gt;
&lt;p&gt;Out Function Test Count: 3&lt;/p&gt;
&lt;p&gt;I do not know why, it seems that ArrayList embed in ArrayList is converted to a flat ArrayList when returned from Function.&lt;/p&gt;
&lt;p&gt;my email is isml_smile@hotmail.com. Could you send me the answer?Thanks very much.&lt;/p&gt;</description></item><item><title>re: When Will PowerShell V2 Ship?</title><link>http://blogs.msdn.com/powershell/archive/2008/06/17/when-will-powershell-v2-ship.aspx#8616572</link><pubDate>Wed, 18 Jun 2008 16:51:10 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8616572</guid><dc:creator>Eric</dc:creator><description>&lt;p&gt;isml: &amp;nbsp;The best place to have PowerShell questions answered is generally on the MSDN forums, unless you're part of the previous betas or already registerd on Microsoft Connect (great forums there with tons of helpful people)&lt;/p&gt;
&lt;p&gt;As for your conundrum, you are correct that an ArrayList added to another ArrayList doesn't populated the items from the second ArrayList into the first, but rather puts the whole first ArrayList in the next open element of the second ArrayList.&lt;/p&gt;</description></item><item><title>@Eric</title><link>http://blogs.msdn.com/powershell/archive/2008/06/17/when-will-powershell-v2-ship.aspx#8617491</link><pubDate>Wed, 18 Jun 2008 20:18:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8617491</guid><dc:creator>Marco Shaw</dc:creator><description>&lt;p&gt;Eric,&lt;/p&gt;
&lt;p&gt;The WinRM 2.0 CTP works on Server 2008 also. &amp;nbsp;You were looking for XP and/or 2003?&lt;/p&gt;
&lt;p&gt;I can ask the WinRM PM...&lt;/p&gt;</description></item><item><title>@Eric</title><link>http://blogs.msdn.com/powershell/archive/2008/06/17/when-will-powershell-v2-ship.aspx#8621460</link><pubDate>Thu, 19 Jun 2008 15:22:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8621460</guid><dc:creator>Marco Shaw</dc:creator><description>&lt;p&gt;Isml's problem is also rooted into the fact that scoping is involved here.&lt;/p&gt;
&lt;p&gt;PS&amp;gt; get-help about_scope&lt;/p&gt;
&lt;p&gt;His last $a2.count is in a different scope than the $a2 within the function, so they are not &amp;quot;connected&amp;quot;.&lt;/p&gt;</description></item><item><title>re: When Will PowerShell V2 Ship?</title><link>http://blogs.msdn.com/powershell/archive/2008/06/17/when-will-powershell-v2-ship.aspx#8621647</link><pubDate>Thu, 19 Jun 2008 16:25:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8621647</guid><dc:creator>Eric</dc:creator><description>&lt;p&gt;Yes Marco, in my environment, we still have some Win2k stragglers, but mostly XP and Server2003 (only one Server2008 so far, but that will change towards the end of the year)&lt;/p&gt;
&lt;p&gt;I got a copy of Vista at home, but only one, so right now I can't do remoting at work OR at home. &amp;nbsp;From what I gather the only reason for this is the choice the WinRM team made on the redistributable package they chose for the 2.0 CTP.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Eric&lt;/p&gt;</description></item><item><title>re: When Will PowerShell V2 Ship?</title><link>http://blogs.msdn.com/powershell/archive/2008/06/17/when-will-powershell-v2-ship.aspx#8622546</link><pubDate>Thu, 19 Jun 2008 20:54:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8622546</guid><dc:creator>Eric</dc:creator><description>&lt;p&gt;Thanks Marco, I didn't even catch that on first glance. &amp;nbsp;I also wanted to apologize if my original post about WinRM came off as snarky. &amp;nbsp;I'm a big fan of PowerShell and use it on a daily basis to make my life easier. &amp;nbsp;But to me, PowerShell V1 was just a stepping off point. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Until Remoting is part of the package, I still have to connect to a plethora of machines via RDP and run scripts manually, or look at GPO solutions (which I'm not high enough in the food chain to even suggest)&lt;/p&gt;
&lt;p&gt;To that end, any insight/details you could offer on the final release of WinRM and it's redistributable packaging would be very much appreciated.&lt;/p&gt;
&lt;p&gt;Thanks again,&lt;/p&gt;
&lt;p&gt;Eric&lt;/p&gt;</description></item><item><title>WinRM 2.0 CTP2 is out</title><link>http://blogs.msdn.com/powershell/archive/2008/06/17/when-will-powershell-v2-ship.aspx#8662554</link><pubDate>Fri, 27 Jun 2008 21:43:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8662554</guid><dc:creator>Marco Shaw</dc:creator><description>&lt;p&gt;WinRM 2.0 CTP2 was released on June 20th. &amp;nbsp;Still only supports Vista/2008. &amp;nbsp;I didn't receive a response to my queries about support for other OSs.&lt;/p&gt;</description></item><item><title>re: When Will PowerShell V2 Ship?</title><link>http://blogs.msdn.com/powershell/archive/2008/06/17/when-will-powershell-v2-ship.aspx#8833868</link><pubDate>Tue, 05 Aug 2008 15:22:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8833868</guid><dc:creator>Manfred</dc:creator><description>&lt;p&gt;I'm trying to only get the Synopsis for Cmdlets in PowerShell V2.&lt;/p&gt;
&lt;p&gt;foreach ( $a in get-command | sort name) { write-host $a.name &amp;quot;&amp;gt;&amp;gt;&amp;quot;(get-help $a.name).synopsis `n}&lt;/p&gt;
&lt;p&gt;For some Cmdlets an return is returned.&lt;/p&gt;
&lt;p&gt;Are there help Files missing?&lt;/p&gt;
&lt;p&gt;Thx, Manfrd&lt;/p&gt;</description></item><item><title>Let it ship soon</title><link>http://blogs.msdn.com/powershell/archive/2008/06/17/when-will-powershell-v2-ship.aspx#8841044</link><pubDate>Thu, 07 Aug 2008 16:28:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8841044</guid><dc:creator>se7en</dc:creator><description>&lt;p&gt;The ft/fl bug in v1 is a real pain - either a patch for v1 or quicker piping of v2 would be much appreciated...&lt;/p&gt;</description></item><item><title>re: When Will PowerShell V2 Ship?</title><link>http://blogs.msdn.com/powershell/archive/2008/06/17/when-will-powershell-v2-ship.aspx#9551450</link><pubDate>Wed, 15 Apr 2009 23:57:08 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9551450</guid><dc:creator>Paul</dc:creator><description>&lt;p&gt;Do i understand correctly that we can't install powershell v2 on system that installs sql server 2008? Sql Server 2008 installs it's own &amp;quot;PS mini shell&amp;quot; and doesn't provide for un-installing it. When i try to install it tells me that i have to remove the previous version. &lt;/p&gt;</description></item><item><title>re: When Will PowerShell V2 Ship?</title><link>http://blogs.msdn.com/powershell/archive/2008/06/17/when-will-powershell-v2-ship.aspx#9899861</link><pubDate>Sat, 26 Sep 2009 17:44:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9899861</guid><dc:creator>David</dc:creator><description>&lt;p&gt;If you install Poweshell v2 then install SQL 2008 afterwards, SQL sees PS as already present and installs it's extensions then itself. Then it and Powershell v2 work just fine.&lt;/p&gt;</description></item></channel></rss>