Delete emails from specific sender in one users mailbox

1.  Connect to Exchange On-line From the PowerShell console on an Exchange 2010 server: $Cred = Get-Credential  $s = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $cred -Authentication Basic –AllowRedirection  Import-PSSession $s    Run this command in Powershell   Search-Mailbox -identity “User Mailbox” -SearchQuery “From:user@domain.com” -deletecontent 

Read more

Delete specific email from O365 mailboxes

1.  Connect to Exchange On-line From the PowerShell console on an Exchange 2010 server: $Cred = Get-Credential  $s = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $cred -Authentication Basic –AllowRedirection  Import-PSSession $s  Type in your ada credentials with username of <username>@domain.com Type in your ada credentials with username of domain\<username>   Run this command: you will need the distribution group name […]

Read more

Converting User mailbox to Shared or Room mailbox

Open Exchange Management Shell   Enter the following command: get-mailbox -identity <username or display name> | set-mailbox -type shared  Afer the process completes, the mailbox will show as a share box.   ***To convert shared to a user mailbox enter the following command: Enter the following command: get-mailbox -identity <username or display name> | set-mailbox -type regular    Convert mailbox […]

Read more

Migrate user mailbox from O365 back to Exchange 2010 on-premise

Migrate user mailbox from O365 back to Exchange 2010 on-premise:   Open Windows PowerShell in administrator mode and run:   New-MoveRequest -Identity “Matt Heitman” -Outbound -RemoteTargetDatabase “MBX01-DB3 – High Limits” -RemoteHostName autodiscover.companydomain.com -TargetDeliveryDomain companydomain.com -RemoteCredential (Get-Credential) -BadItemLimit 10   you can add the parameter below if you want to suspend the migration before it is ready to be completed. –SuspendWhenReadyToComplete  […]

Read more

Migrate Exchange on-prem user to O365

Migrate users a. Connect to Exchange On-line From the PowerShell console on an Exchange 2010 server: $Cred = Get-Credential $s = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $cred -Authentication Basic –AllowRedirection Import-PSSession $s Type in your ada credentials with username of <username>@domain.com Type in your ada credentials with username of domain\<username> b. Run command to migrate user New-MoveRequest –Identity <username […]

Read more

Remote Wipe Phones Connected to Exchange Online

This can be used by both the administrator and the user of the device. By the user: Login to OWA (http://www.outlook.com/domainname.com) Click Options (top right) Click See all options… Click Phone (Left hand side) Select your Device Click Wipe Device At this point you will get a few more prompts making sure that you want to wipe the device. By the Administrator: Login to the MOP (http://portal.microsoftonline.com) Open the ECP (Exchange […]

Read more
1 2 3