Microsoft.Entra interoperability/conflict with Microsoft.Graph #1417
hmhackmaster
started this conversation in
General
Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Before I go down the line of creating a bug for this, I figured I would start a discussion to help sanity-check what I am (repeatedly) experiencing.
Microsoft.Entra (version 1.0.4; released 2025-03-14) attempts to install the following modules
Install-Module -Name Microsoft.Entra -WhatIf
Microsoft.Graph (version 2.26.1; released 2025-02-25) attempts to install the following modules:
Install-Module -Name Microsoft.Graph -WhatIf
Since
Microsoft.Entra
installs the older version of the variousMicrosoft.Graph
modules (2.25.0; released 2024-11-21), this causes a direct conflict between the two different module packages.Now I would typically end it there, facing the unfortunate situation that the two modules cannot exist on the same machine at the same time (something I see as not-uncommon situation since
Microsoft.Entra
extends the Graph modules and use them both as I do fun things with the Graph while also developing scripts for my service desk and other groups who greatly benefit from "scenario-optimized Microsoft Entra resource management" modules).Except, this incompatibility seems to be contrary to the documentation:
What is the difference between Microsoft Graph PowerShell SDK and Microsoft Entra PowerShell modules?
Is the Microsoft Entra PowerShell module compatible with Microsoft Graph PowerShell?
I can certainly think of several ways to mitigate/resolve these issues, but before I go down that road I wanted to see if I am simply doing something wrong or expecting something that's outside the scope of what is supported.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions