Enterprise Operating Systems
Troubleshooting and Guides for: Microsoft Server, Linux, and VMware
Dell Hardware/Software Guides
Dell Servers – PowerEdge, Blades, and Cloud
integrated Dell Remote Access Controller (iDrac)
OpenMange Server Administrator (OMSA)
Windows Client – Fully Automated Deployments
Let’s face it, guys. There are times that you JUST don’t have access to SCCM, MDT or Kace, and need to deploy a completely automated and silent Windows install without …
Check user acct O365 migration status via PowerShell
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
Unable to Migrate User to O365 – “Target user already has a primary mailbox”
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 …
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 …
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 …