<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>SAPIEN Technologies</title>
	
	<link>http://blog.sapien.com</link>
	<description>Tools for IT Success</description>
	<lastBuildDate>Wed, 28 Jul 2010 20:03:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SapienBlog" /><feedburner:info uri="sapienblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>SapienBlog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Moving to 64 bit: Running VBScript files in 64 bit mode from PrimalScript 2009</title>
		<link>http://feedproxy.google.com/~r/SapienBlog/~3/c1-tRX1Ncf4/</link>
		<comments>http://blog.sapien.com/index.php/2010/07/28/moving-to-64-bit-running-vbscript-files-in-64-bit-mode-from-primalscript-2009/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 20:03:22 +0000</pubDate>
		<dc:creator>Alex Riedel</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[PrimalScript]]></category>
		<category><![CDATA[Software News]]></category>
		<category><![CDATA[VBScript]]></category>
		<category><![CDATA[Windows PowerShell]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[JScript]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Sysnative]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://blog.sapien.com/index.php/2010/07/28/moving-to-64-bit-running-vbscript-files-in-64-bit-mode-from-primalscript-2009/</guid>
		<description><![CDATA[PrimalScript 2009 usually uses CScript.exe to run VBScript files and captures its output and directs it to the IDE&#8217;s output windows.
Since PrimalScript 2009 is a 32 bit application the host used is also of the 32 bit variety, residing in the System32 folder of your Windows directory.
If you are working on a 64 bit operating [...]]]></description>
			<content:encoded><![CDATA[<p>PrimalScript 2009 usually uses CScript.exe to run VBScript files and captures its output and directs it to the IDE&#8217;s output windows.</p>
<p>Since PrimalScript 2009 is a 32 bit application the host used is also of the 32 bit variety, residing in the System32 folder of your Windows directory.</p>
<p>If you are working on a 64 bit operating system and you have to use 64 bit COM objects you need to be able to run your scripts in 64 bit mode.</p>
<p>In order to do that you can simply change what specific version of CScript.exe is used by specifying the full path:</p>
<p><a href="http://blog.sapien.com/wp-content/uploads/2010/07/VBScript64-1.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="484" alt="VBScript64-1" src="http://blog.sapien.com/wp-content/uploads/2010/07/VBScript64-1_thumb.png" width="615" border="0"></a> </p>
<p>Go to Tools &#8211; Options &#8211; Environment &#8211; Languages and select VBScript. The default entry for the script engine just states &#8220;CScript.exe&#8221;. If you change that to C:\Windows\Sysnative\cscript.exe you get PrimalScipt to execute the 64 bit version. The &#8220;sysnative&#8221; substitute for system32 works on Vista, Windows 7 and Server 2008 operating system flavors.</p>
<p>If you don&#8217;t want to change the default behavior and just occasionally execute scripts in 64 bit mode, you can just leave the above mentioned setting alone and add the 64 bit engine to your Tools browser:</p>
<p><a href="http://blog.sapien.com/wp-content/uploads/2010/07/VBScript64-2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="243" alt="VBScript64-2" src="http://blog.sapien.com/wp-content/uploads/2010/07/VBScript64-2_thumb.png" width="644" border="0"></a> </p>
<p>Right click anywhere in the tools browser and select &#8220;Customize&#8230;&#8221; and add a new tool in a group of your choice and add the settings as shown above. In order to run the current script in 64 bit mode you only have to click on the icon.</p>
<p>All these things work just as well for JScript if that is your language of choice, but don&#8217;t try this for PowerShell. PowerShell does not like to get its input and output streams redirected and will just hang if you try to do that. We will talk about 64 bit PowerShell in the next installment.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fmoving-to-64-bit-running-vbscript-files-in-64-bit-mode-from-primalscript-2009%2F&amp;title=Moving+to+64+bit%3A+Running+VBScript+files+in+64+bit+mode+from+PrimalScript+2009" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fmoving-to-64-bit-running-vbscript-files-in-64-bit-mode-from-primalscript-2009%2F&amp;title=Moving+to+64+bit%3A+Running+VBScript+files+in+64+bit+mode+from+PrimalScript+2009" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fmoving-to-64-bit-running-vbscript-files-in-64-bit-mode-from-primalscript-2009%2F&amp;title=Moving+to+64+bit%3A+Running+VBScript+files+in+64+bit+mode+from+PrimalScript+2009" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fmoving-to-64-bit-running-vbscript-files-in-64-bit-mode-from-primalscript-2009%2F&amp;title=Moving+to+64+bit%3A+Running+VBScript+files+in+64+bit+mode+from+PrimalScript+2009" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fmoving-to-64-bit-running-vbscript-files-in-64-bit-mode-from-primalscript-2009%2F&amp;title=Moving+to+64+bit%3A+Running+VBScript+files+in+64+bit+mode+from+PrimalScript+2009', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fmoving-to-64-bit-running-vbscript-files-in-64-bit-mode-from-primalscript-2009%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fmoving-to-64-bit-running-vbscript-files-in-64-bit-mode-from-primalscript-2009%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fmoving-to-64-bit-running-vbscript-files-in-64-bit-mode-from-primalscript-2009%2F&amp;title=Moving+to+64+bit%3A+Running+VBScript+files+in+64+bit+mode+from+PrimalScript+2009" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fmoving-to-64-bit-running-vbscript-files-in-64-bit-mode-from-primalscript-2009%2F&amp;title=Moving+to+64+bit%3A+Running+VBScript+files+in+64+bit+mode+from+PrimalScript+2009" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>
<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/64bit' rel='tag' target='_self'>64bit</a>, <a class='technorati-link' href='http://technorati.com/tag/JScript' rel='tag' target='_self'>JScript</a>, <a class='technorati-link' href='http://technorati.com/tag/powershell' rel='tag' target='_self'>powershell</a>, <a class='technorati-link' href='http://technorati.com/tag/PrimalScript' rel='tag' target='_self'>PrimalScript</a>, <a class='technorati-link' href='http://technorati.com/tag/Server+2008' rel='tag' target='_self'>Server 2008</a>, <a class='technorati-link' href='http://technorati.com/tag/Sysnative' rel='tag' target='_self'>Sysnative</a>, <a class='technorati-link' href='http://technorati.com/tag/VBScript' rel='tag' target='_self'>VBScript</a>, <a class='technorati-link' href='http://technorati.com/tag/Vista' rel='tag' target='_self'>Vista</a>, <a class='technorati-link' href='http://technorati.com/tag/windows+7' rel='tag' target='_self'>windows 7</a></p>

<!-- end wp-tags-to-technorati -->
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SapienBlog?a=c1-tRX1Ncf4:uDN75Vz8Igc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=c1-tRX1Ncf4:uDN75Vz8Igc:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=c1-tRX1Ncf4:uDN75Vz8Igc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=c1-tRX1Ncf4:uDN75Vz8Igc:nQ_hWtDbxek"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=nQ_hWtDbxek" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SapienBlog/~4/c1-tRX1Ncf4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sapien.com/index.php/2010/07/28/moving-to-64-bit-running-vbscript-files-in-64-bit-mode-from-primalscript-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.sapien.com/index.php/2010/07/28/moving-to-64-bit-running-vbscript-files-in-64-bit-mode-from-primalscript-2009/</feedburner:origLink></item>
		<item>
		<title>Back From TechEd: Why should I use PowerShell to create Windows Forms Applications?</title>
		<link>http://feedproxy.google.com/~r/SapienBlog/~3/ATaojy8qAL8/</link>
		<comments>http://blog.sapien.com/index.php/2010/07/28/back-from-teched-why-should-i-use-powershell-to-create-windows-forms-applications/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 11:00:46 +0000</pubDate>
		<dc:creator>David Corrales</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[PrimalForms]]></category>
		<category><![CDATA[Windows PowerShell]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[PrimalScript]]></category>
		<category><![CDATA[TechEd]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Winforms]]></category>

		<guid isPermaLink="false">http://blog.sapien.com/?p=2250</guid>
		<description><![CDATA[There was a lot of interest about PrimalForms during this year’s TechEd. Rumor has it the Microsoft PowerShell Team even demonstrated PrimalForms in one of their presentations.
We were very happy to talk to with our users during the show. One of the questions we were asked was:
Why should I use PowerShell to create Windows Forms [...]]]></description>
			<content:encoded><![CDATA[<p>There was a lot of interest about PrimalForms during this year’s TechEd. Rumor has it the Microsoft PowerShell Team even demonstrated PrimalForms in one of their presentations.</p>
<p>We were very happy to talk to with our users during the show. One of the questions we were asked was:</p>
<p><strong>Why should I use PowerShell to create Windows Forms Applications?</strong></p>
<p>There are a few reasons you might want to use PowerShell to create Windows Forms Applications:</p>
<p style="padding-left: 30px;">1. Levy the power of PowerShell with the ease of a GUI interface.</p>
<p style="padding-left: 30px;">2. It doesn’t require a developer to create a cool customized GUI application.</p>
<p style="padding-left: 30px;">3. Limit the access of your users by providing predefined functionality. For example, you can create an application that only allows your user read access to a list of products in a Database, thus preventing the user from accidently “altering” any data. What you provide is what they have access to.</p>
<p style="padding-left: 30px;">4. End users need not learn PowerShell nor will they be forced to use an intimidating command prompt.</p>
<p style="padding-left: 30px;">5. There are no extra dependencies other then what is required to your run existing PowerShell scripts. You can create complete GUIs using nothing but PowerShell.</p>
<p style="padding-left: 30px;">6. *Packaged Windows Form Applications support elevation and alternate credentials. Lets face it, you don’t want to give all your users administrative rights.</p>
<p style="padding-left: 30px;">7. *Packaging your scripts will protect it by preventing access to the source code (script).</p>
<p>* Requires PrimalForms 2009 or PrimalScript 2009 to package scripts.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fback-from-teched-why-should-i-use-powershell-to-create-windows-forms-applications%2F&amp;title=Back+From+TechEd%3A+Why+should+I+use+PowerShell+to+create+Windows+Forms+Applications%3F" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fback-from-teched-why-should-i-use-powershell-to-create-windows-forms-applications%2F&amp;title=Back+From+TechEd%3A+Why+should+I+use+PowerShell+to+create+Windows+Forms+Applications%3F" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fback-from-teched-why-should-i-use-powershell-to-create-windows-forms-applications%2F&amp;title=Back+From+TechEd%3A+Why+should+I+use+PowerShell+to+create+Windows+Forms+Applications%3F" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fback-from-teched-why-should-i-use-powershell-to-create-windows-forms-applications%2F&amp;title=Back+From+TechEd%3A+Why+should+I+use+PowerShell+to+create+Windows+Forms+Applications%3F" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fback-from-teched-why-should-i-use-powershell-to-create-windows-forms-applications%2F&amp;title=Back+From+TechEd%3A+Why+should+I+use+PowerShell+to+create+Windows+Forms+Applications%3F', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fback-from-teched-why-should-i-use-powershell-to-create-windows-forms-applications%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fback-from-teched-why-should-i-use-powershell-to-create-windows-forms-applications%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fback-from-teched-why-should-i-use-powershell-to-create-windows-forms-applications%2F&amp;title=Back+From+TechEd%3A+Why+should+I+use+PowerShell+to+create+Windows+Forms+Applications%3F" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F28%2Fback-from-teched-why-should-i-use-powershell-to-create-windows-forms-applications%2F&amp;title=Back+From+TechEd%3A+Why+should+I+use+PowerShell+to+create+Windows+Forms+Applications%3F" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>
<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/applications' rel='tag' target='_self'>applications</a>, <a class='technorati-link' href='http://technorati.com/tag/gui' rel='tag' target='_self'>gui</a>, <a class='technorati-link' href='http://technorati.com/tag/powershell' rel='tag' target='_self'>powershell</a>, <a class='technorati-link' href='http://technorati.com/tag/PrimalForms' rel='tag' target='_self'>PrimalForms</a>, <a class='technorati-link' href='http://technorati.com/tag/PrimalScript' rel='tag' target='_self'>PrimalScript</a>, <a class='technorati-link' href='http://technorati.com/tag/TechEd' rel='tag' target='_self'>TechEd</a>, <a class='technorati-link' href='http://technorati.com/tag/Windows' rel='tag' target='_self'>Windows</a>, <a class='technorati-link' href='http://technorati.com/tag/Winforms' rel='tag' target='_self'>Winforms</a></p>

<!-- end wp-tags-to-technorati -->
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SapienBlog?a=ATaojy8qAL8:g6gFtudOiPw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=ATaojy8qAL8:g6gFtudOiPw:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=ATaojy8qAL8:g6gFtudOiPw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=ATaojy8qAL8:g6gFtudOiPw:nQ_hWtDbxek"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=nQ_hWtDbxek" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SapienBlog/~4/ATaojy8qAL8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sapien.com/index.php/2010/07/28/back-from-teched-why-should-i-use-powershell-to-create-windows-forms-applications/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.sapien.com/index.php/2010/07/28/back-from-teched-why-should-i-use-powershell-to-create-windows-forms-applications/</feedburner:origLink></item>
		<item>
		<title>Reminder: Backup survey</title>
		<link>http://feedproxy.google.com/~r/SapienBlog/~3/4KdqjlXYYUg/</link>
		<comments>http://blog.sapien.com/index.php/2010/07/27/reminder-backup-survey/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 21:29:52 +0000</pubDate>
		<dc:creator>Alex Riedel</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[PrimalScript]]></category>
		<category><![CDATA[Software News]]></category>
		<category><![CDATA[Visual PowerShell]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Survey]]></category>
		<category><![CDATA[Version Control]]></category>

		<guid isPermaLink="false">http://blog.sapien.com/index.php/2010/07/27/reminder-backup-survey/</guid>
		<description><![CDATA[This is a reminder for our current survey about Backup and Version Control.
Please click here to participate: 2010 Backup Survey
Enter your email in the survey to win cool prizes.
Your responses will help determine what features get added and what gets cut from PrimalScript 2011 and Visual PowerShell 2011, so don&#8217;t hesitate.













Technorati Tags: Backup, PrimalScript, Survey, [...]]]></description>
			<content:encoded><![CDATA[<p>This is a reminder for our current survey about Backup and Version Control.</p>
<p>Please click here to participate: <a href="http://surveys.sapien.com/poll.asp?z=1" target="_blank">2010 Backup Survey</a></p>
<p>Enter your email in the survey to win cool prizes.</p>
<p>Your responses will help determine what features get added and what gets cut from PrimalScript 2011 and Visual PowerShell 2011, so don&#8217;t hesitate.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Freminder-backup-survey%2F&amp;title=Reminder%3A+Backup+survey" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Freminder-backup-survey%2F&amp;title=Reminder%3A+Backup+survey" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Freminder-backup-survey%2F&amp;title=Reminder%3A+Backup+survey" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Freminder-backup-survey%2F&amp;title=Reminder%3A+Backup+survey" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Freminder-backup-survey%2F&amp;title=Reminder%3A+Backup+survey', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Freminder-backup-survey%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Freminder-backup-survey%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Freminder-backup-survey%2F&amp;title=Reminder%3A+Backup+survey" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Freminder-backup-survey%2F&amp;title=Reminder%3A+Backup+survey" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>
<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Backup' rel='tag' target='_self'>Backup</a>, <a class='technorati-link' href='http://technorati.com/tag/PrimalScript' rel='tag' target='_self'>PrimalScript</a>, <a class='technorati-link' href='http://technorati.com/tag/Survey' rel='tag' target='_self'>Survey</a>, <a class='technorati-link' href='http://technorati.com/tag/Version+Control' rel='tag' target='_self'>Version Control</a>, <a class='technorati-link' href='http://technorati.com/tag/Visual+PowerShell' rel='tag' target='_self'>Visual PowerShell</a></p>

<!-- end wp-tags-to-technorati -->
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SapienBlog?a=4KdqjlXYYUg:ASLFUi1D_58:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=4KdqjlXYYUg:ASLFUi1D_58:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=4KdqjlXYYUg:ASLFUi1D_58:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=4KdqjlXYYUg:ASLFUi1D_58:nQ_hWtDbxek"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=nQ_hWtDbxek" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SapienBlog/~4/4KdqjlXYYUg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sapien.com/index.php/2010/07/27/reminder-backup-survey/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.sapien.com/index.php/2010/07/27/reminder-backup-survey/</feedburner:origLink></item>
		<item>
		<title>Back from Tech-Ed: How do your eBooks work?</title>
		<link>http://feedproxy.google.com/~r/SapienBlog/~3/WqMyaGYnHsE/</link>
		<comments>http://blog.sapien.com/index.php/2010/07/27/back-from-tech-ed-how-do-your-ebooks-work/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 11:00:40 +0000</pubDate>
		<dc:creator>Ferdinand Rios</dc:creator>
				<category><![CDATA[Books and Training]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[SAPIEN Press]]></category>
		<category><![CDATA[SAPIENPress]]></category>

		<guid isPermaLink="false">http://blog.sapien.com/?p=2222</guid>
		<description><![CDATA[SAPIEN Press offers a variety of technical books in both print and eBook formats. These eBooks can be purchased on www.ScriptingOutpost.com.
Our eBooks are currently distributed in a protected pdf format. What this means is that the eBook is imprinted with your email address at the bottom of each page when you download it. Here is [...]]]></description>
			<content:encoded><![CDATA[<p>SAPIEN Press offers a variety of technical books in both print and eBook formats. These eBooks can be purchased on <a href="http://www.scriptingoutpost.com/c-6-ebooks.aspx">www.ScriptingOutpost.com</a>.</p>
<p>Our eBooks are currently distributed in a protected pdf format. What this means is that the eBook is imprinted with your email address at the bottom of each page when you download it. Here is a simple description of the process.</p>
<ol>
<li>Purchase the eBook on <a href="http://www.scriptingoutpost.com/c-6-ebooks.aspx">www.ScriptingOutpost.com</a></li>
<li>You will receive a license key for the eBook</li>
<li>Register that license key at <a href="http://my.sapien.com">my.sapien.com</a></li>
<li>As soon as you register the eBook, a listing for that eBook will appear on the registration page. Below that listing is a link to download the eBook. Click on that link and the eBook will be imprinted and begin downloading to your computer.</li>
</ol>
<p>It&#8217;s that simple!</p>
<p>We hope to start offering our eBooks in ePub format so that you can enjoy our books on devices like the Nook, Sony Reader and iPad. Those versions of the eBooks would be available on the specific device&#8217;s store.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Fback-from-tech-ed-how-do-your-ebooks-work%2F&amp;title=Back+from+Tech-Ed%3A+How+do+your+eBooks+work%3F" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Fback-from-tech-ed-how-do-your-ebooks-work%2F&amp;title=Back+from+Tech-Ed%3A+How+do+your+eBooks+work%3F" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Fback-from-tech-ed-how-do-your-ebooks-work%2F&amp;title=Back+from+Tech-Ed%3A+How+do+your+eBooks+work%3F" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Fback-from-tech-ed-how-do-your-ebooks-work%2F&amp;title=Back+from+Tech-Ed%3A+How+do+your+eBooks+work%3F" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Fback-from-tech-ed-how-do-your-ebooks-work%2F&amp;title=Back+from+Tech-Ed%3A+How+do+your+eBooks+work%3F', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Fback-from-tech-ed-how-do-your-ebooks-work%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Fback-from-tech-ed-how-do-your-ebooks-work%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Fback-from-tech-ed-how-do-your-ebooks-work%2F&amp;title=Back+from+Tech-Ed%3A+How+do+your+eBooks+work%3F" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F27%2Fback-from-tech-ed-how-do-your-ebooks-work%2F&amp;title=Back+from+Tech-Ed%3A+How+do+your+eBooks+work%3F" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>
<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Books' rel='tag' target='_self'>Books</a>, <a class='technorati-link' href='http://technorati.com/tag/SAPIEN+Press' rel='tag' target='_self'>SAPIEN Press</a>, <a class='technorati-link' href='http://technorati.com/tag/SAPIENPress' rel='tag' target='_self'>SAPIENPress</a></p>

<!-- end wp-tags-to-technorati -->
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SapienBlog?a=WqMyaGYnHsE:ao00MTj4f4s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=WqMyaGYnHsE:ao00MTj4f4s:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=WqMyaGYnHsE:ao00MTj4f4s:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=WqMyaGYnHsE:ao00MTj4f4s:nQ_hWtDbxek"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=nQ_hWtDbxek" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SapienBlog/~4/WqMyaGYnHsE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sapien.com/index.php/2010/07/27/back-from-tech-ed-how-do-your-ebooks-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.sapien.com/index.php/2010/07/27/back-from-tech-ed-how-do-your-ebooks-work/</feedburner:origLink></item>
		<item>
		<title>Back from Tech-Ed: What is in the Scripting Toolkit?</title>
		<link>http://feedproxy.google.com/~r/SapienBlog/~3/CAitgDooFlY/</link>
		<comments>http://blog.sapien.com/index.php/2010/07/26/back-from-tech-ed-what-is-in-the-scripting-toolkit/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 11:00:05 +0000</pubDate>
		<dc:creator>Ferdinand Rios</dc:creator>
				<category><![CDATA[Community Tools]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Software News]]></category>
		<category><![CDATA[SAPIEN]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://blog.sapien.com/?p=2226</guid>
		<description><![CDATA[The SAPIEN Scripting Toolkit is a CD filled with all sorts of tools and information that is useful for anyone who is working with scripting languages. Let&#8217;s break down the contents for you&#8230;

Free tools &#8211; A copy of all of our free scripting tools (except for iPowerShell) is on the CD. A link to iPowerShell [...]]]></description>
			<content:encoded><![CDATA[<p>The SAPIEN Scripting Toolkit is a CD filled with all sorts of tools and information that is useful for anyone who is working with scripting languages. Let&#8217;s break down the contents for you&#8230;</p>
<ol>
<li>Free tools &#8211; A copy of all of our free scripting tools (except for iPowerShell) is on the CD. A link to iPowerShell on the iTunes store is also included. A list of all of those free tools can be found <a href="http://www.primaltools.com/downloads/communitytools/">here</a>. You can also download the Scripting Toolkit ISO file at that link.</li>
<li>45 day trial versions of all of our paid software. Besides PrimalScript, SAPIEN produces PrimalForms, PrimalXML, PrimalSQL, ChangeVue, PrimalMerge and PrimalScope. Check out the details <a href="http://www.primaltools.com">here</a>.</li>
<li>Sample chapters from all of our eBooks. SAPIEN Press publishes several fantastic technical books in our TFM series. Check out our titles <a href="http://www.sapienpress.com/All_Books.asp">here</a>.</li>
<li>Free eBooks &#8211; Three complete free eBooks (Introduction to PowerShell, The Administrator Shortcut Guide to VBScripting for Windows, and PowerShell 1.0: TFM) all written by scripting guru Don Jones.</li>
<li>Dozens of useful scripts for your administrative tasks</li>
<li>Sample chapters from our VBScript and PowerShell training videos. Details of these videos can be found <a href="http://www.scriptinganswers.com/training/selfpaced/classondisc.asp">here</a>.</li>
<li>Useful links to SAPIEN resources</li>
</ol>
<p>If you did not receive your free Scripting Toolkit at Tech-Ed, download it <a href="http://www.primaltools.com/downloads/communitytools/">here</a>!</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F26%2Fback-from-tech-ed-what-is-in-the-scripting-toolkit%2F&amp;title=Back+from+Tech-Ed%3A+What+is+in+the+Scripting+Toolkit%3F" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F26%2Fback-from-tech-ed-what-is-in-the-scripting-toolkit%2F&amp;title=Back+from+Tech-Ed%3A+What+is+in+the+Scripting+Toolkit%3F" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F26%2Fback-from-tech-ed-what-is-in-the-scripting-toolkit%2F&amp;title=Back+from+Tech-Ed%3A+What+is+in+the+Scripting+Toolkit%3F" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F26%2Fback-from-tech-ed-what-is-in-the-scripting-toolkit%2F&amp;title=Back+from+Tech-Ed%3A+What+is+in+the+Scripting+Toolkit%3F" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F26%2Fback-from-tech-ed-what-is-in-the-scripting-toolkit%2F&amp;title=Back+from+Tech-Ed%3A+What+is+in+the+Scripting+Toolkit%3F', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F26%2Fback-from-tech-ed-what-is-in-the-scripting-toolkit%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F26%2Fback-from-tech-ed-what-is-in-the-scripting-toolkit%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F26%2Fback-from-tech-ed-what-is-in-the-scripting-toolkit%2F&amp;title=Back+from+Tech-Ed%3A+What+is+in+the+Scripting+Toolkit%3F" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F26%2Fback-from-tech-ed-what-is-in-the-scripting-toolkit%2F&amp;title=Back+from+Tech-Ed%3A+What+is+in+the+Scripting+Toolkit%3F" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>
<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/SAPIEN' rel='tag' target='_self'>SAPIEN</a>, <a class='technorati-link' href='http://technorati.com/tag/scripting' rel='tag' target='_self'>scripting</a></p>

<!-- end wp-tags-to-technorati -->
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SapienBlog?a=CAitgDooFlY:s5MbaygiJE0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=CAitgDooFlY:s5MbaygiJE0:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=CAitgDooFlY:s5MbaygiJE0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=CAitgDooFlY:s5MbaygiJE0:nQ_hWtDbxek"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=nQ_hWtDbxek" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SapienBlog/~4/CAitgDooFlY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sapien.com/index.php/2010/07/26/back-from-tech-ed-what-is-in-the-scripting-toolkit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.sapien.com/index.php/2010/07/26/back-from-tech-ed-what-is-in-the-scripting-toolkit/</feedburner:origLink></item>
		<item>
		<title>Back from Tech-Ed: Is your Training for PowerShell V2?</title>
		<link>http://feedproxy.google.com/~r/SapienBlog/~3/17NFaFLg9d8/</link>
		<comments>http://blog.sapien.com/index.php/2010/07/23/back-from-tech-ed-is-your-training-for-powershell-v2/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 11:00:56 +0000</pubDate>
		<dc:creator>Ferdinand Rios</dc:creator>
				<category><![CDATA[Books and Training]]></category>
		<category><![CDATA[VBScript]]></category>
		<category><![CDATA[Windows PowerShell]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[SAPIEN]]></category>
		<category><![CDATA[training]]></category>

		<guid isPermaLink="false">http://blog.sapien.com/?p=2232</guid>
		<description><![CDATA[SAPIEN&#8217;s PowerShell training does indeed cover PowerShell V2. We offer PowerShell V2 training in the following forms:

Self Paced Training &#8211; Our PowerShell Class-on-Disk series was developed by Don Jones and is a four DVD set consisting of Fundamentals, Intermediate and Advanced topics as well as a What&#8217;s New in PowerShell V2 DVD. The Fundamentals disk [...]]]></description>
			<content:encoded><![CDATA[<p>SAPIEN&#8217;s PowerShell training does indeed cover PowerShell V2. We offer PowerShell V2 training in the following forms:</p>
<ol>
<li>Self Paced Training &#8211; Our PowerShell Class-on-Disk series was developed by Don Jones and is a four DVD set consisting of Fundamentals, Intermediate and Advanced topics as well as a What&#8217;s New in PowerShell V2 DVD. The Fundamentals disk has a three hour runtime, while the Intermediate, advanced and What&#8217;s New disks run about 1.5 hours each. These can be purchased at <a href="http://www.scriptingoutpost.com/c-14-windows-powershell-class-on-disc.aspx">www.scriptingoutpost.com</a>.</li>
<li>Classroom Training &#8211; An incredibly intense technology training course with an emphasis on small class size, extremely personal attention, and amazingly real-world experiences designed to make you a better, faster, and more valuable Windows administrator in just five information-packed days, led by Don Jones. Current available courses can be found <a href="http://www.scriptinganswers.com/training/ilt/">here</a>.</li>
<li>Private on-site training &#8211; Similar to our Classroom Training above, this class is conducted in the comfort of your own facility. Eliminate travel expenses for your team and bring SAPIEN&#8217;s trainer&#8217;s to your site. You supply the classroom space and computers, and we will supply the trainer. Choose from 2, 3, or 5 day PowerShell V2 classes. Contact <a href="mailto://sales@sapien.com">sales@sapien.com</a> to arrange private training.</li>
</ol>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fback-from-tech-ed-is-your-training-for-powershell-v2%2F&amp;title=Back+from+Tech-Ed%3A+Is+your+Training+for+PowerShell+V2%3F" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fback-from-tech-ed-is-your-training-for-powershell-v2%2F&amp;title=Back+from+Tech-Ed%3A+Is+your+Training+for+PowerShell+V2%3F" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fback-from-tech-ed-is-your-training-for-powershell-v2%2F&amp;title=Back+from+Tech-Ed%3A+Is+your+Training+for+PowerShell+V2%3F" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fback-from-tech-ed-is-your-training-for-powershell-v2%2F&amp;title=Back+from+Tech-Ed%3A+Is+your+Training+for+PowerShell+V2%3F" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fback-from-tech-ed-is-your-training-for-powershell-v2%2F&amp;title=Back+from+Tech-Ed%3A+Is+your+Training+for+PowerShell+V2%3F', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fback-from-tech-ed-is-your-training-for-powershell-v2%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fback-from-tech-ed-is-your-training-for-powershell-v2%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fback-from-tech-ed-is-your-training-for-powershell-v2%2F&amp;title=Back+from+Tech-Ed%3A+Is+your+Training+for+PowerShell+V2%3F" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fback-from-tech-ed-is-your-training-for-powershell-v2%2F&amp;title=Back+from+Tech-Ed%3A+Is+your+Training+for+PowerShell+V2%3F" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>
<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/powershell' rel='tag' target='_self'>powershell</a>, <a class='technorati-link' href='http://technorati.com/tag/SAPIEN' rel='tag' target='_self'>SAPIEN</a>, <a class='technorati-link' href='http://technorati.com/tag/training' rel='tag' target='_self'>training</a>, <a class='technorati-link' href='http://technorati.com/tag/VBScript' rel='tag' target='_self'>VBScript</a>, <a class='technorati-link' href='http://technorati.com/tag/Windows+PowerShell' rel='tag' target='_self'>Windows PowerShell</a></p>

<!-- end wp-tags-to-technorati -->
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SapienBlog?a=17NFaFLg9d8:nYvFt25uRY0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=17NFaFLg9d8:nYvFt25uRY0:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=17NFaFLg9d8:nYvFt25uRY0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=17NFaFLg9d8:nYvFt25uRY0:nQ_hWtDbxek"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=nQ_hWtDbxek" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SapienBlog/~4/17NFaFLg9d8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sapien.com/index.php/2010/07/23/back-from-tech-ed-is-your-training-for-powershell-v2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.sapien.com/index.php/2010/07/23/back-from-tech-ed-is-your-training-for-powershell-v2/</feedburner:origLink></item>
		<item>
		<title>Backup Survey</title>
		<link>http://feedproxy.google.com/~r/SapienBlog/~3/UwlFJhjPgFs/</link>
		<comments>http://blog.sapien.com/index.php/2010/07/23/backup-survey/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 11:00:33 +0000</pubDate>
		<dc:creator>Alex Riedel</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Software News]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[ChangeVue]]></category>
		<category><![CDATA[PrimalScript]]></category>
		<category><![CDATA[Survey]]></category>
		<category><![CDATA[Version]]></category>
		<category><![CDATA[Visual PowerShell]]></category>

		<guid isPermaLink="false">http://blog.sapien.com/index.php/2010/07/23/backup-survey/</guid>
		<description><![CDATA[In order to improve our products, we like to ask you from time to time how you use certain features, if you do at all.
This month our survey focuses on backup and version control. Your answers will decide what features will be removed, kept or re-developed or even re-architected in the 2011 versions of our [...]]]></description>
			<content:encoded><![CDATA[<p>In order to improve our products, we like to ask you from time to time how you use certain features, if you do at all.</p>
<p>This month our survey focuses on backup and version control. Your answers will decide what features will be removed, kept or re-developed or even re-architected in the 2011 versions of our software products. So please click on the link below and take our </p>
<p align="center"><a href="http://surveys.sapien.com/poll.asp?z=1" target="_blank">2010 Backup Survey</a></p>
<p>As usual with our surveys, if you provide an email address you will be entered into the drawing for various prizes. Winners will be notified and published here on the blog (if we get your permission)</p>
<p>Winners are randomly drawn from submitted emails, void where prohibited, must be 18 or older and a legal resident of the U.S. No cash equivalent prizes will be provided in lieu of designated prizes. Any and all taxes and similar fees are the responsibility of the winner.
<p>(Everyone outside of the U.S. please understand that we very much care about your opinion. It’s just that the legal rules about raffles and lotteries and their tax implications vary from country to country. So my apologies to you that you can’t win, but we still really like to hear your opinion.) </p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fbackup-survey%2F&amp;title=Backup+Survey" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fbackup-survey%2F&amp;title=Backup+Survey" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fbackup-survey%2F&amp;title=Backup+Survey" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fbackup-survey%2F&amp;title=Backup+Survey" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fbackup-survey%2F&amp;title=Backup+Survey', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fbackup-survey%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fbackup-survey%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fbackup-survey%2F&amp;title=Backup+Survey" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F23%2Fbackup-survey%2F&amp;title=Backup+Survey" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>
<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Backup' rel='tag' target='_self'>Backup</a>, <a class='technorati-link' href='http://technorati.com/tag/ChangeVue' rel='tag' target='_self'>ChangeVue</a>, <a class='technorati-link' href='http://technorati.com/tag/PrimalScript' rel='tag' target='_self'>PrimalScript</a>, <a class='technorati-link' href='http://technorati.com/tag/Survey' rel='tag' target='_self'>Survey</a>, <a class='technorati-link' href='http://technorati.com/tag/Version' rel='tag' target='_self'>Version</a>, <a class='technorati-link' href='http://technorati.com/tag/Visual+PowerShell' rel='tag' target='_self'>Visual PowerShell</a></p>

<!-- end wp-tags-to-technorati -->
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SapienBlog?a=UwlFJhjPgFs:D315JgqAsxY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=UwlFJhjPgFs:D315JgqAsxY:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=UwlFJhjPgFs:D315JgqAsxY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=UwlFJhjPgFs:D315JgqAsxY:nQ_hWtDbxek"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=nQ_hWtDbxek" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SapienBlog/~4/UwlFJhjPgFs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sapien.com/index.php/2010/07/23/backup-survey/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.sapien.com/index.php/2010/07/23/backup-survey/</feedburner:origLink></item>
		<item>
		<title>Back from Tech-Ed: How can I get iPowerShell?</title>
		<link>http://feedproxy.google.com/~r/SapienBlog/~3/qGZaRfka1-Q/</link>
		<comments>http://blog.sapien.com/index.php/2010/07/22/back-from-tech-ed-how-can-i-get-ipowershell/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 11:00:57 +0000</pubDate>
		<dc:creator>Ferdinand Rios</dc:creator>
				<category><![CDATA[Community Tools]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Windows PowerShell]]></category>
		<category><![CDATA[iPowerShell]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[SAPIEN]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://blog.sapien.com/?p=2234</guid>
		<description><![CDATA[iPowerShell is SAPIEN&#8217;s FREE iPhone/iPad PowerShell reference tool. It is available from the Apple iTunes store. You can easily download the most current version by searching for iPowerShell in your iTunes application or click on this link to connect to the iPowerShell page directly in iTunes.













Technorati Tags: iPowerShell, powershell, SAPIEN, scripting, Windows PowerShell


]]></description>
			<content:encoded><![CDATA[<p>iPowerShell is SAPIEN&#8217;s FREE iPhone/iPad PowerShell reference tool. It is available from the Apple iTunes store. You can easily download the most current version by searching for iPowerShell in your iTunes application or click on <a href="http://itunes.apple.com/us/app/ipowershell/id306602044?mt=8">this link</a> to connect to the iPowerShell page directly in iTunes.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-tech-ed-how-can-i-get-ipowershell%2F&amp;title=Back+from+Tech-Ed%3A+How+can+I+get+iPowerShell%3F" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-tech-ed-how-can-i-get-ipowershell%2F&amp;title=Back+from+Tech-Ed%3A+How+can+I+get+iPowerShell%3F" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-tech-ed-how-can-i-get-ipowershell%2F&amp;title=Back+from+Tech-Ed%3A+How+can+I+get+iPowerShell%3F" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-tech-ed-how-can-i-get-ipowershell%2F&amp;title=Back+from+Tech-Ed%3A+How+can+I+get+iPowerShell%3F" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-tech-ed-how-can-i-get-ipowershell%2F&amp;title=Back+from+Tech-Ed%3A+How+can+I+get+iPowerShell%3F', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-tech-ed-how-can-i-get-ipowershell%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-tech-ed-how-can-i-get-ipowershell%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-tech-ed-how-can-i-get-ipowershell%2F&amp;title=Back+from+Tech-Ed%3A+How+can+I+get+iPowerShell%3F" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-tech-ed-how-can-i-get-ipowershell%2F&amp;title=Back+from+Tech-Ed%3A+How+can+I+get+iPowerShell%3F" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>
<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/iPowerShell' rel='tag' target='_self'>iPowerShell</a>, <a class='technorati-link' href='http://technorati.com/tag/powershell' rel='tag' target='_self'>powershell</a>, <a class='technorati-link' href='http://technorati.com/tag/SAPIEN' rel='tag' target='_self'>SAPIEN</a>, <a class='technorati-link' href='http://technorati.com/tag/scripting' rel='tag' target='_self'>scripting</a>, <a class='technorati-link' href='http://technorati.com/tag/Windows+PowerShell' rel='tag' target='_self'>Windows PowerShell</a></p>

<!-- end wp-tags-to-technorati -->
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SapienBlog?a=qGZaRfka1-Q:uPZt_CBvEX0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=qGZaRfka1-Q:uPZt_CBvEX0:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=qGZaRfka1-Q:uPZt_CBvEX0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=qGZaRfka1-Q:uPZt_CBvEX0:nQ_hWtDbxek"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=nQ_hWtDbxek" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SapienBlog/~4/qGZaRfka1-Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sapien.com/index.php/2010/07/22/back-from-tech-ed-how-can-i-get-ipowershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.sapien.com/index.php/2010/07/22/back-from-tech-ed-how-can-i-get-ipowershell/</feedburner:origLink></item>
		<item>
		<title>Back from TechEd: PowerShell is hard to learn</title>
		<link>http://feedproxy.google.com/~r/SapienBlog/~3/wXcRlvF28fo/</link>
		<comments>http://blog.sapien.com/index.php/2010/07/22/back-from-teched-powershell-is-hard-to-learn/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 10:42:20 +0000</pubDate>
		<dc:creator>Alex Riedel</dc:creator>
				<category><![CDATA[Back from TechEd]]></category>
		<category><![CDATA[Windows PowerShell]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[TechEd]]></category>
		<category><![CDATA[VBScript]]></category>

		<guid isPermaLink="false">http://blog.sapien.com/index.php/2010/07/22/back-from-teched-powershell-is-hard-to-learn/</guid>
		<description><![CDATA[It&#8217;s actually kind of funny. I heard the same thing about VBScript years ago, about C++ a decade earlier, and being aware that I am dating myself here, about C, Pascal, Windows Programming, VI, Emacs, punch cards, VT100 terminals and about rubbing two sticks together to start a fire. 
The point is, everything that is [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s actually kind of funny. I heard the same thing about VBScript years ago, about C++ a decade earlier, and being aware that I am dating myself here, about C, Pascal, Windows Programming, VI, Emacs, punch cards, VT100 terminals and about rubbing two sticks together to start a fire. </p>
<p>The point is, everything that is new, unfamiliar and sufficiently complex requires some effort to learn. PowerShell contains quite some powerful constructs and commands, paired with a style of language that looks alien to the uninitiated. I understand that the sheer amount of $ signs, squiggly braces, underscores and nested parenthesis can make you dizzy at first glance. I felt the same way back when I started writing scripts for BASH on a UNIX machine using VI. It is quite similar actually.</p>
<p>Nonetheless, just dive in and start doing things. However, just like with learning a real life foreign language, don&#8217;t try to translate. Translation forces you to use one language&#8217;s grammar and constructs in a way that they were never intended to be used.<br />So don&#8217;t try to translate your VBScript files one-to-one to PowerShell, you just end up with strange looking VBScript programs.</p>
<p>Learn to THINK in the language you are using, you will find that you learn any language faster and in more detail. Start the same way you learned to write in your native language: Read.<br />There are thousands of sample scripts on the Internet in a huge variation of topics, sizes and detail. Study them. Once you can read the more complex samples you will find yourself eager to use this new language and write some cool scripts.</p>
<p>It&#8217;s not hard, it&#8217;s just new. </p>
<p>P.S. If you want to learn faster, we here at SAPIEN do sell books, videos and training for PowerShell, just thought I mention that too.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-teched-powershell-is-hard-to-learn%2F&amp;title=Back+from+TechEd%3A+PowerShell+is+hard+to+learn" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-teched-powershell-is-hard-to-learn%2F&amp;title=Back+from+TechEd%3A+PowerShell+is+hard+to+learn" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-teched-powershell-is-hard-to-learn%2F&amp;title=Back+from+TechEd%3A+PowerShell+is+hard+to+learn" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-teched-powershell-is-hard-to-learn%2F&amp;title=Back+from+TechEd%3A+PowerShell+is+hard+to+learn" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-teched-powershell-is-hard-to-learn%2F&amp;title=Back+from+TechEd%3A+PowerShell+is+hard+to+learn', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-teched-powershell-is-hard-to-learn%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-teched-powershell-is-hard-to-learn%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-teched-powershell-is-hard-to-learn%2F&amp;title=Back+from+TechEd%3A+PowerShell+is+hard+to+learn" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F22%2Fback-from-teched-powershell-is-hard-to-learn%2F&amp;title=Back+from+TechEd%3A+PowerShell+is+hard+to+learn" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>
<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Learning' rel='tag' target='_self'>Learning</a>, <a class='technorati-link' href='http://technorati.com/tag/powershell' rel='tag' target='_self'>powershell</a>, <a class='technorati-link' href='http://technorati.com/tag/TechEd' rel='tag' target='_self'>TechEd</a>, <a class='technorati-link' href='http://technorati.com/tag/VBScript' rel='tag' target='_self'>VBScript</a></p>

<!-- end wp-tags-to-technorati -->
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SapienBlog?a=wXcRlvF28fo:oVQWdg4yG1o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=wXcRlvF28fo:oVQWdg4yG1o:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=wXcRlvF28fo:oVQWdg4yG1o:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=wXcRlvF28fo:oVQWdg4yG1o:nQ_hWtDbxek"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=nQ_hWtDbxek" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SapienBlog/~4/wXcRlvF28fo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sapien.com/index.php/2010/07/22/back-from-teched-powershell-is-hard-to-learn/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.sapien.com/index.php/2010/07/22/back-from-teched-powershell-is-hard-to-learn/</feedburner:origLink></item>
		<item>
		<title>Moving to 64 bit: Running a 64 bit PowerShell console inside PrimalScript 2009</title>
		<link>http://feedproxy.google.com/~r/SapienBlog/~3/2KZJTq4i3Lw/</link>
		<comments>http://blog.sapien.com/index.php/2010/07/20/moving-to-64-bit-running-a-64-bit-powershell-console-inside-primalscript-2009/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 08:59:51 +0000</pubDate>
		<dc:creator>Alex Riedel</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[PrimalScript]]></category>
		<category><![CDATA[Software News]]></category>
		<category><![CDATA[Windows PowerShell]]></category>
		<category><![CDATA[32 bit]]></category>
		<category><![CDATA[64 bit]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[SAPIEN]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://blog.sapien.com/index.php/2010/07/20/moving-to-64-bit-running-a-64-bit-powershell-console-inside-primalscript-2009/</guid>
		<description><![CDATA[PrimalScript 2009 is a 32 bit application, so by default it uses the 32 bit version of PowerShell even on a 64 bit machine for the embedded console.
If you are dealing with mostly 64 bit server software you may want to make the embedded shell use the 64 bit version of PowerShell. The default installation [...]]]></description>
			<content:encoded><![CDATA[<p>PrimalScript 2009 is a 32 bit application, so by default it uses the 32 bit version of PowerShell even on a 64 bit machine for the embedded console.</p>
<p>If you are dealing with mostly 64 bit server software you may want to make the embedded shell use the 64 bit version of PowerShell. The default installation of PowerShell under Windows 7 is at C:\Windows\System32\WindowsPowerShell\v1.0</p>
<p>And yes, that is still true for PowerShell V2.</p>
<p>The system32 folder is mapped to SysWOW64, which is the actual 32 bit version of the that folder. I know, the numbering scheme is a bit confusing. </p>
<p>Fortunately with Vista 64bit, Server 2008 64 bit and Windows 7 64 bit there is a path specification that explicitly points to the 64 bit folder. </p>
<p>Open PrimalScript 2009 and select Tools &#8211; Options &#8211; Environment &#8211; Command Window.</p>
<p>Select &#8220;Other Process&#8221; and enter the following path:<br />C:\Windows\Sysnative\WindowsPowerShell\v1.0\PowerShell.exe</p>
<p>&nbsp;</p>
<p><a href="http://blog.sapien.com/wp-content/uploads/2010/07/PowerShell64.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="243" alt="PowerShell64" src="http://blog.sapien.com/wp-content/uploads/2010/07/PowerShell64_thumb.png" width="644" border="0"></a> </p>
<p>Press OK and use View &#8211; Other Windows &#8211; Command Window to bring up the embedded shell if you don&#8217;t have it active yet.</p>
<p>You can now actually right click and toggle between the 32 and the 64 bit shell using either &#8220;Windows PowerShell&#8221; or PowerShell.exe</p>
<p>Drag and drop you scripts, partial code or snippets onto the embedded shell to run things.</p>
<p><a href="http://blog.sapien.com/wp-content/uploads/2010/07/64bitShell.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="393" alt="64bitShell" src="http://blog.sapien.com/wp-content/uploads/2010/07/64bitShell_thumb.png" width="644" border="0"></a> </p>
<p>How can you tell the difference? While there is no obvious variable that screams 64 or 32 bit, I found the following a good indicator:</p>
<p>Type ls env:programfiles</p>
<p>If it has a value of &#8220;C:\Program Files&#8221; you are in a 64 bit shell, if it says &#8220;C:\Program Files (x86)&#8221; you have a 32 bit PowerShell instance running.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F20%2Fmoving-to-64-bit-running-a-64-bit-powershell-console-inside-primalscript-2009%2F&amp;title=Moving+to+64+bit%3A+Running+a+64+bit+PowerShell+console+inside+PrimalScript+2009" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F20%2Fmoving-to-64-bit-running-a-64-bit-powershell-console-inside-primalscript-2009%2F&amp;title=Moving+to+64+bit%3A+Running+a+64+bit+PowerShell+console+inside+PrimalScript+2009" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F20%2Fmoving-to-64-bit-running-a-64-bit-powershell-console-inside-primalscript-2009%2F&amp;title=Moving+to+64+bit%3A+Running+a+64+bit+PowerShell+console+inside+PrimalScript+2009" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F20%2Fmoving-to-64-bit-running-a-64-bit-powershell-console-inside-primalscript-2009%2F&amp;title=Moving+to+64+bit%3A+Running+a+64+bit+PowerShell+console+inside+PrimalScript+2009" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F20%2Fmoving-to-64-bit-running-a-64-bit-powershell-console-inside-primalscript-2009%2F&amp;title=Moving+to+64+bit%3A+Running+a+64+bit+PowerShell+console+inside+PrimalScript+2009', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F20%2Fmoving-to-64-bit-running-a-64-bit-powershell-console-inside-primalscript-2009%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F20%2Fmoving-to-64-bit-running-a-64-bit-powershell-console-inside-primalscript-2009%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F20%2Fmoving-to-64-bit-running-a-64-bit-powershell-console-inside-primalscript-2009%2F&amp;title=Moving+to+64+bit%3A+Running+a+64+bit+PowerShell+console+inside+PrimalScript+2009" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.sapien.com%2Findex.php%2F2010%2F07%2F20%2Fmoving-to-64-bit-running-a-64-bit-powershell-console-inside-primalscript-2009%2F&amp;title=Moving+to+64+bit%3A+Running+a+64+bit+PowerShell+console+inside+PrimalScript+2009" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>
<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/32+bit' rel='tag' target='_self'>32 bit</a>, <a class='technorati-link' href='http://technorati.com/tag/64+bit' rel='tag' target='_self'>64 bit</a>, <a class='technorati-link' href='http://technorati.com/tag/console' rel='tag' target='_self'>console</a>, <a class='technorati-link' href='http://technorati.com/tag/powershell' rel='tag' target='_self'>powershell</a>, <a class='technorati-link' href='http://technorati.com/tag/PrimalScript' rel='tag' target='_self'>PrimalScript</a>, <a class='technorati-link' href='http://technorati.com/tag/SAPIEN' rel='tag' target='_self'>SAPIEN</a>, <a class='technorati-link' href='http://technorati.com/tag/Server+2008' rel='tag' target='_self'>Server 2008</a>, <a class='technorati-link' href='http://technorati.com/tag/Vista' rel='tag' target='_self'>Vista</a>, <a class='technorati-link' href='http://technorati.com/tag/windows+7' rel='tag' target='_self'>windows 7</a></p>

<!-- end wp-tags-to-technorati -->
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SapienBlog?a=2KZJTq4i3Lw:QXfZXvzbsf8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=2KZJTq4i3Lw:QXfZXvzbsf8:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=2KZJTq4i3Lw:QXfZXvzbsf8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SapienBlog?a=2KZJTq4i3Lw:QXfZXvzbsf8:nQ_hWtDbxek"><img src="http://feeds.feedburner.com/~ff/SapienBlog?d=nQ_hWtDbxek" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SapienBlog/~4/2KZJTq4i3Lw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sapien.com/index.php/2010/07/20/moving-to-64-bit-running-a-64-bit-powershell-console-inside-primalscript-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.sapien.com/index.php/2010/07/20/moving-to-64-bit-running-a-64-bit-powershell-console-inside-primalscript-2009/</feedburner:origLink></item>
	</channel>
</rss>
