Browse by Tags
All Tags »
PowerShell (RSS)
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...
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...
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...
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...
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...