Skip to content

Commit 496810d

Browse files
authored
Merge pull request #10974 from MicrosoftDocs/VMFUpdates-chrisda
VMFUpdates-chrisda to Main
2 parents 060e500 + 9ee8203 commit 496810d

File tree

2 files changed

+30
-30
lines changed

2 files changed

+30
-30
lines changed

exchange/exchange-ps/exchange/Add-VivaModuleFeaturePolicy.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ This cmdlet is available only in the Exchange Online PowerShell module v3.2.0-Pr
1717

1818
**Note**: This cmdlet is part of a feature that's currently in a closed Private Preview. The cmdlet won't work unless your organization is a member of the Private Preview.
1919

20-
Use the Add-VivaModuleFeaturePolicy cmdlet to add a new access policy for a specific feature in Viva. The attributes of the policy are defined using the various parameters of the cmdlet. Policies are used to restrict or grant access to the specified feature for specific users, groups, or the entire tenant. Note that the most restrictive policy for a particular user or group will take priority when determining a feature's enablement.
20+
Use the Add-VivaModuleFeaturePolicy cmdlet to add a new access policy for a specific feature in Viva. The attributes of the policy are defined using the various parameters of the cmdlet. Policies are used to restrict or grant access to the specified feature for specific users, groups, or the entire tenant. Note that the most restrictive policy for a particular user or group take priority when determining whether a feature is enabled.
2121

2222
For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://learn.microsoft.com/powershell/exchange/exchange-cmdlet-syntax).
2323

2424
## SYNTAX
2525

2626
```
27-
Add-VivaModuleFeaturePolicy -FeatureId <String> -IsFeatureDisabled <Boolean> -ModuleId <String> -Name <String>
27+
Add-VivaModuleFeaturePolicy -FeatureId <String> -IsFeatureEnabled <Boolean> -ModuleId <String> -Name <String>
2828
[-Confirm]
2929
[-GroupIds <String[]>]
3030
[-UserIds <String[]>]
@@ -49,31 +49,31 @@ To learn more about administrator role permissions in Azure Active Directory, se
4949

5050
### Example 1
5151
```powershell
52-
Add-VivaModuleFeaturePolicy -ModuleId VivaInsights -FeatureId Reflection -Name DisableFeatureForAll -IsFeatureDisabled $true -Everyone
52+
Add-VivaModuleFeaturePolicy -ModuleId VivaInsights -FeatureId Reflection -Name DisableFeatureForAll -IsFeatureEnabled $false -Everyone
5353
```
5454

55-
This example adds a policy for the Reflection feature in Viva Insights. The policy will disable the feature for all users in the organization.
55+
This example adds a policy for the Reflection feature in Viva Insights. The policy disables the feature for all users in the organization.
5656

5757
### Example 2
5858
```powershell
59-
Add-VivaModuleFeaturePolicy -ModuleId VivaInsights -FeatureId Reflection -Name MultipleGroups -IsFeatureDisabled $true -GroupIds [email protected],[email protected]
59+
Add-VivaModuleFeaturePolicy -ModuleId VivaInsights -FeatureId Reflection -Name MultipleGroups -IsFeatureEnabled $false -GroupIds [email protected],[email protected]
6060
```
6161

62-
This example adds a policy for the Reflection feature in Viva Insights. The policy will disable the feature for all users in the specified groups.
62+
This example adds a policy for the Reflection feature in Viva Insights. The policy disables the feature for all users in the specified groups.
6363

6464
### Example 3
6565
```powershell
66-
Add-VivaModuleFeaturePolicy -ModuleId VivaInsights -FeatureId Reflection -Name MultipleUsers -IsFeatureDisabled $true -UserIds [email protected],[email protected]
66+
Add-VivaModuleFeaturePolicy -ModuleId VivaInsights -FeatureId Reflection -Name MultipleUsers -IsFeatureEnabled $false -UserIds [email protected],[email protected]
6767
```
6868

69-
This example adds a policy for the Reflection feature in Viva Insights. The policy will disable the feature for the specified users.
69+
This example adds a policy for the Reflection feature in Viva Insights. The policy disables the feature for the specified users.
7070

7171
### Example 4
7272
```powershell
73-
Add-VivaModuleFeaturePolicy -ModuleId VivaInsights -FeatureId Reflection -Name UsersAndGroups -IsFeatureDisabled $true -GroupIds [email protected],[email protected] -UserIds [email protected],[email protected]
73+
Add-VivaModuleFeaturePolicy -ModuleId VivaInsights -FeatureId Reflection -Name UsersAndGroups -IsFeatureEnabled $false -GroupIds [email protected],[email protected] -UserIds [email protected],[email protected]
7474
```
7575

76-
This example adds a policy for the Reflection feature in Viva Insights. The policy will disable the feature for the specified users and group members.
76+
This example adds a policy for the Reflection feature in Viva Insights. The policy disables the feature for the specified users and group members.
7777

7878
## PARAMETERS
7979

@@ -95,11 +95,11 @@ Accept pipeline input: False
9595
Accept wildcard characters: False
9696
```
9797
98-
### -IsFeatureDisabled
99-
The IsFeatureDisabled parameter specifies whether or not the feature is disabled by the policy. Valid values are:
98+
### -IsFeatureEnabled
99+
The IsFeatureEnabled parameter specifies whether or not the feature is enabled by the policy. Valid values are:
100100
101-
- $true: The feature is disabled by the policy.
102-
- $false: The feature is not disabled by the policy.
101+
- $true: The feature is enabled by the policy.
102+
- $false: The feature is not enabled by the policy.
103103
104104
```yaml
105105
Type: Boolean

exchange/exchange-ps/exchange/Update-VivaModuleFeaturePolicy.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This cmdlet is available only in the Exchange Online PowerShell module v3.2.0-Pr
1717

1818
**Note**: This cmdlet is part of a feature that's currently in a closed Private Preview. The cmdlet won't work unless your organization is a member of the Private Preview.
1919

20-
Use the Update-VivaModuleFeaturePolicy cmdlet to update an access policy for a feature in a Viva module. Note that the most restrictive policy for a particular user or group will take priority when determining a feature's enablement.
20+
Use the Update-VivaModuleFeaturePolicy cmdlet to update an access policy for a feature in a Viva module. The most restrictive policy for a particular user or group takes priority when determining whether a feature is enabled.
2121

2222
For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://learn.microsoft.com/powershell/exchange/exchange-cmdlet-syntax).
2323

@@ -26,7 +26,7 @@ For information about the parameter sets in the Syntax section below, see [Excha
2626
```
2727
Update-VivaModuleFeaturePolicy -FeatureId <String> -ModuleId <String> -PolicyId <String>
2828
[-Confirm]
29-
[-IsFeatureDisabled <Boolean>]
29+
[-IsFeatureEnabled <Boolean>]
3030
[-GroupIds <String[]>] [-UserIds <String[]>]
3131
[-Everyone <Boolean>]
3232
[-Name <String>]
@@ -41,12 +41,12 @@ Use the Update-VivaModuleFeaturePolicy cmdlet to update an access policy for a f
4141
This cmdlet updates the attributes of the policy that you specify. These attributes include:
4242

4343
- The policy name (Name parameter).
44-
- Whether or not the policy disables the feature (IsFeatureDisabled parameter).
44+
- Whether or not the policy enables the feature (IsFeatureEnabled parameter).
4545
- Who the policy applies to (the UserIds and GroupIds parameters or the Everyone parameter).
4646

47-
You can update these attributes independently of each other. For example, if you specify the Name parameter but not the IsFeatureDisabled parameter, the name of the policy is updated but whether or not the policy disables the feature remains unchanged.
47+
You can update these attributes independently of each other. For example, if you specify the Name parameter but not the IsFeatureEnabled parameter, the name of the policy is updated but whether or not the policy enables the feature remains unchanged.
4848

49-
**Important**: Values that you specify for the UserIds and/or GroupIds parameters or the Everyone parameter will **overwrite** any existing users or groups. To preserve the existing users and groups, you need to specify those existing users or groups **and** any additional users or groups that you want to add. Not including existing users or groups in the command effectively removes those specific users or groups from the policy. For more information, see the examples.
49+
**Important**: Values that you specify for the UserIds and/or GroupIds parameters or the Everyone parameter **overwrite** any existing users or groups. To preserve the existing users and groups, you need to specify those existing users or groups **and** any additional users or groups that you want to add. Not including existing users or groups in the command effectively removes those specific users or groups from the policy. For more information, see the examples.
5050

5151
You need to use the Connect-ExchangeOnline cmdlet to authenticate.
5252

@@ -60,10 +60,10 @@ To learn more about administrator role permissions in Azure Active Directory, se
6060

6161
### Example 1
6262
```powershell
63-
Update-VivaModuleFeaturePolicy -ModuleId VivaInsights -FeatureId Reflection -PolicyId 3db38dfa-02a3-4039-b33a-42b0b3da029b1 -Name NewPolicyName -IsFeatureDisabled $false
63+
Update-VivaModuleFeaturePolicy -ModuleId VivaInsights -FeatureId Reflection -PolicyId 3db38dfa-02a3-4039-b33a-42b0b3da029b1 -Name NewPolicyName -IsFeatureEnabled $false
6464
```
6565

66-
This example updates the name of the specified policy and makes it so the policy does not disable the feature.
66+
This example updates the name of the specified policy and makes it so the policy does not enable the feature.
6767

6868
### Example 2
6969
```powershell
@@ -81,10 +81,10 @@ This example updates who the specified policy applies to. The policy now applies
8181

8282
### Example 4
8383
```powershell
84-
Update-VivaModuleFeaturePolicy -ModuleId VivaInsights -FeatureId Reflection -PolicyId 3db38dfa-02a3-4039-b33a-42b0b3da029b -Name NewPolicyName -IsFeatureDisabled $true -GroupIds [email protected] -UserIds [email protected]
84+
Update-VivaModuleFeaturePolicy -ModuleId VivaInsights -FeatureId Reflection -PolicyId 3db38dfa-02a3-4039-b33a-42b0b3da029b -Name NewPolicyName -IsFeatureEnabled $true -GroupIds [email protected] -UserIds [email protected]
8585
```
8686

87-
This example updates the name of the specified policy, makes it so the policy disables the feature, and updates who the policy applies to. The policy now applies **only** to the specified users and groups, overwriting the users and groups the policy used to apply to.
87+
This example updates the name of the specified policy, makes it so the policy enables the feature, and updates who the policy applies to. The policy now applies **only** to the specified users and groups, overwriting the users and groups the policy used to apply to.
8888

8989
## PARAMETERS
9090

@@ -187,7 +187,7 @@ The GroupIds parameter specifies the email addresses of groups that the updated
187187

188188
If you don't want to update who the policy applies to, don't use this parameter.
189189

190-
The values that you specify for this parameter or the UserIds parameter will replace any existing groups. To preserve the existing groups, include them along with any new users or groups that you specify.
190+
The values that you specify for this parameter or the UserIds parameter replace any existing groups. To preserve the existing groups, include them along with any new users or groups that you specify.
191191

192192
You can specify a maximum of 20 total users or groups (20 users and no groups, 10 users and 10 groups, etc.).
193193

@@ -206,13 +206,13 @@ Accept pipeline input: False
206206
Accept wildcard characters: False
207207
```
208208

209-
### -IsFeatureDisabled
210-
The IsFeatureDisabled parameter specifies whether the feature is disabled by the updated policy. Valid values are:
209+
### -IsFeatureEnabled
210+
The IsFeatureEnabled parameter specifies whether the feature is enabled by the updated policy. Valid values are:
211211

212-
- $true: The feature is disabled by the policy.
213-
- $false: The feature is not disabled by the policy.
212+
- $true: The feature is enabled by the policy.
213+
- $false: The feature is not enabled by the policy.
214214

215-
If you don't want to update whether the feature is disabled by the policy, don't use this parameter.
215+
If you don't want to update whether the feature is enabled by the policy, don't use this parameter.
216216

217217
```yaml
218218
Type: Boolean
@@ -268,7 +268,7 @@ The UserIds parameter specifies the user principal names (UPNs) of users that th
268268

269269
If you don't want to update who the policy applies to, don't use this parameter.
270270

271-
The values that you specify for this parameter or the GroupIds parameter will replace any existing users. To preserve the existing users, include them along with any new users or groups that you specify.
271+
The values that you specify for this parameter or the GroupIds parameter replace any existing users. To preserve the existing users, include them along with any new users or groups that you specify.
272272

273273
You can specify a maximum of 20 total users or groups (20 users and no groups, 10 users and 10 groups, etc.).
274274

0 commit comments

Comments
 (0)