top of page

Entra: Retrieve Entra Connect Version Information

  • Writer: Will Francillette
    Will Francillette
  • Sep 5
  • 1 min read
Entra Retrieve Entra Connect version info

Just a quick one—I put together a PowerShell script to fetch the latest Microsoft Entra Connect version information straight from the official documentation. Rather than manually checking the docs every time, this script pulls down the version history, including release and retirement dates, and formats it neatly in a table. Super handy if you want to integrate it in your scripts, stay on top of updates or check support timelines without digging through web pages.



To retrieve the latest version:

Get-EntraConnectVersionInfo -Latest
get latest version

To retrieve a specific version information:

Get-EntraConnectVersionInfo -EntraConnectVersion "2.4.131.0"
get specific version

or to retrieve all the versions from the doc:

Get-EntraConnectVersionInfo 
get all versions

You can also change the Date Format using the DateFormat parameter:

Get-EntraConnectVersionInfo -DateFormat "MMMM, dd, yyyy"
change date format

Feel free to use it, tweak it, or add it to your toolbox!


Happy coding!



Will Francillette

I am DevSecOps Lead and Solution Architect at Threatscape specialised in M365 and Azure security offering.

I love learning, blogging and coding. My interests are very diverse and span across architecture, security, cloud engineering, automation, DevOps and PowerShell.

I own as of today 17x (and counting) Microsoft certifications and have worked in IT across multiple and diverse industries for over 15 years.

 
 
 

Comments


French 365 Connection

  • alt.text.label.LinkedIn
  • alt.text.label.Twitter
  • alt.text.link.github

©2022 by French365Connection.

bottom of page