Archive for the ‘Exchange 2007’ Category
PoshBoard – Powershell and Silverlight Web Portal
I have started to look at performance and charge back visualization options for my environment. The final result would be a web portal/dashboard providing visual data for my peers and management. I have been following a project on “CodePlex” called “PoshBoard” by Antoine Habert.
The author Antoine Habert describes it as a,
“PowerShell Dashboard is a modular IT web portal based onPowerShell and Silverlight controls”
I will be starting to look at “PoshBoard” and will be posting my progress, I am really impressed with this project.
Links:
Site: http://www.poshboard.com/
Author “Antoine Habert” Blog: http://www.devinfra.blogspot.com/
Hope this helps.
All information is provided on an AS-IS basis, with no warranties and confers no rights.
Exchange 2007 Mailbox Access Times
Here is a quick one liner to gain the “Logon” and “LogOff” times for all mailboxes hosted on a Exchange 2007 mailbox server. All mailboxes and their access times will be exported into a .csv file for reference.
Note: Replace %ServerName% with a valid Exchange 2007 Mailbox Server in your Org.
Get-Mailbox | Where{$_.ServerName -eq '%ServerName%'} | Get-MailboxStatistics | Select-Object ServerName,StorageGroupName,DatabaseName,DisplayName,LastLogonTime,LastLogOffTime,LastLoggedOnUserAccount | Export-CSV "C:\MailboxAccessTimes.csv" -NoTypeInformation
Hope this helps.
All information is provided on an AS-IS basis, with no warranties and confers no rights.
