From 4705c4c9b4e92704699dc952601abb1d1ca22afe Mon Sep 17 00:00:00 2001 From: DanielRyanTech Date: Thu, 20 Mar 2025 09:42:46 -0700 Subject: [PATCH] Update manage-creation-of-groups.md The value on line 128 of the sample code is incorrect. "true" no longer works with the graph commands, it must be $true --- microsoft-365/solutions/manage-creation-of-groups.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microsoft-365/solutions/manage-creation-of-groups.md b/microsoft-365/solutions/manage-creation-of-groups.md index 6469c5264cf..183fe73fed3 100644 --- a/microsoft-365/solutions/manage-creation-of-groups.md +++ b/microsoft-365/solutions/manage-creation-of-groups.md @@ -125,7 +125,7 @@ if(!$settingsObjectID) values = @( @{ name = "EnableMSStandardBlockedWords" - value = "true" + value = $true } ) }