Gmail adds ability to find and merge duplicate contacts

If you’re anything like me, it can sometimes be difficult to keep a large address book of usually automatically created contacts in order. It’s easy to find contacts in my list that have three or four different entries — one with just an email address, one with a home...

Additional resources to learn about powershell

– NEW: script repository http://www.myitforum.com/myITWiki/Default.aspx?Page=WPScripts&AspxAutoDetectCookieSupport=1 – NEW: community on spiceworks (requires registration) http://community.spiceworks.com/group/show/340-powershell – What’s...

Sample powershell scripts and commands

SAMPLE COMMANDS/SCRIPTS – run command to see which folder is the biggest http://searchwindowsserver.techtarget.com/tip/0,289483,sid68_gci1366742_mem1,00.html dir C:specifyfolder -Recurse | where {$_.psiscontainer} | select name, fullname...

General powershell tips and warnings

GENERAL TIPS – test everything locally in an isolated folder using -whatif at the end of a command.  this way, you can see what the results would be if it were run for real.  when confident, remove -whatif. – be careful of -recursive because this does a...