How to find your Microsoft Exchange build number
When documenting your environment, it’s important to keep track of the build number of your Exchange server. To get the correct build number installed on your Exchange server, you can check the file version of Exsetup.exe. You can do this by changing your PowerShell directory to the location of this file (likely the bin folder under your Exchange installs) and running the following command:
Get-Command Exsetup.exe | ForEach {$_.FileVersionInfo}
This will give you the correct build number installed on your Exchange server.
If you want to view the CU build number of all Exchange servers in your organization, you can use the following command in the Exchange Management Shell:
Get-ExchangeServer | Format-List Name,Edition,AdminDisplayVersion
For a list of the build numbers use the link below.
Exchange Server build numbers and release dates | Microsoft Learn
More Stories
Windows Deployment with the Next Generation of Windows Autopilot
Microsoft's latest update to Windows Autopilot brings significant enhancements to the deployment process of Windows devices, catering to the needs...
Shrink PowerPoint files
Need to reduce the size of your PowerPoint file that contain a large number of pictures. Give this a try...
Setting the exchange online max send and receive size
Quick post today around setting exchange online max send and receive size. It can be set using the GUI in...
Micrsoft Defender for Endpoints
We use Microsoft Defender for endpoints on our physical workstations. I'm now looking at it for our servers. The servers...
Sync Active directory user data with SharePoint
If you want to sync standard common attributes from active directory to sharepoint. Its easy, AD sync to Azure AD...
Microsoft graph API to access sharepoint
Recently I've had to setup a few different app registration using Azure AD to access sharepoint sites. Once you get...