-
http://smtpport25.wordpress.com/2009/06/03/powershell-to-perform-messaging-tracking-and-export-the-export-the-message-details-into-csv-file/ Powershell to perform Messaging Tracking and Export the export the Message details into CSV file Get-MessageTrackingLog -Sender Krishna.k@domain.com -Start "6...
Posted to
Exchange
(Forum)
by
Krishna
on
06-03-2009
Filed under: PowerShell, CSV file, Result, Message Tracking
-
http://smtpport25.wordpress.com/2009/06/08/powershell-to-create-contacts-in-exchange-2007-from-the-given-csv/ $csv = Import-Csv “C:\Contacts.csv” foreach($line in $csv) { New-MailContact -Name $line.DisplayName -ExternalEmailAddress $line.EmailAddress -OrganizationalUnit “Contacts”...
-
If we need to get the list users who has access to the specific mailbox then below powershell help you the fetch the same. It gets all the details that have mailbox permission to the user krishna.k. It will only get the user accounts which are not inherited to the mailbox. Permission which is given explicitly...