Reputation: 2867
What is the difference between these two modules?
AzureAD
- https://learn.microsoft.com/en-us/powershell/module/azuread/?view=azureadps-2.0AzureADPreview
- https://learn.microsoft.com/en-us/powershell/module/azuread/?view=azureadps-2.0-previewThey're not compatible and their descriptions on MSDN are nearly identical.
I would assume that AzureAD
replaces AzureADPreview
, but then what would be the equivalent of the Get-AzureADPolicy
and Get-AzureADPolicyAppliedObject
commands from the AzureADPreview
module?
Upvotes: 1
Views: 4043
Reputation: 58773
AzureADPreview is where new updates are shipped first. AzureAD module gets updated later.
You can see the version numbers in PowerShell Gallery: https://www.powershellgallery.com/packages/AzureAD/2.0.2.118 and https://www.powershellgallery.com/packages/AzureADPreview/2.0.2.119 are newest at time of writing. (2.0.2.118 for AzureAD and 2.0.2.119 for AzureADPreview)
Upvotes: 1