Skip to content

Commit 06245f3

Browse files
committed
Merge branch 'master' into live
2 parents d5005ec + d5426ff commit 06245f3

File tree

9 files changed

+86
-59
lines changed

9 files changed

+86
-59
lines changed

.openpublishing.publish.config.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@
8888
]
8989
},
9090
{
91-
"docset_name": "teams-ps",
92-
"build_source_folder": "teams",
93-
"build_output_subfolder": "teams-ps",
91+
"docset_name": "staffhub-ps",
92+
"build_source_folder": "staffhub",
93+
"build_output_subfolder": "staffhub-ps",
9494
"locale": "en-us",
9595
"monikers": [],
9696
"moniker_ranges": [],
@@ -117,9 +117,9 @@
117117
]
118118
},
119119
{
120-
"docset_name": "staffhub-ps",
121-
"build_source_folder": "staffhub",
122-
"build_output_subfolder": "staffhub-ps",
120+
"docset_name": "teams-ps",
121+
"build_source_folder": "teams",
122+
"build_output_subfolder": "teams-ps",
123123
"locale": "en-us",
124124
"monikers": [],
125125
"moniker_ranges": [],
@@ -173,11 +173,11 @@
173173
]
174174
},
175175
"need_generate_pdf_url_template": true,
176-
"Targets": {
177-
"Pdf": {
178-
"template_folder": "_themes.pdf"
179-
}
180-
},
176+
"Targets": {
177+
"Pdf": {
178+
"template_folder": "_themes.pdf"
179+
}
180+
},
181181
"need_generate_pdf": false,
182182
"need_generate_intellisense": false,
183183
"dependent_packages": [

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

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ Sets properties on the SharePoint Online organization.
1414
## SYNTAX
1515

1616
```
17-
Set-SPOTenant [-BccExternalSharingInvitations <Boolean>] [-BccExternalSharingInvitationsList <String>]
17+
Set-SPOTenant [-ApplyAppEnforcedRestrictionsToAdHocRecipients <Boolean>]
18+
[-BccExternalSharingInvitations <Boolean>] [-BccExternalSharingInvitationsList <String>]
1819
[-DisplayStartASiteOption <Boolean>] [-ExternalServicesEnabled <Boolean>] [-MaxCompatibilityLevel <Int32>]
1920
[-MinCompatibilityLevel <Int32>] [-NoAccessRedirectUrl <String>] [-OfficeClientADALDisabled <Boolean>]
2021
[-ProvisionSharedWithEveryoneFolder <Boolean>] [-RequireAcceptingAccountMatchInvitedAccount <Boolean>]
@@ -81,6 +82,27 @@ This example enables the use of special persisted cookie for Open with Explorer.
8182

8283
## PARAMETERS
8384

85+
### -ApplyAppEnforcedRestrictionsToAdHocRecipients
86+
When the feature is enabled, all guest users are subject to conditional access policy. By default guest users who are accessing SharePoint Online files with pass code are exempt from the conditional access policy.
87+
88+
The valid values are:
89+
False (default) - Guest access users are exempt from conditional access policy.
90+
True - Conditional access policy is applieda also to guest users.
91+
92+
93+
```yaml
94+
Type: Boolean
95+
Parameter Sets: (All)
96+
Aliases:
97+
Applicable: SharePoint Online
98+
99+
Required: False
100+
Position: Named
101+
Default value: False
102+
Accept pipeline input: False
103+
Accept wildcard characters: False
104+
```
105+
84106
### -BccExternalSharingInvitations
85107
When the feature is enabled, all external sharing invitations that are sent will blind copy the e-mail messages listed in the BccExternalSharingsInvitationList.
86108

sharepoint/sharepoint-ps/sharepoint-server/Start-SPAssignment.md

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ You can also ensure that the objects remain as long as you need them, even throu
2828
There are three levels of assignment:
2929

3030
-- No assignment -- The object is not assigned to a variable and is disposed of after each iteration of the command.
31+
3132
-- Simple assignment -- All objects are assigned to the global assignment store. This is done by using the Global parameter. When using this level, all objects are assigned to a global store and are disposed of when the Stop-SPAssignment cmdlet is called.
33+
3234
-- Advanced assignment -- Objects are assigned to named stores for disposal. You can dispose of objects by using the Identity parameter with the `Stop-SPAssignment` cmdlet.
3335

3436
Regardless of the assignment level used, all objects are disposed of when the Windows PowerShell run space is closed.
@@ -39,13 +41,10 @@ For permissions and the most current information about Windows PowerShell for Sh
3941

4042
### ------------------EXAMPLE 1-----------------------
4143
```
42-
C:\PS>Start-SPAssignment -global
43-
44-
C:\PS>$w = Get-SPWeb http://MyWeb
45-
46-
C:\PS>$w | Set-SPWeb -title "Accounting"
47-
48-
C:\PS>Stop-SPAssignment -global
44+
PS C:\>Start-SPAssignment -global
45+
PS C:\>$w = Get-SPWeb http://MyWeb
46+
PS C:\>$w | Set-SPWeb -title "Accounting"
47+
PS C:\>Stop-SPAssignment -global
4948
```
5049

5150
This example uses simple assignment.
@@ -55,13 +54,10 @@ Ensure that you run `Stop-SPAssignment` before you attempt any iterations of mul
5554

5655
### ------------------EXAMPLE 2-----------------------
5756
```
58-
C:\PS>$gc = Start-SPAssignment
59-
60-
C:\PS>$web = $gc | Get-SPWeb http://MyWeb
61-
62-
C:\PS>$web | Set-SPWeb -title "Accounting"
63-
64-
C:\PS>Stop-SPAssignment -Identity $gc
57+
PS C:\>$gc = Start-SPAssignment
58+
PS C:\>$web = $gc | Get-SPWeb http://MyWeb
59+
PS C:\>$web | Set-SPWeb -title "Accounting"
60+
PS C:\>Stop-SPAssignment -Identity $gc
6561
```
6662

6763
This example sets the title of the SPWeb object in multiple lines and controls the rate of disposal.

sharepoint/sharepoint-ps/sharepoint-server/Start-SPDiagnosticsSession.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ For permissions and the most current information about Windows PowerShell for Sh
2929

3030
### -------------EXAMPLE-------
3131
```
32-
C:\PS>$correlationId = [guid]::NewGuid()
33-
34-
C:\PS>Start-SPDiagnosticsSession -CorrelationId $correlationId -Dashboard:$true -TraceLevel Verbose
32+
PS C:\>$correlationId = [guid]::NewGuid()
33+
PS C:\>Start-SPDiagnosticsSession -CorrelationId $correlationId -Dashboard:$true -TraceLevel Verbose
3534
```
3635

3736
This example starts a diagnostic session for a specified correlation ID with the trace level of verbose.

sharepoint/sharepoint-ps/sharepoint-server/Start-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ For permissions and the most current information about Windows PowerShell for Sh
2828

2929
### ------------------EXAMPLE------------------
3030
```
31-
C:\PS>$qssInstance = Get-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance -Local
32-
Start-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance -Identity $qssInstance
31+
PS C:\>$qssInstance = Get-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance -Local
32+
PS C:\>Start-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance -Identity $qssInstance
3333
```
3434

3535
This example starts the local query and site settings instance.

sharepoint/sharepoint-ps/sharepoint-server/Start-SPService.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Start-SPService
99

1010
## SYNOPSIS
11-
{{Fill in the Synopsis}}
11+
Enables a service in the farm.
1212

1313

1414
## SYNTAX
@@ -19,23 +19,27 @@ Start-SPService [-Identity] <SPServicePipeBind> [-AssignmentCollection <SPAssign
1919
```
2020

2121
## DESCRIPTION
22-
{{Fill in the Description}}
22+
The Start-SPService cmdlet enables a service in the farm. Service instances for this service will be started on the appropriate servers in the farm.
23+
24+
This cmdlet only controls service instances on servers that are managed by MinRole. The behavior for the Custom server role has changed with the November 2016 Public Update (PU). Please see the IncludeCustomServerRole parameter for additional information.
2325

2426

2527
## EXAMPLES
2628

2729
### ---------------EXAMPLE--------------
2830
```
29-
PS C:\> {{ Add example code here }}
31+
PS C:\>Start-SPService -Identity "Microsoft SharePoint Foundation Sandboxed Code Service"
3032
```
3133

32-
{{ Add example description here }}
34+
This example enables the Microsoft SharePoint Foundation Sandboxed Code Service in the farm.
3335

3436

3537
## PARAMETERS
3638

3739
### -AssignmentCollection
38-
{{Fill AssignmentCollection Description}}
40+
Manages objects for the purpose of proper disposal. Use of objects, such as SPWeb or SPSite, can use large amounts of memory and use of these objects in Windows PowerShell scripts requires proper memory management. Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory. When SPWeb, SPSite, or SPSiteAdministration objects are used, the objects are automatically disposed of if an assignment collection or the Global parameter is not used.
41+
42+
When the Global parameter is used, all objects are contained in the global store. If objects are not immediately used, or disposed of by using the Stop-SPAssignment command, an out-of-memory scenario can occur.
3943

4044
```yaml
4145
Type: SPAssignmentCollection
@@ -67,7 +71,7 @@ Accept wildcard characters: False
6771
```
6872
6973
### -Identity
70-
{{Fill Identity Description}}
74+
Specifies the name of the service to enable.
7175
7276
```yaml
7377
Type: SPServicePipeBind
@@ -83,7 +87,9 @@ Accept wildcard characters: False
8387
```
8488
8589
### -IncludeCustomServerRole
86-
{{Fill IncludeCustomServerRole Description}}
90+
Creates a timer job that also starts service instances on servers that are assigned to the custom server role.
91+
92+
This is a one-time Timer job. MinRole will make no further attempts to manage the service instances on servers assigned to the Custom server role.
8793
8894
```yaml
8995
Type: SwitchParameter

sharepoint/sharepoint-ps/sharepoint-server/Stop-SPContentTypeReplication.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Stop-SPContentTypeReplication
99

1010
## SYNOPSIS
11-
{{Fill in the Synopsis}}
11+
Stops Content Type replication job to SharePoint Online.
1212

1313
## SYNTAX
1414

@@ -17,22 +17,22 @@ Stop-SPContentTypeReplication [-AssignmentCollection <SPAssignmentCollection>] [
1717
```
1818

1919
## DESCRIPTION
20-
{{Fill in the Description}}
20+
Stops Content Type replication job to SharePoint Online and deletes the replication timer job.
2121

2222
## EXAMPLES
2323

2424
### -----------------EXAMPLE----------------
2525
```
26-
PS C:\> {{ Add example code here }}
26+
PS C:\>Stop-SPContentTypeReplication
2727
```
28-
29-
{{ Add example description here }}
30-
28+
Stops Content Type replication job to SharePoint Online.
3129

3230
## PARAMETERS
3331

3432
### -AssignmentCollection
35-
{{Fill AssignmentCollection Description}}
33+
Manages objects for the purpose of proper disposal. Use of objects, such as SPWeb or SPSite, can use large amounts of memory and use of these objects in Windows PowerShell scripts requires proper memory management. Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory. When SPWeb, SPSite, or SPSiteAdministration objects are used, the objects are automatically disposed of if an assignment collection or the Global parameter is not used.
34+
35+
When the Global parameter is used, all objects are contained in the global store. If objects are not immediately used, or disposed of by using the Stop-SPAssignment command, an out-of-memory scenario can occur.
3636

3737
```yaml
3838
Type: SPAssignmentCollection

sharepoint/sharepoint-ps/sharepoint-server/Uninstall-SPSolution.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ For permissions and the most current information about Windows PowerShell for Sh
4343

4444
### ------------------EXAMPLE------------------
4545
```
46-
C:\PS>Uninstall-SPUserSolution -Identity contoso_solution.wsp
46+
PS C:\>Uninstall-SPUserSolution -Identity contoso_solution.wsp
4747
```
4848

4949
This example retracts the deployed SharePoint solution contoso_solution.wsp.
@@ -142,14 +142,13 @@ Accept wildcard characters: False
142142
```
143143

144144
### -CompatibilityLevel
145-
{{Fill CompatibilityLevel Description}}
146-
145+
Specifies whether to uninstall the solution, from a specific version directory based on CompatibilityLevel. The default behavior if this parameter is not specified is to uninstall the solution only from the version directory based on the version tracked in the manifest of the solution's cab file.
147146

148147
```yaml
149148
Type: String
150149
Parameter Sets: (All)
151150
Aliases:
152-
Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
151+
Applicable: SharePoint Server 2013, SharePoint Server 2016
153152
154153
Required: False
155154
Position: Named

sharepoint/sharepoint-ps/sharepoint-server/Update-SPHelp.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
external help file:
3-
applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
3+
applicable: SharePoint Server 2013, SharePoint Server 2016
44
title: Update-SPHelp
55
schema: 2.0.0
66
---
77

88
# Update-SPHelp
99

1010
## SYNOPSIS
11-
{{Fill in the Synopsis}}
11+
Updates SharePoint cmdlet help.
1212

1313

1414
## SYNTAX
@@ -18,17 +18,20 @@ Update-SPHelp [-AssignmentCollection <SPAssignmentCollection>] [-Force] [<Common
1818
```
1919

2020
## DESCRIPTION
21-
{{Fill in the Description}}
21+
The Update-SPHelp cmdlet checks the Windows Download Center for updates for the SharePoint Management Shell help files against the version of the help files on the local computer. If there updates available, the cmdlet will download and install these updates. By default, the cmdlet will allow checking for updates only once every 24 hours. To override this check, use the Force parameter.
22+
23+
The computer that the cmdlet is being run on must have an internet connection.
24+
25+
Note: This cmdlet currently does not update cmdlet help.
2226

2327

2428
## EXAMPLES
2529

2630
### --------------------EXAMPLE 1---------------------
2731
```
28-
PS C:\> {{ Add example code here }}
32+
PS C:\>Update-SPHelp
2933
```
30-
31-
{{ Add example description here }}
34+
Updates SharePoint cmdlet help.
3235

3336
### --------------------EXAMPLE 2---------------------
3437
```
@@ -47,13 +50,15 @@ This example checks for updates to the help files and provides detailed feedback
4750
## PARAMETERS
4851

4952
### -AssignmentCollection
50-
{{Fill AssignmentCollection Description}}
53+
Manages objects for the purpose of proper disposal. Use of objects, such as SPWeb or SPSite, can use large amounts of memory and use of these objects in Windows PowerShell scripts requires proper memory management. Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory. When SPWeb, SPSite, or SPSiteAdministration objects are used, the objects are automatically disposed of if an assignment collection or the Global parameter is not used.
54+
55+
NOTE: When the Global parameter is used, all objects are contained in the global store. If objects are not immediately used, or disposed of by using the Stop-SPAssignment command, an out-of-memory scenario can occur.
5156

5257
```yaml
5358
Type: SPAssignmentCollection
5459
Parameter Sets: (All)
5560
Aliases:
56-
Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
61+
Applicable: SharePoint Server 2013, SharePoint Server 2016
5762

5863
Required: False
5964
Position: Named
@@ -63,13 +68,13 @@ Accept wildcard characters: False
6368
```
6469
6570
### -Force
66-
{{Fill Force Description}}
71+
Over-rides the throttling logic and checks for updates to the help files even if a check was made in the last 24 hours.
6772
6873
```yaml
6974
Type: SwitchParameter
7075
Parameter Sets: (All)
7176
Aliases:
72-
Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
77+
Applicable: SharePoint Server 2013, SharePoint Server 2016
7378

7479
Required: False
7580
Position: Named

0 commit comments

Comments
 (0)