Skip to content

Commit 2f8e450

Browse files
authored
Merge branch 'main' into SharePoint-POwerShell-Working-branch
2 parents ecd219a + d0d807a commit 2f8e450

26 files changed

+701
-62
lines changed

sharepoint/docs-conceptual/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ metadata:
1313
author: kaarins #Required; your GitHub user alias, with correct capitalization.
1414
ms.author: kaarins #Required; microsoft alias of author; optional team alias.
1515
ms.date: 03/16/2020 #Required; mm/dd/yyyy format
16-
localization_priority: Priority
16+
ms.localizationpriority: Medium
1717

1818
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new
1919

sharepoint/docs-conceptual/sharepoint-online/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ metadata:
1313
author: kaarins #Required; your GitHub user alias, with correct capitalization.
1414
ms.author: kaarins #Required; microsoft alias of author; optional team alias.
1515
ms.date: 03/16/2020 #Required; mm/dd/yyyy format
16-
localization_priority: Priority
16+
ms.localizationpriority: Medium
1717

1818
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new
1919

sharepoint/docs-conceptual/sharepoint-pnp/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ metadata:
1313
author: kaarins #Required; your GitHub user alias, with correct capitalization.
1414
ms.author: kaarins #Required; microsoft alias of author; optional team alias.
1515
ms.date: 03/16/2020 #Required; mm/dd/yyyy format
16-
localization_priority: Priority
16+
ms.localizationpriority: Medium
1717

1818
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new
1919

sharepoint/docs-conceptual/sharepoint-server/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ metadata:
1313
author: kaarins #Required; your GitHub user alias, with correct capitalization.
1414
ms.author: kaarins #Required; microsoft alias of author; optional team alias.
1515
ms.date: 03/16/2020 #Required; mm/dd/yyyy format
16-
localization_priority: Priority
16+
ms.localizationpriority: Medium
1717

1818
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new
1919

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
---
2+
external help file: sharepointonline.xml
3+
Module Name: Microsoft.Online.SharePoint.PowerShell
4+
online version: https://learn.microsoft.com/powershell/module/sharepoint-online/get-spocontainertype
5+
applicable: SharePoint Online
6+
title: Get-SPOContainerType
7+
schema: 2.0.0
8+
author: ShreyasSar26
9+
ms.author: shsaravanan
10+
ms.reviewer:
11+
---
12+
13+
# Get-SPOContainerType
14+
15+
## SYNOPSIS
16+
17+
Returns one or more container types created in the tenant.
18+
19+
## SYNTAX
20+
21+
### ParamSet1
22+
23+
```powershell
24+
Get-SPOContainerType
25+
```
26+
### ParamSet2
27+
```powershell
28+
Get-SPOContainerType [-ContainerTypeId <ContainerTypeId>]
29+
```
30+
31+
## DESCRIPTION
32+
33+
This cmdlet returns all the container types present in the tenant or details of a specific container type when paired with the containertype ID parameter.
34+
35+
You must be a SharePoint Embedded Administrator to run the cmdlet.
36+
37+
For permissions and the most current information about Windows PowerShell for SharePoint Embedded Containers, see the documentation at [Intro to SharePoint Embedded Containers Management Shell](/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell).
38+
39+
## EXAMPLES
40+
41+
### Example 1
42+
43+
```powershell
44+
Get-SPOContainerType
45+
```
46+
47+
Example 1 retrieves all the container types present in the tenant and displays container type specific information.
48+
49+
### Example 2
50+
51+
```powershell
52+
Get-SPOContainerType -ContainerTypeId 4f0af585-8dcc-0000-223d-661eb2c604e4
53+
```
54+
Example 2 returns the detailed properties of container type 4f0af585-8dcc-0000-223d-661eb2c604e4
55+
56+
## PARAMETERS
57+
58+
### -ContainerTypeId
59+
60+
This parameter specifies the ID of the container type corresponding to the SharePoint Embedded application.
61+
```yaml
62+
Type: String
63+
Parameter Sets: (All)
64+
Aliases:
65+
Applicable: SharePoint Online
66+
67+
Required: True
68+
Position: Named
69+
Default value: None
70+
Accept pipeline input: False
71+
Accept wildcard characters: False
72+
```
73+
## RELATED LINKS
74+
75+
[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online)
76+
77+
[New-SPOContainerType](./New-SPOContainerType.md)
78+
79+
[Set-SPOContainerType](./Set-SPOContainerType.md)
80+
81+
[Remove-SPOContainerType](./Remove-SPOContainerType.md)
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
external help file: sharepointonline.xml
3+
Module Name: Microsoft.Online.SharePoint.PowerShell
4+
online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Get-SPOCopilotPromoOptInStatus
5+
applicable: SharePoint Online
6+
title: Get-SPOCopilotPromoOptInStatus
7+
schema:
8+
author: siruvanti
9+
ms.author: siruvanti
10+
ms.reviewer:
11+
---
12+
13+
# Get-SPOCopilotPromoOptInStatus
14+
15+
## SYNOPSIS
16+
17+
Returns the Opt-In Copilot promo status for the tenant.
18+
19+
## SYNTAX
20+
```powershell
21+
Get-SPOCopilotPromoOptInStatus
22+
```
23+
24+
## DESCRIPTION
25+
26+
This cmdlet returns the Opt-In Copilot promo status for the tenant.
27+
If the promo status is enabled, the return value is `True`, otherwise the return value is `False`.
28+
29+
## EXAMPLES
30+
31+
### Example 1
32+
33+
```powershell
34+
Get-SPOCopilotPromoOptInStatusEnabled
35+
```
36+
37+
Example 1 returns the value of the Opt-In promo status.
38+
39+
## RELATED LINKS
40+
- [Set-SPOCopilotPromoOptInStatus](./Set-SPOCopilotPromoOptInStatus.md)
41+
- [Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online)

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ manager: seanmc
1515

1616
## SYNOPSIS
1717

18-
> [!NOTE]
19-
> This feature is part of the version history controls preview. If your tenant is not part of the preview or the feature has not rolled out to your tenant, you will get an error when trying to run this cmdlet.
20-
2118
Gets the progress of a trim job for a site collection.
2219

2320
## SYNTAX
@@ -81,4 +78,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
8178
8279
[Remove-SPOListFileVersionBatchDeleteJob](Remove-SPOListFileVersionBatchDeleteJob.md)
8380
84-
[New-SPOListFileVersionBatchDeleteJob](New-SPOListFileVersionBatchDeleteJob.md)
81+
[New-SPOListFileVersionBatchDeleteJob](New-SPOListFileVersionBatchDeleteJob.md)

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ manager: seanmc
1515

1616
## SYNOPSIS
1717

18-
> [!NOTE]
19-
> This feature is part of the version history controls preview. If your tenant is not part of the preview or the feature has not rolled out to your tenant, you will get an error when trying to run this cmdlet.
20-
2118
Gets the status for a file version expiration report generation job for a document library.
2219

2320
## SYNTAX
@@ -94,4 +91,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
9491
9592
## RELATED LINKS
9693
97-
[New-SPOListFileVersionExpirationReportJob](New-SPOListFileVersionExpirationReportJob.md)
94+
[New-SPOListFileVersionExpirationReportJob](New-SPOListFileVersionExpirationReportJob.md)

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ manager: seanmc
1515

1616
## SYNOPSIS
1717

18-
Gets the version policy setting on the cocument library.
18+
Gets the version policy setting on the document library.
1919

2020
## SYNTAX
2121

@@ -76,4 +76,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
7676
7777
## RELATED LINKS
7878
79-
[Set-SPOListVersionPolicy](Set-SPOListVersionPolicy.md)
79+
[Set-SPOListVersionPolicy](Set-SPOListVersionPolicy.md)

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ manager: seanmc
1515

1616
## SYNOPSIS
1717

18-
> [!NOTE]
19-
> This feature is part of the version history controls preview. If your tenant is not part of the preview or the feature has not rolled out to your tenant, you will get an error when trying to run this cmdlet.
20-
2118
Gets the progress of a trim job for a site collection.
2219

2320
## SYNTAX
@@ -66,4 +63,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
6663
6764
[Remove-SPOSiteFileVersionBatchDeleteJob](Remove-SPOSiteFileVersionBatchDeleteJob.md)
6865
69-
[New-SPOSiteFileVersionBatchDeleteJob](New-SPOSiteFileVersionBatchDeleteJob.md)
66+
[New-SPOSiteFileVersionBatchDeleteJob](New-SPOSiteFileVersionBatchDeleteJob.md)

0 commit comments

Comments
 (0)