Shelby115
Shelby115

Reputation: 2867

Difference between AzureAD and AzureADPreview PowerShell Modules?

What is the difference between these two modules?

They'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

Answers (1)

juunas
juunas

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

Related Questions