PowerShell: Get Last Logon For All Users Across All Domain Controllers
Here is a quick PowerShell script to help you query the last logon time for all of your users across all of your domain controllers. It will also save the …
Here is a quick PowerShell script to help you query the last logon time for all of your users across all of your domain controllers. It will also save the …
I recently ran into a problem where some user’s were beginning to receive email messages from Exchange, informing them that their Meeting Request’s were being forwarded to additional recipients. See …
I threw a quick PowerShell function together that would allow me to restart one service on 1 or more servers in one command. I hadn’t found an easy way to …
You can use EMC for this or use powershell to view the status of a user acct’s O365 migration progress get-user -identity username | get-moverequeststatistics
If you run into an issue where a user has both a mailbox in Exchange on-premise and O365, and you cannot migrate the account to O365. Error: “Target user already …
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 …
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 …
Run this from EMS on Exchange 2010 on-prem server: Enable-RemoteMailbox -Identity “pamela cornell” -RemoteRoutingAddress pcornell@lifetouch.mail.onmicrosoft.com Example:
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. …
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” …