Skip to content

Commit 0b38670

Browse files
authored
platyPS changes for fix Get/Set-SPOApplication syntax
Using this tool: https://github.com/PowerShell/platyPS?tab=readme-ov-file I downloaded this module: https://github.com/MicrosoftDocs/OfficeDocs-SharePoint-PowerShell/blob/main/sharepoint/docs-conceptual/sharepoint-online/connect-sharepoint-online.md Then after copied the # Syntax header contents into the two markdown files modified for the ChatEmbeddedHosts
1 parent bc2c40f commit 0b38670

File tree

2 files changed

+45
-1
lines changed

2 files changed

+45
-1
lines changed

sharepoint/sharepoint-ps/sharepoint-online/Get-SPOApplication.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ Returns a list of SharePoint Embedded applications in the specified tenant.
1818

1919
## SYNTAX
2020

21+
```
22+
Get-SPOApplication [[-OwningApplicationId] <Guid>] [[-ApplicationId] <Guid>]
23+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
24+
```
25+
2126
### ParamSet1
2227

2328
```powershell
@@ -127,7 +132,22 @@ Default value: None
127132
Accept pipeline input: False
128133
Accept wildcard characters: False
129134
```
130-
135+
136+
### -ProgressAction
137+
Determines how PowerShell responds to progress updates generated by a script, cmdlet, or provider, such as the progress bars generated by the [Write-Progress](https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/write-progress?view=powershell-7.5) cmdlet.
138+
139+
```yaml
140+
Type: ActionPreference
141+
Parameter Sets: (All)
142+
Aliases: proga
143+
144+
Required: False
145+
Position: Named
146+
Default value: None
147+
Accept pipeline input: False
148+
Accept wildcard characters: False
149+
```
150+
131151
### CommonParameters
132152
133153
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ Sets or updates one or more configuration of a SharePoint Embedded application.
1818

1919
## SYNTAX
2020

21+
```
22+
Set-SPOApplication [-OwningApplicationId] <Guid> [[-SharingCapability] <SharingCapabilities>]
23+
[-OverrideTenantSharingCapability] <Boolean> [-CopilotEmbeddedChatHosts] <String> [-ProgressAction <ActionPreference>] [<CommonParameters>]
24+
```
25+
2126
### ParamSet1
2227

2328
```powershell
@@ -148,6 +153,25 @@ Default value: None
148153
Accept pipeline input: False
149154
Accept wildcard characters: False
150155
```
156+
157+
### -ProgressAction
158+
Determines how PowerShell responds to progress updates generated by a script, cmdlet, or provider, such as the progress bars generated by the [Write-Progress](https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/write-progress?view=powershell-7.5) cmdlet.
159+
160+
```yaml
161+
Type: ActionPreference
162+
Parameter Sets: (All)
163+
Aliases: proga
164+
165+
Required: False
166+
Position: Named
167+
Default value: None
168+
Accept pipeline input: False
169+
Accept wildcard characters: False
170+
```
171+
172+
### CommonParameters
173+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
174+
151175
## RELATED LINKS
152176

153177
[Get-SPOApplication](Get-SPOApplication.md)

0 commit comments

Comments
 (0)