Welcome to Dirteam.com/ActiveDir.org Blogs Sign in | Join | Help

Matt Johnson's Technical Adventures

One server at a time.

Browse by Tags

All Tags » PowerShell   (RSS)
Quest’s AD cmdlets 1.2 are available.
One of the cool cmdlets that was added is Get-QADMemberOf. I am excited to get playing with these. More info can be found on Dmitry’s blog here . You can download them here . Read More...
Log Parser and PowerShell
David Muegge has a great set of blog posts going related to using Log Parser with PowerShell. Check them out with the links below. http://muegge.com/blog/?p=62 (Log Parser and PowerShell – Part I) http://muegge.com/blog/?p=65 (Log Parser and PowerShell Read More...
Get PC Serial Number via PowerShell
This is a pretty cool one liner that is of tremendous help. You can get the serial number of most PCs via PowerShell remotely. This includes Dell service tags. Command: Get-WMIObject -Class "Win32_BIOS" -Computer computername | select SerialNumber Example: Read More...
Getting Mailbox Size for Multiple Users on Exchange 2007
Recently, while doing a migration between Exchange 2007 servers, I needed to find out the size of the mailboxes so I could distribute the transfer load to off hours. PowerShell to the rescue. There is a lot to this one liner, but you can customize it Read More...
Random PowerShell Cmdlet Fun
I wanted to see what additional PowerShell cmdlet’s I had installed on my computer. I found out that get-pssnapin does the job! Just run the following in your PowerShell window: get-pssnapin –registered You should get an out put like this: PS C:\tools> Read More...