March 2008
S M T W T F S
« Feb   Apr »
 1
2345678
9101112131415
16171819202122
23242526272829
3031  

Thomas' Photography

French QuarterMardi GrasSpain - BarcelonaTurkey - IstanbulOrlandoKidsAquariumFamily - Mi FamiliaSpain - GranadaFeatured PhotographyStephen at ZooJamiePatel ChristeningSpainCemeteries

PowerShell – Find users with no managers

This is one of those “Clean up AD” projects. We needed to find all the user accounts that don’t have managers assigned to them along with other contact information. It’s not hard but I like to have it available to see whenever I need it…

get-qaduser -ObjectAttribute @{manager=””} -sizelimit 0 | sort| ft name,phone,email

Slow Terminal Sessions with Vista and Windows 2003

Every time I reload or get a new laptop I run into this problem and need to search for the answer.

When I terminal into a Windows 2003 server from Vista the session is really slow on all the mouse clicks, however keyboard input is normal.

The fix is to enter this at the command prompt and [...]