Stop and/or disable all Exchange services

There have been various occasions where I've needed to stop and/or disable all services relating to Microsoft Exchange This can be achieved by running PowerShell as an Administrator and executing one of the following commands Stopping all Microsoft Exchange Services get-service | ?{$_.Name -ilike "MSexch*"} | stop-service You may find that some services fail to … Continue reading Stop and/or disable all Exchange services

Upgrade Windows Server 2019 Evaluation to Full Version

Microsoft calls this license conversion. In some releases of Windows Server, you can also freely convert among OEM, volume-licensed, and retail versions with the same command and the appropriate key. First, check the currently installed version with this command: DISM /online /Get-CurrentEdition You'll see the details about the edition that you currently have. Now we can … Continue reading Upgrade Windows Server 2019 Evaluation to Full Version

Connect to Exchange Online Using Remote PowerShell

Exchange Online PowerShell allows you to manage your Exchange Online settings from the command line. You use Windows PowerShell on your local computer to create a remote PowerShell session to Exchange Online. It's a simple three-step process where you enter your Office 365 credentials, provide the required connection settings, and then import the Exchange Online … Continue reading Connect to Exchange Online Using Remote PowerShell