Skip to content

Commit 0cb3db8

Browse files
author
blarrywang
committed
Add new cmdlet templates.
1 parent f92add7 commit 0cb3db8

4 files changed

Lines changed: 337 additions & 0 deletions

File tree

.openpublishing.redirection.ms-ol-sp-ps.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,11 @@
495495
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositegroup",
496496
"redirect_document_id": true
497497
},
498+
{
499+
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteManageVersionPolicyJobProgress.md",
500+
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositemanageversionpolicyjobprogress",
501+
"redirect_document_id": true
502+
},
498503
{
499504
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSitePages.md",
500505
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositepages",
@@ -760,6 +765,11 @@
760765
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-spositesharingreportjob",
761766
"redirect_document_id": true
762767
},
768+
{
769+
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOSiteManageVersionPolicyJob.md",
770+
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-spositemanageversionpolicyjob",
771+
"redirect_document_id": true
772+
},
763773
{
764774
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Register-SPODataEncryptionPolicy.md",
765775
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/register-spodataencryptionpolicy",
@@ -915,6 +925,11 @@
915925
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/remove-spositegroup",
916926
"redirect_document_id": true
917927
},
928+
{
929+
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOSiteManageVersionPolicyJob.md",
930+
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/remove-spositemanageversionpolicyjob",
931+
"redirect_document_id": true
932+
},
918933
{
919934
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOSiteScript.md",
920935
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/remove-spositescript",
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
external help file: Microsoft.Online.SharePoint.PowerShell.dll-Help.xml
3+
Module Name: Microsoft.Online.SharePoint.PowerShell
4+
online version:
5+
schema: 2.0.0
6+
---
7+
8+
# Get-SPOSiteManageVersionPolicyJobProgress
9+
10+
## SYNOPSIS
11+
{{ Fill in the Synopsis }}
12+
13+
## SYNTAX
14+
15+
```
16+
Get-SPOSiteManageVersionPolicyJobProgress [-Identity] <SpoSitePipeBind> [<CommonParameters>]
17+
```
18+
19+
## DESCRIPTION
20+
{{ Fill in the Description }}
21+
22+
## EXAMPLES
23+
24+
### Example 1
25+
```powershell
26+
PS C:\> {{ Add example code here }}
27+
```
28+
29+
{{ Add example description here }}
30+
31+
## PARAMETERS
32+
33+
### -Identity
34+
{{ Fill Identity Description }}
35+
36+
```yaml
37+
Type: SpoSitePipeBind
38+
Parameter Sets: (All)
39+
Aliases:
40+
41+
Required: True
42+
Position: 0
43+
Default value: None
44+
Accept pipeline input: True (ByValue)
45+
Accept wildcard characters: False
46+
```
47+
48+
### CommonParameters
49+
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).
50+
51+
## INPUTS
52+
53+
### Microsoft.Online.SharePoint.PowerShell.SpoSitePipeBind
54+
55+
## OUTPUTS
56+
57+
### System.Object
58+
## NOTES
59+
60+
## RELATED LINKS
Lines changed: 171 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,171 @@
1+
---
2+
external help file: Microsoft.Online.SharePoint.PowerShell.dll-Help.xml
3+
Module Name: Microsoft.Online.SharePoint.PowerShell
4+
online version:
5+
schema: 2.0.0
6+
---
7+
8+
# New-SPOSiteManageVersionPolicyJob
9+
10+
## SYNOPSIS
11+
{{ Fill in the Synopsis }}
12+
13+
## SYNTAX
14+
15+
### MandatoryTrimOptionalSync
16+
```
17+
New-SPOSiteManageVersionPolicyJob [-Identity] <SpoSitePipeBind> [-FileTypes <String[]>] [-ExcludeDefaultPolicy]
18+
[-TrimUseListPolicy] [-SyncListPolicy] [-WhatIf] [-Confirm] [<CommonParameters>]
19+
```
20+
21+
### MandatorySync
22+
```
23+
New-SPOSiteManageVersionPolicyJob [-Identity] <SpoSitePipeBind> [-FileTypes <String[]>] [-ExcludeDefaultPolicy]
24+
[-SyncListPolicy] [-WhatIf] [-Confirm] [<CommonParameters>]
25+
```
26+
27+
## DESCRIPTION
28+
{{ Fill in the Description }}
29+
30+
## EXAMPLES
31+
32+
### Example 1
33+
```powershell
34+
PS C:\> {{ Add example code here }}
35+
```
36+
37+
{{ Add example description here }}
38+
39+
## PARAMETERS
40+
41+
### -Confirm
42+
Prompts you for confirmation before running the cmdlet.
43+
44+
```yaml
45+
Type: SwitchParameter
46+
Parameter Sets: (All)
47+
Aliases: cf
48+
49+
Required: False
50+
Position: Named
51+
Default value: None
52+
Accept pipeline input: False
53+
Accept wildcard characters: False
54+
```
55+
56+
### -ExcludeDefaultPolicy
57+
{{ Fill ExcludeDefaultPolicy Description }}
58+
59+
```yaml
60+
Type: SwitchParameter
61+
Parameter Sets: (All)
62+
Aliases:
63+
64+
Required: False
65+
Position: Named
66+
Default value: None
67+
Accept pipeline input: False
68+
Accept wildcard characters: False
69+
```
70+
71+
### -FileTypes
72+
{{ Fill FileTypes Description }}
73+
74+
```yaml
75+
Type: String[]
76+
Parameter Sets: (All)
77+
Aliases:
78+
79+
Required: False
80+
Position: Named
81+
Default value: None
82+
Accept pipeline input: False
83+
Accept wildcard characters: False
84+
```
85+
86+
### -Identity
87+
{{ Fill Identity Description }}
88+
89+
```yaml
90+
Type: SpoSitePipeBind
91+
Parameter Sets: (All)
92+
Aliases:
93+
94+
Required: True
95+
Position: 0
96+
Default value: None
97+
Accept pipeline input: True (ByValue)
98+
Accept wildcard characters: False
99+
```
100+
101+
### -SyncListPolicy
102+
{{ Fill SyncListPolicy Description }}
103+
104+
```yaml
105+
Type: SwitchParameter
106+
Parameter Sets: MandatoryTrimOptionalSync
107+
Aliases:
108+
109+
Required: False
110+
Position: Named
111+
Default value: None
112+
Accept pipeline input: False
113+
Accept wildcard characters: False
114+
```
115+
116+
```yaml
117+
Type: SwitchParameter
118+
Parameter Sets: MandatorySync
119+
Aliases:
120+
121+
Required: True
122+
Position: Named
123+
Default value: None
124+
Accept pipeline input: False
125+
Accept wildcard characters: False
126+
```
127+
128+
### -TrimUseListPolicy
129+
{{ Fill TrimUseListPolicy Description }}
130+
131+
```yaml
132+
Type: SwitchParameter
133+
Parameter Sets: MandatoryTrimOptionalSync
134+
Aliases:
135+
136+
Required: True
137+
Position: Named
138+
Default value: None
139+
Accept pipeline input: False
140+
Accept wildcard characters: False
141+
```
142+
143+
### -WhatIf
144+
Shows what would happen if the cmdlet runs.
145+
The cmdlet is not run.
146+
147+
```yaml
148+
Type: SwitchParameter
149+
Parameter Sets: (All)
150+
Aliases: wi
151+
152+
Required: False
153+
Position: Named
154+
Default value: None
155+
Accept pipeline input: False
156+
Accept wildcard characters: False
157+
```
158+
159+
### CommonParameters
160+
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).
161+
162+
## INPUTS
163+
164+
### Microsoft.Online.SharePoint.PowerShell.SpoSitePipeBind
165+
166+
## OUTPUTS
167+
168+
### System.Object
169+
## NOTES
170+
171+
## RELATED LINKS
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
---
2+
external help file: Microsoft.Online.SharePoint.PowerShell.dll-Help.xml
3+
Module Name: Microsoft.Online.SharePoint.PowerShell
4+
online version:
5+
schema: 2.0.0
6+
---
7+
8+
# Remove-SPOSiteManageVersionPolicyJob
9+
10+
## SYNOPSIS
11+
{{ Fill in the Synopsis }}
12+
13+
## SYNTAX
14+
15+
```
16+
Remove-SPOSiteManageVersionPolicyJob [-Identity] <SpoSitePipeBind> [-WhatIf] [-Confirm] [<CommonParameters>]
17+
```
18+
19+
## DESCRIPTION
20+
{{ Fill in the Description }}
21+
22+
## EXAMPLES
23+
24+
### Example 1
25+
```powershell
26+
PS C:\> {{ Add example code here }}
27+
```
28+
29+
{{ Add example description here }}
30+
31+
## PARAMETERS
32+
33+
### -Confirm
34+
Prompts you for confirmation before running the cmdlet.
35+
36+
```yaml
37+
Type: SwitchParameter
38+
Parameter Sets: (All)
39+
Aliases: cf
40+
41+
Required: False
42+
Position: Named
43+
Default value: None
44+
Accept pipeline input: False
45+
Accept wildcard characters: False
46+
```
47+
48+
### -Identity
49+
{{ Fill Identity Description }}
50+
51+
```yaml
52+
Type: SpoSitePipeBind
53+
Parameter Sets: (All)
54+
Aliases:
55+
56+
Required: True
57+
Position: 0
58+
Default value: None
59+
Accept pipeline input: True (ByValue)
60+
Accept wildcard characters: False
61+
```
62+
63+
### -WhatIf
64+
Shows what would happen if the cmdlet runs.
65+
The cmdlet is not run.
66+
67+
```yaml
68+
Type: SwitchParameter
69+
Parameter Sets: (All)
70+
Aliases: wi
71+
72+
Required: False
73+
Position: Named
74+
Default value: None
75+
Accept pipeline input: False
76+
Accept wildcard characters: False
77+
```
78+
79+
### CommonParameters
80+
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).
81+
82+
## INPUTS
83+
84+
### Microsoft.Online.SharePoint.PowerShell.SpoSitePipeBind
85+
86+
## OUTPUTS
87+
88+
### System.Object
89+
## NOTES
90+
91+
## RELATED LINKS

0 commit comments

Comments
 (0)