<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.2" -->
<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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>PowerShell Basics</title>
	<link>http://powershell-basics.com</link>
	<description>Unlocking the new Power in the Microsoft Shell</description>
	<pubDate>Wed, 30 Apr 2008 00:58:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
	<language>en</language>
		<!-- podcast_generator="podPress/8.8" -->
		<copyright>&#xA9;Steven Murawski </copyright>
		<managingEditor>steven.murawski@gmail.com (Steven Murawski)</managingEditor>
		<webMaster>steven.murawski@gmail.com(Steven Murawski)</webMaster>
		<category>powershell</category>
		<ttl>1440</ttl>
		<itunes:keywords>powershell, microsoft, scripting, shell, screencast</itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>Unlocking the new Power in the Microsoft Shell</itunes:summary>
		<itunes:author>Steven Murawski</itunes:author>
		<itunes:category text="Technology"/>
		<itunes:owner>
			<itunes:name>Steven Murawski</itunes:name>
			<itunes:email>steven.murawski@gmail.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>clean</itunes:explicit>
		<itunes:image href="http://images.powershell-basics.com/powershell.jpg" />
		<image>
			<url>http://images.powershell-basics.com/powershellsmall.jpg</url>
			<title>PowerShell Basics</title>
			<link>http://powershell-basics.com</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>New-Feature &#8220;PowerShell Quick-Tip&#8221; &#124; Out-RSS</title>
		<link>http://powershell-basics.com/2008/04/29/new-feature-powershell-quick-tip-out-rss/</link>
		<comments>http://powershell-basics.com/2008/04/29/new-feature-powershell-quick-tip-out-rss/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 00:57:14 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Podcast]]></category>

		<category><![CDATA[QuickTip]]></category>

		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://powershell-basics.com/2008/04/29/new-feature-powershell-quick-tip-out-rss/</guid>
		<description><![CDATA[I&#8217;m a bit behind on releasing regular shows, so I&#8217;ve added a short feature, where we can briefly review a cmdlet or particular function of the cmdlet.
 Thanks for staying tuned!
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a bit behind on releasing regular shows, so I&#8217;ve added a short feature, where we can briefly review a cmdlet or particular function of the cmdlet.</p>
<p> Thanks for staying tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://powershell-basics.com/2008/04/29/new-feature-powershell-quick-tip-out-rss/feed/</wfw:commentRss>
			<enclosure url="http://powershell-basics.com/podpress_trac/feed/17/0/PSBQuickTip1-042908.wmv" length="4037598" type="video/wmv"/>
<itunes:duration>3:13</itunes:duration>
		<itunes:subtitle>I'm a bit behind on releasing regular shows, so I've added a short feature, where we can briefly review a cmdlet or particular function of ...</itunes:subtitle>
		<itunes:summary>I'm a bit behind on releasing regular shows, so I've added a short feature, where we can briefly review a cmdlet or particular function of the cmdlet.

nbsp;Thanks for staying tuned!</itunes:summary>
		<itunes:keywords>Podcast,,QuickTip</itunes:keywords>
		<itunes:author>Steven Murawski</itunes:author>
		<itunes:explicit>no</itunes:explicit>
		<itunes:block>No</itunes:block>
	</item>
		<item>
		<title>PowerShell vs. Code Runner .NET</title>
		<link>http://powershell-basics.com/2008/04/15/powershell-vs-code-runner-net/</link>
		<comments>http://powershell-basics.com/2008/04/15/powershell-vs-code-runner-net/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 14:17:46 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://powershell-basics.com/2008/04/15/powershell-vs-code-runner-net/</guid>
		<description><![CDATA[I just came across a blog post on Colin&#8217;s Microsoft Developer Blog called Scripting for C#.&#160; In the post, Colin describes using Code Runner .NET to be able to quickly create a C# application and run it without having to create a new project or solution file or worry about binaries.
&#160;
PowerShell can serve that exact [...]]]></description>
			<content:encoded><![CDATA[<p>I just came across a blog post on <a href="http://blogs.msdn.com/colinth/default.aspx" target="_blank">Colin&#8217;s Microsoft Developer Blog</a> called <a href="http://blogs.msdn.com/colinth/archive/2007/12/31/scripting-for-c.aspx" target="_blank">Scripting for C#</a>.&#160; In the post, Colin describes using Code Runner .NET to be able to quickly create a C# application and run it without having to create a new project or solution file or worry about binaries.</p>
<p>&#160;</p>
<p>PowerShell can serve that exact purpose, without the overhead of launching Visual Studio or needing other tools.&#160; PowerShell can leverage the experience developers have with the .NET Framework, right at the command line.&#160; </p>
<p>&#160;</p>
<p>The Code Runner .NET project includes a <a href="http://www.codeplex.com/CodeRunner/Wiki/View.aspx?title=Getting%20Started&amp;referringTitle=Home" target="_blank">sample program</a> that takes nineteen lines.&#160; Here is the PowerShell equivalent -</p>
<p>Write-Host $MyInvocation.MyCommand</p>
<p>&#160;</p>
<p>Code Runner .NET seems to be a pretty cool project, but PowerShell in the development environment can be a very useful tool.</p>
<p>&#160;</p>
<p>[NOTE:&#160; I&#8217;m a sysadmin, not a developer, so take my comparison with whatever sized grain of salt desired.]&#160; </p>
]]></content:encoded>
			<wfw:commentRss>http://powershell-basics.com/2008/04/15/powershell-vs-code-runner-net/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PoShMon for PolyMon!</title>
		<link>http://powershell-basics.com/2008/04/07/poshmon-for-polymon/</link>
		<comments>http://powershell-basics.com/2008/04/07/poshmon-for-polymon/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 23:11:40 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[PoShMon]]></category>

		<guid isPermaLink="false">http://powershell-basics.com/2008/04/07/poshmon-for-polymon/</guid>
		<description><![CDATA[I&#8217;m happy to announce the release of PoShMon - a PowerShell snap-in for working with PolyMon, an open source system monitoring solution.
&#160;
This is the first release and contains some basic cmdlets for interacting with PolyMon.&#160; Cmdlets included are:

Get-Monitor
Set-Monitor
New-Monitor
Add-Operator
Remove-Monitor

What I am looking to do with PoShMon was create a scriptable interface to create and modify monitor [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m happy to announce the release of PoShMon - a PowerShell snap-in for working with <a href="http://www.codeplex.com/polymon" target="_blank">PolyMon</a>, an open source system monitoring solution.</p>
<p>&#160;</p>
<p>This is the first release and contains some basic cmdlets for interacting with PolyMon.&#160; Cmdlets included are:</p>
<ul>
<li>Get-Monitor</li>
<li>Set-Monitor</li>
<li>New-Monitor</li>
<li>Add-Operator</li>
<li>Remove-Monitor</li>
</ul>
<p>What I am looking to do with PoShMon was create a scriptable interface to create and modify monitor objects.&#160; There is a (limited) help included with this (using the standard PowerShell Get-Help structure).</p>
<p>&#160;</p>
<p>Please provide me with suggestions, feature requests, and other feedback.</p>
<p>&#160;</p>
<p>Installation instructions:</p>
<p>You will need to have the PolyMon Monitor installed.&#160; Running the install script will copy the PoShMon.dll and PoShMon.dll-Help.xml to the PolyMon\PolyMon Monitor directory and install the snap-in.&#160; It will load the snap in for the current PowerShell session.</p>
<p>&#160;</p>
<p>If you would like to make the cmdlets available in other PowerShell sessions, you can use Add-PsSnapin PoShMon during your console session or add it to your profile script.</p>
<p>&#160;</p>
<p>PoShMon can be downloaded <a href="http://download.powershell-basics.com/poshmon.zip" target="_blank">here</a>.</p>
<p>PoShMon&#8217;s source code can be downloaded <a href="http://download.powershell-basics.com/poshmon-Source.dll" target="_blank">here</a>.</p>
<p>More information about PolyMon can be found <a href="http://www.codeplex.com/polymon" target="_blank">here</a></p>
<p>.
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:8cda5c70-524e-4f9e-a9ae-5e1ab7f6af57" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati Tags: <a href="http://technorati.com/tags/powershell" rel="tag">powershell</a>,<a href="http://technorati.com/tags/polymon" rel="tag">polymon</a>,<a href="http://technorati.com/tags/poshmon" rel="tag">poshmon</a>,<a href="http://technorati.com/tags/snapin" rel="tag">snapin</a></div></p>
]]></content:encoded>
			<wfw:commentRss>http://powershell-basics.com/2008/04/07/poshmon-for-polymon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Happy Birthday to A Couple Of Admins/Mind Of Root!</title>
		<link>http://powershell-basics.com/2008/03/19/happy-birthday-to-a-couple-of-adminsmind-of-root/</link>
		<comments>http://powershell-basics.com/2008/03/19/happy-birthday-to-a-couple-of-adminsmind-of-root/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 16:31:42 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://powershell-basics.com/2008/03/19/happy-birthday-to-a-couple-of-adminsmind-of-root/</guid>
		<description><![CDATA[I&#8217;d also like to wish Mind of Root (formerly A Couple of Admins) a happy birthday and I would like to say thank you to Rich and Keith for welcoming me to the podcast (August will be a full year for me.)
&#160;
If you haven&#8217;t had listened to the podcast before, we cover a wide array [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d also like to wish <a href="http://www.mindofroot.com">Mind of Root</a> (formerly A Couple of Admins) a happy birthday and I would like to say <strong>thank you</strong> to Rich and Keith for welcoming me to the podcast (August will be a full year for me.)</p>
<p>&#160;</p>
<p>If you haven&#8217;t had listened to the podcast before, we cover a wide array of sysadmin related topics, tech topics, and news stories in a less than formal structure.&#160; We also have had a number of interesting interviews.</p>
<p>&#160;</p>
<p>Hope to see you there!</p>
]]></content:encoded>
			<wfw:commentRss>http://powershell-basics.com/2008/03/19/happy-birthday-to-a-couple-of-adminsmind-of-root/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Happy Birthday to the PowerScripting Podcast!</title>
		<link>http://powershell-basics.com/2008/03/19/happy-birthday-to-the-powerscripting-podcast/</link>
		<comments>http://powershell-basics.com/2008/03/19/happy-birthday-to-the-powerscripting-podcast/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 16:26:21 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://powershell-basics.com/2008/03/19/happy-birthday-to-the-powerscripting-podcast/</guid>
		<description><![CDATA[Just wanted to wish Hal and Jonathan a Happy Birthday, as the PowerScripting Podcast is now 1 year old!
&#160;
They&#8217;ve also released the first half of an interview with Jeffrey Snover.&#160; Find it HERE.
&#160;
Great work guys!
]]></description>
			<content:encoded><![CDATA[<p>Just wanted to wish Hal and Jonathan a Happy Birthday, as the <a href="http://powerscripting.wordpress.com">PowerScripting Podcast</a> is now 1 year old!</p>
<p>&#160;</p>
<p>They&#8217;ve also released the first half of an interview with Jeffrey Snover.&#160; Find it <a href="http://powerscripting.wordpress.com/2008/03/17/powerscripting-podcast-episode-21-one-half-of-jeffrey-snover/">HERE</a>.</p>
<p>&#160;</p>
<p>Great work guys!</p>
]]></content:encoded>
			<wfw:commentRss>http://powershell-basics.com/2008/03/19/happy-birthday-to-the-powerscripting-podcast/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Show #2 - Discoverability</title>
		<link>http://powershell-basics.com/2008/03/06/show-2-discoverability/</link>
		<comments>http://powershell-basics.com/2008/03/06/show-2-discoverability/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 23:41:51 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Podcast]]></category>

		<category><![CDATA[PowerShell]]></category>

		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://powershell-basics.com/2008/03/06/show-2-discoverability/</guid>
		<description><![CDATA[PowerShell is the most discoverable command line I&#8217;m aware of.  Discoverability in PowerShell means that there is a way to examine the data and methods of objects on the command line.
In this episode, I take a look at Get-Member, which allows you to inspect the properties and methods of the objects that are available from the [...]]]></description>
			<content:encoded><![CDATA[<p>PowerShell is the most discoverable command line I&#8217;m aware of.  Discoverability in PowerShell means that there is a way to examine the data and methods of objects on the command line.</p>
<p>In this episode, I take a look at Get-Member, which allows you to inspect the properties and methods of the objects that are available from the PowerShell commandline.</p>
<p> Feedback is always appreciated, so please post a comment, send me an email, or find me in the PowerShell IRC chatroom (#powershell on irc.freenode.net).</p>
]]></content:encoded>
			<wfw:commentRss>http://powershell-basics.com/2008/03/06/show-2-discoverability/feed/</wfw:commentRss>
			<enclosure url="http://powershell-basics.com/podpress_trac/feed/9/0/PSB2.wmv" length="34199472" type="video/wmv"/>
<itunes:duration>22:10</itunes:duration>
		<itunes:subtitle>PowerShell is the most discoverable command line I'm aware of.nbsp; Discoverability in PowerShell means that there is a way to examine the data and methods ...</itunes:subtitle>
		<itunes:summary>PowerShell is the most discoverable command line I'm aware of.nbsp; Discoverability in PowerShell means that there is a way to examine the data and methods of objectsnbsp;on the command line.

In this episode, I take a look at Get-Member, which allows you to inspect the properties and methods of the objects that are available from the PowerShell commandline.

nbsp;Feedback is always appreciated, so please post a comment, send me an email, or find me in the PowerShell IRC chatroom (#powershell on irc.freenode.net).</itunes:summary>
		<itunes:keywords>Podcast</itunes:keywords>
		<itunes:author>Steven Murawski</itunes:author>
		<itunes:explicit>no</itunes:explicit>
		<itunes:block>No</itunes:block>
	</item>
		<item>
		<title>Now in WMV Format!</title>
		<link>http://powershell-basics.com/2008/02/08/now-in-wmv-format/</link>
		<comments>http://powershell-basics.com/2008/02/08/now-in-wmv-format/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 13:08:39 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Oops!]]></category>

		<category><![CDATA[camtasia]]></category>

		<category><![CDATA[PowerShell]]></category>

		<category><![CDATA[wmv]]></category>

		<guid isPermaLink="false">http://powershell-basics.com/2008/02/08/now-in-wmv-format/</guid>
		<description><![CDATA[I was thinking last night that most people that would be installing PowerShell are probably running a Microsoft OS and should have access to Windows Media Player.. and /\/\o\/\/ (thepowershellguy.com) rightly pointed out that a base install of XP has trouble with the AVI format that Camtasia exports.  I&#8217;ve also found out that the size [...]]]></description>
			<content:encoded><![CDATA[<p>I was thinking last night that most people that would be installing PowerShell are probably running a Microsoft OS and should have access to Windows Media Player.. and /\/\o\/\/ (<a href="http://thepowershellguy.com" target="_blank">thepowershellguy.com)</a> rightly pointed out that a base install of XP has trouble with the AVI format that Camtasia exports.  I&#8217;ve also found out that the size of WMV file is 12% of the size of the AVI.  So I&#8217;m posting a link to the WMV file (below) and I will start posting the WMV file in the feed.  I&#8217;m also looking at the possibility of making this accessible through ITunes.</p>
<p>Download here: <a href="http://media.dotnet-basics.com/psb1.wmv" title="Show #1 (WMV Version)" target="_blank">WMV Version </a></p>
<p>P.S.  I have noticed in the WMV version the sound level is a bit lower.. I&#8217;ll take that into account in the next show.</p>
<p>P.P.S Show #2 should be a lot smoother and contain more information&#8230; I&#8217;ve learned a lot about how I need to produce a show in this format in the past few days.</p>
]]></content:encoded>
			<wfw:commentRss>http://powershell-basics.com/2008/02/08/now-in-wmv-format/feed/</wfw:commentRss>
<enclosure url="http://media.dotnet-basics.com/psb1.wmv" length="19734632" type="video/x-ms-wmv" />
		</item>
		<item>
		<title>Show #1 - Installing PowerShell</title>
		<link>http://powershell-basics.com/2008/02/07/show-1-installing-powershell/</link>
		<comments>http://powershell-basics.com/2008/02/07/show-1-installing-powershell/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 13:29:20 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Podcast]]></category>

		<category><![CDATA[cmdlets]]></category>

		<category><![CDATA[installation]]></category>

		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://powershell-basics.com/2008/02/07/show-1-installing-powershell/</guid>
		<description><![CDATA[Show #1 is now available.
In this show, I cover installing PowerShell (watch the installer work!), and then demonstrate some basic cmdlets for beginning to explore the shell.
Featured cmdlets:

Get-Command
Get-Help
Get-Member
Get-PSDrive

Next show :
For show #2:

I&#8217;ll be installing the PowerShell Community Extensions and /\/\o\/\/&#8217;s PowerTab.
We&#8217;ll work a bit more with Get-Member and introduce Get-ChildItem and Get-ItemProperty.

Disclaimer:
This was my first [...]]]></description>
			<content:encoded><![CDATA[<p>Show #1 is now available.</p>
<p>In this show, I cover installing PowerShell (watch the installer work!), and then demonstrate some basic cmdlets for beginning to explore the shell.</p>
<p>Featured cmdlets:</p>
<ul>
<li>Get-Command</li>
<li>Get-Help</li>
<li>Get-Member</li>
<li>Get-PSDrive</li>
</ul>
<p>Next show :</p>
<p>For show #2:</p>
<ul>
<li>I&#8217;ll be installing the PowerShell Community Extensions and /\/\o\/\/&#8217;s PowerTab.</li>
<li>We&#8217;ll work a bit more with Get-Member and introduce Get-ChildItem and Get-ItemProperty.</li>
</ul>
<p>Disclaimer:</p>
<p>This was my first &#8220;real&#8221; screencast, so bear with me as I make use of some of the production tools I have available. I actually had to re-record the audio, as the record narration feature in Camtasia did not have sufficient quality for release. I&#8217;m shooting for a bi-weekly release, so that I can improve the post production work.</p>
<p>EDIT - I&#8217;ve changed the download to a WMV file.</p>
]]></content:encoded>
			<wfw:commentRss>http://powershell-basics.com/2008/02/07/show-1-installing-powershell/feed/</wfw:commentRss>
			<enclosure url="http://powershell-basics.com/podpress_trac/feed/7/0/PSB1.wmv" length="19734632" type="video/wmv"/>
<itunes:duration>13:19</itunes:duration>
		<itunes:subtitle>Show #1 is now available.

In this show, I cover installing PowerShell (watch the installer work!), and then demonstrate some basic cmdlets for beginning to explore ...</itunes:subtitle>
		<itunes:summary>Show #1 is now available.

In this show, I cover installing PowerShell (watch the installer work!), and then demonstrate some basic cmdlets for beginning to explore the shell.

Featured cmdlets:

	Get-Command
	Get-Help
	Get-Member
	Get-PSDrive

Next show :

For show #2:

	I'll be installing the PowerShell Community Extensions and /\/\o\/\/'s PowerTab.
	We'll work a bit more with Get-Member and introduce Get-ChildItem and Get-ItemProperty.

Disclaimer:

This was my first "real" screencast, so bear with me as I make use of some of the production tools I have available. I actually had to re-record the audio, as the record narration feature in Camtasia did not have sufficient quality for release. I'm shooting for a bi-weekly release, so that I can improve the post production work.

EDIT - I've changed the download to a WMV file.</itunes:summary>
		<itunes:keywords>Podcast</itunes:keywords>
		<itunes:author>Steven Murawski</itunes:author>
		<itunes:explicit>no</itunes:explicit>
		<itunes:block>No</itunes:block>
	</item>
		<item>
		<title>Sorry, First Show Delayed</title>
		<link>http://powershell-basics.com/2008/02/04/sorry-first-show-delayed/</link>
		<comments>http://powershell-basics.com/2008/02/04/sorry-first-show-delayed/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 11:40:36 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Introduction]]></category>

		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://powershell-basics.com/2008/02/04/sorry-first-show-delayed/</guid>
		<description><![CDATA[I&#8217;m working on the final editing for the first show.  Unfortunately, the demands of work called me away from the editing table this weekend.  I&#8217;ll try to have the show posted by Wednesday.
The first show covers installing PowerShell and showing some of the discoverability features of PowerShell.
The second show will cover the installation [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on the final editing for the first show.  Unfortunately, the demands of work called me away from the editing table this weekend.  I&#8217;ll try to have the show posted by Wednesday.</p>
<p>The first show covers installing PowerShell and showing some of the discoverability features of PowerShell.</p>
<p>The second show will cover the installation of some helpful additions and a few more cmdlets to further explore the shell environment.</p>
]]></content:encoded>
			<wfw:commentRss>http://powershell-basics.com/2008/02/04/sorry-first-show-delayed/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing PowerShell</title>
		<link>http://powershell-basics.com/2008/01/22/installing-powershell/</link>
		<comments>http://powershell-basics.com/2008/01/22/installing-powershell/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 15:11:29 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Introduction]]></category>

		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://powershell-basics.com/2008/01/22/installing-powershell/</guid>
		<description><![CDATA[Welcome to PowerShell Basics.  In this podcast series we will be exploring Windows PowerShell and learning to wield power from the Microsoft command line.
Required:

.NET Framework 2.0 (for x86 processors)
PowerShell Installer

Nice Additions:

PowerShell Community Extensions (PSCX)
/\/\o\/\/&#8217;s PowerTab
Quest AD Cmdlets
PowerGUI

Free For Non-Commercial Use:

PowerShell Plus
NetCmdlets

DNRTV Screencast on Installing PowerShell and PowerTab

Episode 82 of DotNetRocks TV

Starting next week, we will [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to PowerShell Basics.  In this podcast series we will be exploring Windows PowerShell and learning to wield power from the Microsoft command line.</p>
<p><strong>Required:</strong></p>
<ul>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en">.NET Framework 2.0</a> (for x86 processors)</li>
<li><a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/download.mspx">PowerShell Installer</a></li>
</ul>
<p><strong>Nice Additions:</strong></p>
<ul>
<li><a href="http://www.codeplex.com/PowerShellCX">PowerShell Community Extensions (PSCX)</a></li>
<li><a href="http://thepowershellguy.com/blogs/posh/pages/powertab.aspx">/\/\o\/\/&#8217;s PowerTab</a></li>
<li><a href="http://www.quest.com/activeroles-server/arms.aspx">Quest AD Cmdlets</a></li>
<li><a href="http://www.powergui.org/index.jspa">PowerGUI</a></li>
</ul>
<p><strong>Free For Non-Commercial Use:</strong></p>
<ul>
<li><a href="http://www.powershell.com/plus/">PowerShell Plus</a></li>
<li><a href="http://www.nsoftware.com/powershell/">NetCmdlets</a></li>
</ul>
<p><strong>DNRTV Screencast on Installing PowerShell and PowerTab</strong></p>
<ul>
<li><a href="http://www.hanselman.com/blog/DNRTVScreencastPowershellIsStillShiny.aspx">Episode 82 of DotNetRocks TV</a></li>
</ul>
<p><font color="#333333">Starting next week, we will be walking through in an full install of PowerShell and some of the basic cmdlets for exploring this new shell environment.  Talk to you soon!</font></p>
]]></content:encoded>
			<wfw:commentRss>http://powershell-basics.com/2008/01/22/installing-powershell/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
