Archive for the ‘Powershell’ Category

How many mobile users do I have?

Below is a script that will run and get a report of how many user have used active sync to connec to thier mailbox.

Please check against the screen shost as characters get lost in the post

#Mobile Report#This script will get the number of user that have used mobile devices to

#sync. There could be more [...]

Leave a Comment

How many users per mailbox database

This script prints out each database and gives a count of how many users on each database###clear-hostwrite-host -fore yellow “This script will get each mailboxdatabase and the current user count “foreach($name in get-mailboxdatabase){write-output “$name”$count=(get-mailbox -database $name).countif($count -eq $null){ write-host -fore red “Empty Database, no users”}else{ write-output $count }}write-host -fore yellow “The system has a total [...]

Comments (17)

Exchange Management Shell (EMS)

Exchange 2007 has intrdouced a new scripting technology utizling powershell. Exchange management shell or EMS provides Exchange Admins the ability to perform any Exchange task from a command line.
When I first starting working with EMS in early beta I faught it until I realized how easy it can be to perform tasks.
Since I have been [...]

Leave a Comment