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

How to Setup a Single Server RDS Deployment Using Server 2016

crtechtipsJan 23, 20194 min read

Welcome to my guide on how to configure a single server Remote Desktop Services (RDS) deployment using server 2016. First install Server 2016 with GUI and get all the updates installed. Add the server to the domain as a member…

VMWare VM Server OS & NIC Tuning Optimizations

crtechtipsJan 16, 20193 min read

VMWare VM Server Tuning – Windows OS & VMXNet3 Network Card Optimizations   In Windows, Open a command prompt window with elevated permissions and execute the following commands displayed in RED.   [Display the TCP stack settings] C:> netsh int tcp show global   [Disable…

Disable the Clutter feature in O365 mailboxes

crtechtipsJan 16, 20191 min read

To disabled the clutter feature in a user’s O365 mailbox run the following command:   Turn off Clutter for single user Get-Mailbox –identity someone@somewhere.com | Set-Clutter -enable $false    OR   Single mailbox: Set-Clutter -Identity <user name> -Enable $false      If…

Delete all Calendar events from a mailbox

crtechtipsJan 16, 20191 min read

Connect to O365 using powershell first   Open PowerShell or EMS If this is an O365 mailbox, you will need to connect to the O365 environment Connect to Exchange On-line From the PowerShell console on an Exchange 2010 server: $Cred = Get-Credential …

How to copy old user’s mailbox to another user’s mailbox on Office 365 and Exchange Server using PowerShell

crtechtipsJan 16, 20191 min read

You will come across the issue with leavers mailboxes needing to be transferred to another users mailbox. If you are looking after on-site exchange, then the process is slightly shorter as you don’t need to connect to the remote Powershell.   To…