Monthly Archives: January 2006

If “Scheme is Love” and “Lisp is Sin”, then PowerShell is “CLI Heaven”

I found Sriram Krishnan’s blog entry titled "Lisp is sin" an interesting read.  It got me thinking about how the Microsoft Command Shell (renamed to Windows PowerShell) fits into the dynamic scripting language world.  Now the PowerShell designers would probably tell you that it is first and foremost an … Continue reading

Posted in PowerShell | 4 Comments

MSH Beta 3 is Available

Grab the bits here:   x86: http://www.microsoft.com/downloads/details.aspx?FamilyID=e8e5203a-574c-4105-af6b-b2fef39adf55&displaylang=enx64: http://www.microsoft.com/downloads/details.aspx?FamilyID=9fe1977d-3de2-47c2-b0ba-62339bcd505a&displaylang=endocs: http://www.microsoft.com/downloads/details.aspx?FamilyID=6387c46b-4753-4eaf-8d8b-368074f39ccc&displaylang=en Besides bug fixes there is a new snapin model for adding in your own custom cmdlets without have to create a separate shell.  More later as I get a chance to … Continue reading

Posted in PowerShell | Leave a comment

Curious About Which Versions of the MS CRT Are In Use?

Try this PowerShell command:   PS:1 # gps | select processname -expand Modules -ea SilentlyContinue | >>     where {$_.ModuleName -like "msvc*.dll"} | >>     group {$_.ModuleName} | format-list     Name   : MSVCP71.dllCount  : 12Group  : {CCAPP, CCEVTMGR, CCSETMGR, EDICT, iexplore, msimn, msn, NAVAPSVC,          NPFMNTOR, … Continue reading

Posted in PowerShell | 2 Comments

Calculating File Size Stats Using Measure-Object

Measure-Object is a very useful function that provides basic aggregate functions similar to the ones found in SQL.  For instance, I wanted to know some basic stats on my music files.  Perfect job for PowerShell and Measure-Object.  Here’s what I executed:   … Continue reading

Posted in PowerShell | Leave a comment

How Many Blog Posts for 2005

I was curious as to how many blog posts I’ve made on my external blog.  The perfect job for PowerShell.  Here’s a quick interactive console session that tells me I posted 21 entries (I had 182 on my company internal … Continue reading

Posted in PowerShell | Leave a comment