<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: VS2005 PowerShell Prompt</title>
	<atom:link href="http://rwandering.net/2006/05/02/vs2005-powershell-prompt/feed/" rel="self" type="application/rss+xml" />
	<link>http://rwandering.net/2006/05/02/vs2005-powershell-prompt/</link>
	<description>The blogged wandering of Robert W. Anderson</description>
	<lastBuildDate>Sun, 11 Mar 2012 16:24:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Lior Elia</title>
		<link>http://rwandering.net/2006/05/02/vs2005-powershell-prompt/comment-page-1/#comment-190420</link>
		<dc:creator>Lior Elia</dc:creator>
		<pubDate>Thu, 15 Jan 2009 17:41:44 +0000</pubDate>
		<guid isPermaLink="false">http://rwandering.net/2006/05/02/vs2005-powershell-prompt/#comment-190420</guid>
		<description>There&#039;s a little bug in the script.
The double backslash after &quot;ENV:&quot; causes all new variables to be prefixed with a backslash.
So you get for example &quot;\VCINSTALLDIR=c:\...&quot; instead of &quot;VCINSTALLDIR=c:\...&quot;
The string in that line should be instead:
&lt;code&gt;
&quot;ENV:\$($v[0])&quot;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>There&#8217;s a little bug in the script.<br />
The double backslash after &#8220;ENV:&#8221; causes all new variables to be prefixed with a backslash.<br />
So you get for example &#8220;\VCINSTALLDIR=c:\&#8230;&#8221; instead of &#8220;VCINSTALLDIR=c:\&#8230;&#8221;<br />
The string in that line should be instead:<br />
<code><br />
"ENV:\$($v[0])"<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dreamlusion</title>
		<link>http://rwandering.net/2006/05/02/vs2005-powershell-prompt/comment-page-1/#comment-168837</link>
		<dc:creator>dreamlusion</dc:creator>
		<pubDate>Sun, 06 Jul 2008 13:38:34 +0000</pubDate>
		<guid isPermaLink="false">http://rwandering.net/2006/05/02/vs2005-powershell-prompt/#comment-168837</guid>
		<description>Hi Robert,

Windows PowerShell profile locations have changed since this post was written: 
http://www.google.com/search?q=windows+powershell+profiles+site%3Amicrosoft.com

So this &quot;$home/My Documents/PSConfiguration/Microsoft.PowerShell_profile.ps1&quot; should be:
&quot;$home/My Documents/WindowsPowerShell/Microsoft.PowerShell_profile.ps1&quot;

Just my two cents.</description>
		<content:encoded><![CDATA[<p>Hi Robert,</p>
<p>Windows PowerShell profile locations have changed since this post was written:<br />
<a href="http://www.google.com/search?q=windows+powershell+profiles+site%3Amicrosoft.com" rel="nofollow">http://www.google.com/search?q=windows+powershell+profiles+site%3Amicrosoft.com</a></p>
<p>So this &#8220;$home/My Documents/PSConfiguration/Microsoft.PowerShell_profile.ps1&#8243; should be:<br />
&#8220;$home/My Documents/WindowsPowerShell/Microsoft.PowerShell_profile.ps1&#8243;</p>
<p>Just my two cents.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: An error occurred when merging assemblies: Access to the path &#8216;&#8230;&#8217; is denied. &#171; Dreamlusion&#8217;s blog</title>
		<link>http://rwandering.net/2006/05/02/vs2005-powershell-prompt/comment-page-1/#comment-168835</link>
		<dc:creator>An error occurred when merging assemblies: Access to the path &#8216;&#8230;&#8217; is denied. &#171; Dreamlusion&#8217;s blog</dc:creator>
		<pubDate>Sun, 06 Jul 2008 13:32:15 +0000</pubDate>
		<guid isPermaLink="false">http://rwandering.net/2006/05/02/vs2005-powershell-prompt/#comment-168835</guid>
		<description>[...] You may need a Visual Studio PowerShell Prompt to do [...]</description>
		<content:encoded><![CDATA[<p>[...] You may need a Visual Studio PowerShell Prompt to do [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert W. Anderson</title>
		<link>http://rwandering.net/2006/05/02/vs2005-powershell-prompt/comment-page-1/#comment-27676</link>
		<dc:creator>Robert W. Anderson</dc:creator>
		<pubDate>Sat, 13 May 2006 15:43:58 +0000</pubDate>
		<guid isPermaLink="false">http://rwandering.net/2006/05/02/vs2005-powershell-prompt/#comment-27676</guid>
		<description>Lee -- thanks for the comment -- I&#039;ve been reading your blog for some time, but I missed that detail.  I suspect this works for the VS variables, but I&#039;ll update the post soon.

Thanks, again.</description>
		<content:encoded><![CDATA[<p>Lee &#8212; thanks for the comment &#8212; I&#8217;ve been reading your blog for some time, but I missed that detail.  I suspect this works for the VS variables, but I&#8217;ll update the post soon.</p>
<p>Thanks, again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://rwandering.net/2006/05/02/vs2005-powershell-prompt/comment-page-1/#comment-27675</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Sat, 13 May 2006 06:23:17 +0000</pubDate>
		<guid isPermaLink="false">http://rwandering.net/2006/05/02/vs2005-powershell-prompt/#comment-27675</guid>
		<description>Hi Robert;

That script has a slight bug in that any environment variables with &#039;=&#039; in them will not be set correctly.  Here&#039;s another option, at the bottom of http://www.leeholmes.com/blog/NothingSolvesEverythingPowerShellAndOtherTechnologies.aspx

Lee</description>
		<content:encoded><![CDATA[<p>Hi Robert;</p>
<p>That script has a slight bug in that any environment variables with &#8216;=&#8217; in them will not be set correctly.  Here&#8217;s another option, at the bottom of <a href="http://www.leeholmes.com/blog/NothingSolvesEverythingPowerShellAndOtherTechnologies.aspx" rel="nofollow">http://www.leeholmes.com/blog/NothingSolvesEverythingPowerShellAndOtherTechnologies.aspx</a></p>
<p>Lee</p>
]]></content:encoded>
	</item>
</channel>
</rss>

