Enterprise Operating Systems

Troubleshooting and Guides for: Microsoft Server, Linux, and VMware

Read More

Dell Hardware/Software Guides

Dell Servers – PowerEdge, Blades, and Cloud
integrated Dell Remote Access Controller (iDrac)
OpenMange Server Administrator (OMSA)

Read More

Scripting Guides

PowerShell, Bash, JSON, and Python Scripting Guides

Read More

Restore de-provisioned O365 mailbox

crtechtipsApr 15, 20171 min read

Run this from EMS on Exchange 2010 on-prem server: Enable-RemoteMailbox -Identity “pamela cornell” -RemoteRoutingAddress pcornell@lifetouch.mail.onmicrosoft.com   Example:

Converting User mailbox to Shared or Room mailbox

crtechtipsApr 15, 20171 min read

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

crtechtipsApr 15, 20171 min read

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” …

Migrate Exchange on-prem user to O365

crtechtipsApr 15, 20171 min read

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 …

PowerShell – Get a list of my domain Organizational Units

crtechtipsApr 14, 20177 min read

PowerShell – Get a list of my domain Organizational Units Quick post, last week my coworker Andrey needed to list all the Organization Units in the domain by Canonical Name. …