PowerShell Team

Automating the world one-liner at a time…

PowerShell Cookbook Now Available

Lee Holmes' book "PowerShell CookBook" is now available. If you've been following PowerShell for any time now, I'm sure that you have Lee's Website as a favorite just as I do. Lee has a wonderful way to explain things and provide exactly the example you need to solve the problem you have at hand. Now imagine that 584 pages of that good ...

WINRM

WINRM is the CLI interface to our WS-MGMT protocol. The neat thing about this is that you can call it from PowerShell to manage remote systems that don't have PowerShell installed on them (including Server Core systems and Raw hardware). I was trying some things out and encountered the following error: PS> winrmC:\Windows\System32\winrm....

Dynamic Casting

We've seen a couple requests for this on our internal mailing lists so I thought other people would be interested. There are times when you want to do something like: $d = [DateTime][$d]"12/25/2007" Or (using a STRING instead of a TYPE): $d = Read-Host –Prompt "TYPE:"[$d]"12/25/2007" Of course if either of these worked – I wouldn't be ...

Cool Stuff Coming!

Apologizes for going "radio-silent" on the blog here. We have all been very busy getting some very exciting things ready. I'm going to leave out the details until next week but clever people will notice that we are coming up on our 1 year anniversary and remember we really like TechEd and IT Forum (both of which are in Nov). This year is ...

“Notepad for PowerShell” – PowerGUI 1.0.11 is out

Dmitry announced on his blog that PowerGUI 1.0.11 is available today with a standalone PowerShell editor. It's pretty cool! Check it out over at:  http://dmitrysotnikov.wordpress.com/2007/10/08/notepad-for-powershell-powergui-1011-is-out/ -bruce   ========================================================= Bruce Payette Principal ...