Archive for category Powershell

Real World Webcast Series for TFS 2010

I and a few coworkers are running a twice monthly web series starting February 10th.  This series will touch on the opportunities we’ve been involved in to ease real world situations. If you are working with Team Foundation Server 2010 and are interested in making your life a little easier I invite you to come [...]

1 reason to stick with Windows Virtual PC

For those who aren’t aware, Windows 7 (which I absolutely love) has the ability to mount and run native Virtual PC VHD’s.  This is huge, but it isn’t exactly a cake walk.  That is until now!  DevHawk has provided a PowerShell script to make life beautiful.  Never complain about your Virtual machine performance again… get [...]

PowerShell Profile on Roaming Profile

NOTE: Impatience just leads to frustration. When I first starting playing with PowerShell here at the office, I was all excited to start adding little cmdlets to my personal profile and add to my stellar productivity (tongue firmly planted in check).  This would hopefully reduce the net loss incurred by my learning PowerShell in the first place.  So [...]

Signing your Powershell Profile Scripts

Running with Set-ExecutionPolicy as AllSigned or Restricted with a roaming profile?  Here’s a cmdlet pair that will sign all the scripts in your profile directory.  Makes life easier on me as I include a number of scripts into my main profile for readability: function sign-profile(){    dir $Profiledir\*.ps1 | foreach-object { sign-script $_.FullName }} function sign-script( $scriptsource [...]