Skip to content

Commit

Permalink
Merge pull request #37 from swissbuechi/fix-m365-group-creation-allowed
Browse files Browse the repository at this point in the history
Added required `groups` module
  • Loading branch information
swissbuechi authored Nov 18, 2023
2 parents 01d10aa + cfe4514 commit 5445147
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
3 changes: 2 additions & 1 deletion AzureAdDeployer.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
RootModule = 'AzureAdDeployer.psm1'

# Version number of this module.
ModuleVersion = '2.16.7'
ModuleVersion = '2.16.8'

# Supported PSEditions
CompatiblePSEditions = @("Core")
Expand Down Expand Up @@ -120,6 +120,7 @@
"DnsClient-PS",
"Microsoft.Graph.Authentication",
"Microsoft.Graph.Users",
"Microsoft.Graph.Groups",
"Microsoft.Graph.Identity.DirectoryManagement",
"Microsoft.Graph.DeviceManagement.Enrolment",
"Microsoft.Graph.Identity.SignIns",
Expand Down
12 changes: 3 additions & 9 deletions public/Helper/Invoke-DependencyCheck.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,39 +7,33 @@ Function Get-AllModulesInstalled {
@{
ModuleName = "PnP.PowerShell";
ModuleVersion = "2.2.0";
Guid = "0b0430ce-d799-4f3b-a565-f0dca1f31e17"
}, @{
ModuleName = "ExchangeOnlineManagement";
ModuleVersion = "3.2.0";
Guid = "b5eced50-afa4-455b-847a-d8fb64140a22"
}, @{
ModuleName = "DnsClient-PS";
ModuleVersion = "1.1.1";
Guid = "698438cc-f80d-4b88-aa04-16e302c1f326"
}, @{
ModuleName = "Microsoft.Graph.Authentication";
ModuleVersion = "1.28.0";
Guid = "883916f2-9184-46ee-b1f8-b6a2fb784cee"
}, @{
ModuleName = "Microsoft.Graph.Users";
ModuleVersion = "1.28.0";
Guid = "71150504-37a3-48c6-82c7-7a00a12168db"
}, @{
ModuleName = "Microsoft.Graph.Groups";
ModuleVersion = "1.28.0";
}, @{
ModuleName = "Microsoft.Graph.Identity.DirectoryManagement";
ModuleVersion = "1.28.0";
Guid = "c767240d-585c-42cb-bb2f-6e76e6d639d4"
}, @{
ModuleName = "Microsoft.Graph.DeviceManagement.Enrolment";
ModuleVersion = "1.28.0";
Guid = "447dd5b5-a01b-45bb-a55c-c9ecce3e820f"
}, @{
ModuleName = "Microsoft.Graph.Identity.SignIns";
ModuleVersion = "1.28.0";
Guid = "60f889fa-f873-43ad-b7d3-b7fc1273a44f"
}, @{
ModuleName = "Microsoft.Graph.Devices.CorporateManagement";
ModuleVersion = "1.28.0";
Guid = "39dbb3bc-1a84-424a-9efe-683be70a1810"
}
)

Expand Down

0 comments on commit 5445147

Please sign in to comment.