Monthly Archives: May 2010

Windows Netbooks: The Path to Low Cost Computing

  Author: James Floyd Kelly Publisher: Apress ISBN: 978-1-4302-2399-3 My usual three criteria for judging a book are: Is it technically accurate? Does deliver the material it claims to deliver? Is worth the cost of purchase and the time I … Continue reading

Posted in General | Leave a comment

PowerShell in Practice ebook deal

I know there isn’t much of today left but if you are quick its possible to get an ebook version of PowerShell in Practice for $15.  See the deal of the day at http://www.manning.com/

Posted in PowerShell V2 | Leave a comment

Query me no more

One of the things I noticed in the recent Scripting Games was that a lot of the scripts would do things like this $query = "Select MaxClockSpeed from Win32_Processor"$proc = Get-WmiObject -Query $queryWrite-Host "Speed: " $proc.MaxClockSpeed Create a query to … Continue reading

Posted in PowerShell and WMI | Leave a comment

Quick ping

If you’ve used ping before you’ll know that it normally returns four replies from the target.  In PowerShell we have Test-Connection which does the same job. It also normally returns four replies. When I’m working with remote machines I often … Continue reading

Posted in PowerShell and WMI | Leave a comment

UG May 2010 Recording, Slides and demo

Thank you to everyone who joined the Live Meeting this evening. Hope you enjoyed the session on PowerShell events. The slides and demo files are available from http://cid-43cfa46a74cf3e96.skydrive.live.com/browse.aspx/PowerShell%20User%20Group/May%202010   The recording can be viewed on line View RecordingRecording Details    Subject: … Continue reading

Posted in PowerShell User Group | Leave a comment

PowerShell UG reminder

  Next Live Meeting is Tuesday 18 May at 7.30pm BST Subject is PowerShell Jobs and Events Details of the Live Meeting from: http://msmvps.com/blogs/richardsiddaway/archive/2010/05/03/powershell-ug-may-2010.aspx

Posted in PowerShell User Group | Leave a comment

hey ho hey ho its off to print we go

PowerShell in Practice will be going to the printers next week. Between now and 21 May 2010 you can get 40% off of PowerShell in Practice (and other Manning books that are in the final stages of production) Use promotional … Continue reading

Posted in PowerShell V2 | Leave a comment

PSCX 2.0 install

I mentioned last time that PSCX 2.0 was available. There is a very wide range of functionality available in the form of functions and cmdlets: Cmdlets Add-PathVariable                        Clear-MSMQueue                          ConvertFrom-Base64ConvertTo-Base64                        ConvertTo-MacOs9LineEnding              ConvertTo-MetricConvertTo-UnixLineEnding                ConvertTo-WindowsLineEnding             Convert-XmlDisconnect-TerminalSession              Expand-Archive                          Export-BitmapFormat-Byte                             Format-Hex                              Format-XmlGet-ADObject                            Get-AdoConnection                       Get-AdoDataProviderGet-AlternateDataStream                 Get-Clipboard                           … Continue reading

Posted in PowerShell V2 | Leave a comment

PowerShell Community Extensions 2.0

I’ve mentioned the Community Extensions many times in these posts. Version 2.0 is now available http://www.codeplex.com/wikipage?ProjectName=Pscx. It installs as a PowerShell module – much easier and neater. I’ve blogged about the beta a few times – if you didn’t try … Continue reading

Posted in PowerShell V2 | Leave a comment

Hex Subtraction

Again this takes the pattern from the binary function and adapts it to work with hex 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 ## this will always subtract value2 from value1 … Continue reading

Posted in PowerShell V2 | Leave a comment