Tuesday, June 8, 2010

SharePoint Conference 2011

The SharePoint Conference for 2011 has been announced.

It will be held October 3-6, 2011 in Anaheim, CA....

For more details check out the Conference site.

Wednesday, August 12, 2009

SharePoint 2010 Technical Preview

If you want to get a jump start on what's ahead in SharePoint 2010, check out the SharePoint Team blog announcement.

Also download the...
SharePoint Products and Technologies: 2010 (Technical Preview) Developer Documentation

Friday, July 10, 2009

Cleaning up Visual Studio TestResults with PowerShell

If you write your unit tests using Visual Studio, then you know how quickly those pesky "TestResults" folders can eat up precious disk space over time. Here is a simple, yet effective PowerShell script to seek and destroy them!

Assuming all of your code is collocated in the same parent directory, replace "C:\Projects" with your parent directory.

(get-childitem C:\Projects\* -recurse) | where{$_.name -eq "TestResults"} |% {remove-item $_.fullname -recurse}