From 4fc2ffa9c7dbb02bfc854d95a6e551a05719c4f2 Mon Sep 17 00:00:00 2001 From: Yorick Kuijs Date: Wed, 26 Feb 2025 11:19:06 +0100 Subject: [PATCH 1/3] Correct schema --- CHANGELOG.md | 3 +++ .../MSFT_PPTenantSettings/MSFT_PPTenantSettings.schema.mof | 4 +--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dd12012d6..9f4290fcef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ * Changed the Get-TargetResource logic to return UPN instead of id. * EXODistributionGroup * Fixed the ability to set members. +* PPTenantSettings + * Corrected issue in the resource schema. The description was a multi-line + string, which is not allowed. * Security & Compliance * Updated export functions to remove skipping of loading module, to prevent missing cmdlet errors that are causing failing exports. diff --git a/Modules/Microsoft365DSC/DSCResources/MSFT_PPTenantSettings/MSFT_PPTenantSettings.schema.mof b/Modules/Microsoft365DSC/DSCResources/MSFT_PPTenantSettings/MSFT_PPTenantSettings.schema.mof index afa473aa81..59ebf64a14 100644 --- a/Modules/Microsoft365DSC/DSCResources/MSFT_PPTenantSettings/MSFT_PPTenantSettings.schema.mof +++ b/Modules/Microsoft365DSC/DSCResources/MSFT_PPTenantSettings/MSFT_PPTenantSettings.schema.mof @@ -8,9 +8,7 @@ class MSFT_PPTenantSettings : OMI_BaseResource [Write, Description("Allow people to use AI to generate an app based on an image. Default value is false.")] Boolean DisableCreateFromImage; [Write, Description("Gets or sets a value indicating whether non-admin users in the tenant can share connections with everyone. Default value is false.")] Boolean DisableConnectionSharingWithEveryone; [Write, Description("TBD")] Boolean AllowNewOrgChannelDefault; - [Write, Description("Disables cloud flows copilot in Power Automate. - -It doesn't control the ability to add AI-related connectors or actions in the flow designer. For example, the Skills connector or AI Builder creates text with a GPT action. Default value is false.")] Boolean DisableCopilot; + [Write, Description("Disables cloud flows copilot in Power Automate. It doesn't control the ability to add AI-related connectors or actions in the flow designer. For example, the Skills connector or AI Builder creates text with a GPT action. Default value is false.")] Boolean DisableCopilot; [Write, Description("Disables the copilot-enhanced help feature within Power Automate to enhance answers on product documentation through Bing Search. Default value is false.")] Boolean DisableCopilotWithBing; [Write, Description("Disables the weekly admin digest email for Managed Environments. Default value is false.")] Boolean DisableAdminDigest; [Write, Description("Ignore the Teams group-preferred data location when provisioning a Teams environment. Default value is false.")] Boolean DisablePreferredDataLocationForTeamsEnvironment; From 2c253fc937588e8b510d10a3786098a7431c0f92 Mon Sep 17 00:00:00 2001 From: Yorick Kuijs Date: Wed, 26 Feb 2025 11:19:06 +0100 Subject: [PATCH 2/3] Correct schema --- CHANGELOG.md | 3 +++ .../MSFT_PPTenantSettings/MSFT_PPTenantSettings.schema.mof | 4 +--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd20e5600c..67f23d3117 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,9 @@ * Initial release. * M365DSCRuleEvaluation * Clear the cached instances from the export operation after evaluating the rules. +* PPTenantSettings + * Corrected issue in the resource schema. The description was a multi-line + string, which is not allowed. * Security & Compliance * Updated export functions to remove skipping of loading module, to prevent missing cmdlet errors that are causing failing exports. diff --git a/Modules/Microsoft365DSC/DSCResources/MSFT_PPTenantSettings/MSFT_PPTenantSettings.schema.mof b/Modules/Microsoft365DSC/DSCResources/MSFT_PPTenantSettings/MSFT_PPTenantSettings.schema.mof index afa473aa81..59ebf64a14 100644 --- a/Modules/Microsoft365DSC/DSCResources/MSFT_PPTenantSettings/MSFT_PPTenantSettings.schema.mof +++ b/Modules/Microsoft365DSC/DSCResources/MSFT_PPTenantSettings/MSFT_PPTenantSettings.schema.mof @@ -8,9 +8,7 @@ class MSFT_PPTenantSettings : OMI_BaseResource [Write, Description("Allow people to use AI to generate an app based on an image. Default value is false.")] Boolean DisableCreateFromImage; [Write, Description("Gets or sets a value indicating whether non-admin users in the tenant can share connections with everyone. Default value is false.")] Boolean DisableConnectionSharingWithEveryone; [Write, Description("TBD")] Boolean AllowNewOrgChannelDefault; - [Write, Description("Disables cloud flows copilot in Power Automate. - -It doesn't control the ability to add AI-related connectors or actions in the flow designer. For example, the Skills connector or AI Builder creates text with a GPT action. Default value is false.")] Boolean DisableCopilot; + [Write, Description("Disables cloud flows copilot in Power Automate. It doesn't control the ability to add AI-related connectors or actions in the flow designer. For example, the Skills connector or AI Builder creates text with a GPT action. Default value is false.")] Boolean DisableCopilot; [Write, Description("Disables the copilot-enhanced help feature within Power Automate to enhance answers on product documentation through Bing Search. Default value is false.")] Boolean DisableCopilotWithBing; [Write, Description("Disables the weekly admin digest email for Managed Environments. Default value is false.")] Boolean DisableAdminDigest; [Write, Description("Ignore the Teams group-preferred data location when provisioning a Teams environment. Default value is false.")] Boolean DisablePreferredDataLocationForTeamsEnvironment; From 13720d335049690a4e7d33eafe33bc73c20275a5 Mon Sep 17 00:00:00 2001 From: Yorick Kuijs Date: Wed, 26 Feb 2025 11:36:08 +0100 Subject: [PATCH 3/3] Corrected changelog --- CHANGELOG.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67f23d3117..64fa8c6f2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change log for Microsoft365DSC +# UNRELEASED + +* PPTenantSettings + * Corrected issue in the resource schema. The description was a multi-line + string, which is not allowed. + # 1.25.219.3 * AADApplication @@ -31,9 +37,6 @@ * Initial release. * M365DSCRuleEvaluation * Clear the cached instances from the export operation after evaluating the rules. -* PPTenantSettings - * Corrected issue in the resource schema. The description was a multi-line - string, which is not allowed. * Security & Compliance * Updated export functions to remove skipping of loading module, to prevent missing cmdlet errors that are causing failing exports.