Exchange 2010: Determine Active Sync devices and write to CSV file
The following script can be used to determine all users with Active Sync devices. The data is then written to a CSV file. #Ppath to the CSV file for the export $exportfile = "c:\export.csv" #Name of a mailbox database or "all" to capture all mailbox databases $database = "all" #--------------------- "User;Type;Serial number;Status" | set-content "$exportfile" if ($database -eq "all") ... Read more