From 199c3daa9354a2289af471b5ce18e4c4ed8bd69c Mon Sep 17 00:00:00 2001 From: Liza Poggemeyer Date: Fri, 20 Dec 2024 11:37:41 -0500 Subject: [PATCH] Update Add-VivaModuleFeaturePolicy.md Fixed typo in parameter reference (from "cateogry" to "category") --- .../exchange/Add-VivaModuleFeaturePolicy.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/exchange/exchange-ps/exchange/Add-VivaModuleFeaturePolicy.md b/exchange/exchange-ps/exchange/Add-VivaModuleFeaturePolicy.md index 08eb8d0914..fab2b15e16 100644 --- a/exchange/exchange-ps/exchange/Add-VivaModuleFeaturePolicy.md +++ b/exchange/exchange-ps/exchange/Add-VivaModuleFeaturePolicy.md @@ -109,35 +109,35 @@ This example adds a policy for the Reflection feature in Viva Insights. The poli Add-VivaModuleFeaturePolicy -CategoryId -Name DisableCategoryForAll -IsCategoryEnabled $false -Everyone ``` -This example adds a policy for the `` category in Viva. The policy disables the category (effectively all features under the category) for all users in the organization. +This example adds a policy for the `` category in Viva. The policy disables the category (effectively all features under the category) for all users in the organization. ### Example 6 ```powershell Add-VivaModuleFeaturePolicy -CategoryId -Name MultipleGroups -IsCategoryEnabled $false -GroupIds group1@contoso.com,group2@contoso.com,57680382-61a5-4378-85ad-f72095d4e9c3 ``` -This example adds a policy for the `` category in Viva. The policy disables the category (effectively all features under the category) for all users in the specified groups. +This example adds a policy for the `` category in Viva. The policy disables the category (effectively all features under the category) for all users in the specified groups. ### Example 7 ```powershell Add-VivaModuleFeaturePolicy -CategoryId -Name MultipleUsers -IsCategoryEnabled $false -UserIds user1@contoso.com,user2@contoso.com ``` -This example adds a policy for the `` category in Viva. The policy disables the category (effectively all features under the category) for the specified users. +This example adds a policy for the `` category in Viva. The policy disables the category (effectively all features under the category) for the specified users. ### Example 8 ```powershell Add-VivaModuleFeaturePolicy -CategoryId -Name UsersAndGroups -IsCategoryEnabled $false -GroupIds group1@contoso.com,group2@contoso.com,57680382-61a5-4378-85ad-f72095d4e9c3 -UserIds user1@contoso.com,user2@contoso.com ``` -This example adds a policy for the `` category in Viva. The policy disables the category (effectively all features under the category) for the specified users and group members. +This example adds a policy for the `` category in Viva. The policy disables the category (effectively all features under the category) for the specified users and group members. ### Example 9 ```powershell Add-VivaModuleFeaturePolicy -CategoryId -Name "Disable Category For All" -IsCategoryEnabled $false -Everyone ``` -This example adds a policy for the `` category in Viva where the policy name is with spaces. The policy disables the category (effectively all features under the category) for all users in the organization. +This example adds a policy for the `` category in Viva where the policy name is with spaces. The policy disables the category (effectively all features under the category) for all users in the organization. ## PARAMETERS