Skip to content

Commit 8e03154

Browse files
author
Supreet Singh
committed
address comments
1 parent 53f955d commit 8e03154

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

sharepoint/sharepoint-ps/sharepoint-online/Set-SPOTenant.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ Set-SPOTenant
5555
[-SocialBarOnSitePagesDisabled <Boolean>]
5656
[-DefaultLinkPermission <SharingPermissionType>]
5757
[-DefaultSharingLinkType <SharingLinkType>]
58-
[-DisabledWebPartIds <Guid>]
59-
[-DisabledAdaptiveCardExtensionIds <Guid>]
58+
[-DisabledWebPartIds [Guid[]]]
59+
[-DisabledAdaptiveCardExtensionIds [Guid[]]]
6060
[-DisallowInfectedFileDownload <Boolean>]
6161
[-DisableAddShortcutsToOneDrive <Boolean>]
6262
[-EnableGuestSignInAcceleration <Boolean>]
@@ -364,6 +364,13 @@ Set-SPOTenant –WhoCanShareAnonymousAllowList @()
364364

365365
This example empties the WhoCanShareAnonymousAllowList. Similar code works for the WhoCanShareAuthenticatedGuestAllowList.
366366

367+
### EXAMPLE 21
368+
```powershell
369+
Set-SPOTenant -DisabledAdaptiveCardExtensionIds 0d2d0fd0-9489-47ef-acfb-90edca009cba
370+
```
371+
372+
This example disables the Power Apps Adaptive Card Extension.
373+
367374
## PARAMETERS
368375

369376
### -ApplyAppEnforcedRestrictionsToAdHocRecipients
@@ -1101,9 +1108,9 @@ Allows administrators to prevent certain Adaptive Card Extensions from being add
11011108
11021109
- Power Apps: 0d2d0fd0-9489-47ef-acfb-90edca009cba
11031110
1104-
To disable a specific Adaptive Card Extension, you need to enter its GUID as the parameter. For example Set-SPOTenant -DisabledAdaptiveCardExtensionIds 0d2d0fd0-9489-47ef-acfb-90edca009cba. To view a list of disabled Adaptive Card Extensions, use Get-SPOTenant to get DisabledAdaptiveCardExtensionIds.
1111+
To disable a specific Adaptive Card Extension, you need to enter its GUID as the parameter. To view a list of disabled Adaptive Card Extensions, use [Get-SPOTenant](Get-SPOTenant.md) to get `DisabledAdaptiveCardExtensionIds`.
11051112

1106-
To re-enable some disabled Adaptive Card Extensions, use the Set-SPOTenant with the -DisabledAdaptiveCardExtensionIds parameter and corresponding GUIDs that you still want to keep disabling. To re-enable all disabled Adaptive Card Extensions, use Set-SPOTenant -DisabledAdaptiveCardExtensionIds @().
1113+
To re-enable some disabled Adaptive Card Extensions, use the `Set-SPOTenant` with the `-DisabledAdaptiveCardExtensionIds` parameter and corresponding GUIDs that you still want to keep disabling. To re-enable all disabled Adaptive Card Extensions, use `Set-SPOTenant -DisabledAdaptiveCardExtensionIds @()`.
11071114

11081115
```yaml
11091116
Type: Guid[]

0 commit comments

Comments
 (0)