From 22fbfa17cce44ab1cb87041f5998f8a7ec8a87aa Mon Sep 17 00:00:00 2001 From: tudorh <74240124+tudorh@users.noreply.github.com> Date: Fri, 20 Dec 2024 12:11:10 +0200 Subject: [PATCH 1/3] Update Remove-MailUser.md mention correct name of property - ExternalDirectoryObjectId --- exchange/exchange-ps/exchange/Remove-MailUser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exchange/exchange-ps/exchange/Remove-MailUser.md b/exchange/exchange-ps/exchange/Remove-MailUser.md index 1a59beb44e..c7ac3aebc4 100644 --- a/exchange/exchange-ps/exchange/Remove-MailUser.md +++ b/exchange/exchange-ps/exchange/Remove-MailUser.md @@ -157,7 +157,7 @@ The PermanentlyDelete switch immediately and permanently deletes (purges) the ma **Notes**: -- This switch works only on mail users that have already been deleted, but are still recoverable (known as soft-deleted mail-users), that also have a blank value for the ExternalObjectId property. +- This switch works only on mail users that have already been deleted, but are still recoverable (known as soft-deleted mail-users), that also have a blank value for the ExternalDirectoryObjectId property. - Use the Get-MailUser cmdlet to identify the soft-deleted mail user, and then pipe the results to the Remove-MailUser cmdlet with this switch. For example, `Get-MailUser -Identity Laura -SoftDeletedMailUser | Remove-MailUser -PermanentlyDelete`. ```yaml From 199c3daa9354a2289af471b5ce18e4c4ed8bd69c Mon Sep 17 00:00:00 2001 From: Liza Poggemeyer Date: Fri, 20 Dec 2024 11:37:41 -0500 Subject: [PATCH 2/3] 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 From 64a99546e4675753e2aedc518bbbbf991ef0be75 Mon Sep 17 00:00:00 2001 From: Chris Davis Date: Fri, 20 Dec 2024 13:10:26 -0800 Subject: [PATCH 3/3] Fix typo in Remove-MailUser documentation --- exchange/exchange-ps/exchange/Remove-MailUser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exchange/exchange-ps/exchange/Remove-MailUser.md b/exchange/exchange-ps/exchange/Remove-MailUser.md index c7ac3aebc4..022d16da1d 100644 --- a/exchange/exchange-ps/exchange/Remove-MailUser.md +++ b/exchange/exchange-ps/exchange/Remove-MailUser.md @@ -157,7 +157,7 @@ The PermanentlyDelete switch immediately and permanently deletes (purges) the ma **Notes**: -- This switch works only on mail users that have already been deleted, but are still recoverable (known as soft-deleted mail-users), that also have a blank value for the ExternalDirectoryObjectId property. +- This switch works only on mail users that have already been deleted, but are still recoverable (known as soft-deleted mail-users) that also have a blank value for the ExternalDirectoryObjectId property. - Use the Get-MailUser cmdlet to identify the soft-deleted mail user, and then pipe the results to the Remove-MailUser cmdlet with this switch. For example, `Get-MailUser -Identity Laura -SoftDeletedMailUser | Remove-MailUser -PermanentlyDelete`. ```yaml