Skip to content

Commit 809707d

Browse files
authored
Merge pull request MicrosoftDocs#2289 from MicrosoftDocs/master
Merges Master to Live. See commits for details.
2 parents f5367a4 + 25109c7 commit 809707d

File tree

9 files changed

+774
-13
lines changed

9 files changed

+774
-13
lines changed

sharepoint/sharepoint-ps/sharepoint-pnp/New-PnPUPABulkImportJob.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ See https://docs.microsoft.com/en-us/sharepoint/dev/solution-guidance/bulk-user-
2626

2727
### ------------------EXAMPLE 1------------------
2828
```powershell
29+
PS C:\>Connect-PnPOnline -Url https://contoso-admin.sharepoint.com
2930
@"
3031
{
3132
"value": [
@@ -41,11 +42,13 @@ See https://docs.microsoft.com/en-us/sharepoint/dev/solution-guidance/bulk-user-
4142
}
4243
"@ > profiles.json
4344
44-
New-PnPUPABulkImportJob -Folder "Shared Documents" -Path profiles.json -IdProperty "IdName" -UserProfilePropertyMapping @{"Department"="Department"}
45+
PS C:\>New-PnPUPABulkImportJob -Folder "Shared Documents" -Path profiles.json -IdProperty "IdName" -UserProfilePropertyMapping @{"Department"="Department"}
4546
```
4647

4748
This will submit a new user profile bulk import job to SharePoint Online.
4849

50+
>[!NOTE] You must upload the json document to the Shared Documents library in the SharePoint Online tenant admin prior to running this cmdlet. You also must connect to the tenant admin via `Connect-PnPOnline` prior to running `New-PnPUPABulkImportJob`.
51+
4952
## PARAMETERS
5053

5154
### -Folder
@@ -122,4 +125,4 @@ Accept pipeline input: False
122125
123126
## RELATED LINKS
124127
125-
[SharePoint Developer Patterns and Practices](http://aka.ms/sppnp)
128+
[SharePoint Developer Patterns and Practices](http://aka.ms/sppnp)

sharepoint/sharepoint-ps/sharepoint-server/Set-SPEnterpriseSearchService.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,9 @@ Accept wildcard characters: False
191191
### -PerformanceLevel
192192
Specifies the relative number of threads for the indexer performance:
193193

194-
Reduced: Total number of threads = number of processors, Max Threads/host = number of processors
195-
196-
Partly Reduced: Total number of threads = 4 times the number of processors , Max Threads/host = 16 time the number of processors
197-
198-
Maximum: Total number of threads = number of processors
194+
* Reduced: Total number of threads = number of processors.
195+
* Partly Reduced: Total number of threads = 4 times the number of processors.
196+
* Maximum: Total number of threads = 16 times the number of processors.
199197

200198
The type must be one of the following values: Reduced, PartlyReduced, or Maximum.
201199

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.dll-help.xml
3+
applicable: Skype for Business Online
4+
title: Get-CsTeamsCallParkPolicy
5+
schema: 2.0.0
6+
---
7+
8+
# Get-CsTeamsCallParkPolicy
9+
10+
## SYNOPSIS
11+
12+
The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature in Microsoft Teams. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different Teams phone. The Get-CsTeamsCallParkPolicy cmdlet returns the policies that are available for your organization.
13+
14+
NOTE: the call park feature currently only available in desktop and web clients. Call Park functionality is currently completely disabled in mobile clients.
15+
16+
## SYNTAX
17+
18+
### Identity (Default)
19+
```
20+
Get-CsTeamsCallParkPolicy [-Tenant <System.Guid>] [[-Identity] <XdsIdentity>] [-LocalStore]
21+
[<CommonParameters>]
22+
```
23+
24+
### Filter
25+
```
26+
Get-CsTeamsCallParkPolicy [-Tenant <System.Guid>] [-Filter <String>] [-LocalStore] [<CommonParameters>]
27+
```
28+
29+
## DESCRIPTION
30+
The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different phone. The Get-CsTeamsCallParkPolicy cmdlet returns the policies that are available for your organization.
31+
32+
## EXAMPLES
33+
34+
### Example 1
35+
```powershell
36+
PS C:\> Get-CsTeamsCallParkPolicy
37+
```
38+
39+
Retrieve all policies that are available in your organization.
40+
41+
## PARAMETERS
42+
43+
### -Filter
44+
Enables you to use wildcard characters when indicating the policy (or policies) to be returned. For example, to return a collection of all the per-user policies, use this syntax: -Filter "tag:".
45+
46+
```yaml
47+
Type: String
48+
Parameter Sets: Filter
49+
Aliases:
50+
51+
Required: False
52+
Position: Named
53+
Default value: None
54+
Accept pipeline input: False
55+
Accept wildcard characters: False
56+
```
57+
58+
### -Identity
59+
Specify the unique name of a policy you would like to retrieve
60+
61+
```yaml
62+
Type: XdsIdentity
63+
Parameter Sets: Identity
64+
Aliases:
65+
66+
Required: False
67+
Position: 1
68+
Default value: None
69+
Accept pipeline input: False
70+
Accept wildcard characters: False
71+
```
72+
73+
### -LocalStore
74+
Internal Microsoft use only.
75+
76+
```yaml
77+
Type: SwitchParameter
78+
Parameter Sets: (All)
79+
Aliases:
80+
81+
Required: False
82+
Position: Named
83+
Default value: None
84+
Accept pipeline input: False
85+
Accept wildcard characters: False
86+
```
87+
88+
### -Tenant
89+
Internal Microsoft use only.
90+
91+
```yaml
92+
Type: System.Guid
93+
Parameter Sets: (All)
94+
Aliases:
95+
96+
Required: False
97+
Position: Named
98+
Default value: None
99+
Accept pipeline input: False
100+
Accept wildcard characters: False
101+
```
102+
103+
### CommonParameters
104+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
105+
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
106+
107+
## INPUTS
108+
109+
### None
110+
111+
112+
## OUTPUTS
113+
114+
### System.Object
115+
116+
## NOTES
117+
118+
## RELATED LINKS
Lines changed: 183 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,183 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.dll-help.xml
3+
applicable: Skype for Business Online
4+
title: Grant-CsTeamsCallParkPolicy
5+
schema: 2.0.0
6+
---
7+
8+
# Grant-CsTeamsCallParkPolicy
9+
10+
## SYNOPSIS
11+
12+
The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature in Microsoft Teams. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different Teams phone. The Grant-CsTeamsCallParkPolicy cmdlet lets you assign a custom policy to a specific user.
13+
14+
NOTE: the call park feature currently only available in desktop and web clients. Call Park functionality is currently completely disabled in mobile clients. Supported with TeamsOnly mode
15+
16+
## SYNTAX
17+
18+
### Identity (Default)
19+
```
20+
Grant-CsTeamsCallParkPolicy [[-Identity] <UserIdParameter>] [-PolicyName] <String> [-Tenant <System.Guid>]
21+
[-DomainController <Fqdn>] [-PassThru] [-WhatIf] [-Confirm] [<CommonParameters>]
22+
```
23+
24+
### GrantToTenant
25+
```
26+
Grant-CsTeamsCallParkPolicy [-PolicyName] <String> [-Tenant <System.Guid>] [-DomainController <Fqdn>]
27+
[-PassThru] [-Global] [-WhatIf] [-Confirm] [<CommonParameters>]
28+
```
29+
30+
## DESCRIPTION
31+
The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature in Microsoft Teams. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different phone. The Grant-CsTeamsCallParkPolicy cmdlet lets you assign a custom policy to a specific user.
32+
33+
34+
## EXAMPLES
35+
36+
### Example 1
37+
```powershell
38+
PS C:\> Grant-CsTeamsCallParkPolicy -PolicyName SalesPolicy -Identity "Ken Myer"
39+
```
40+
41+
Assigns a custom policy "Sales Policy" to the user "Ken Myer"
42+
43+
## PARAMETERS
44+
45+
### -Confirm
46+
Prompts you for confirmation before running the cmdlet.
47+
48+
```yaml
49+
Type: SwitchParameter
50+
Parameter Sets: (All)
51+
Aliases: cf
52+
53+
Required: False
54+
Position: Named
55+
Default value: None
56+
Accept pipeline input: False
57+
Accept wildcard characters: False
58+
```
59+
60+
### -DomainController
61+
Internal Microsoft use only.
62+
63+
```yaml
64+
Type: Fqdn
65+
Parameter Sets: (All)
66+
Aliases:
67+
68+
Required: False
69+
Position: Named
70+
Default value: None
71+
Accept pipeline input: False
72+
Accept wildcard characters: False
73+
```
74+
75+
### -Global
76+
Internal Microsoft use only.
77+
78+
```yaml
79+
Type: SwitchParameter
80+
Parameter Sets: GrantToTenant
81+
Aliases:
82+
83+
Required: False
84+
Position: Named
85+
Default value: None
86+
Accept pipeline input: False
87+
Accept wildcard characters: False
88+
```
89+
90+
### -Identity
91+
The User Id of the user to whom the policy is being assigned.
92+
93+
```yaml
94+
Type: UserIdParameter
95+
Parameter Sets: Identity
96+
Aliases:
97+
98+
Required: False
99+
Position: 0
100+
Default value: None
101+
Accept pipeline input: True (ByPropertyName, ByValue)
102+
Accept wildcard characters: False
103+
```
104+
105+
### -PassThru
106+
If present, causes the cmdlet to pass the user object (or objects) through the Windows PowerShell pipeline. By default, the cmdlet does not pass objects through the pipeline.
107+
108+
```yaml
109+
Type: SwitchParameter
110+
Parameter Sets: (All)
111+
Aliases:
112+
113+
Required: False
114+
Position: Named
115+
Default value: None
116+
Accept pipeline input: False
117+
Accept wildcard characters: False
118+
```
119+
120+
### -PolicyName
121+
"Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope ("tag:"). For example, a policy that has the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondConferencingPolicy has a PolicyName equal to RedmondConferencingPolicy.
122+
123+
If you set PolicyName to a null value, then the command will unassign any per-user policy assigned to the user.
124+
125+
```yaml
126+
Type: String
127+
Parameter Sets: (All)
128+
Aliases:
129+
130+
Required: True
131+
Position: 1
132+
Default value: None
133+
Accept pipeline input: False
134+
Accept wildcard characters: False
135+
```
136+
137+
### -Tenant
138+
Internal Microsoft use only.
139+
140+
```yaml
141+
Type: System.Guid
142+
Parameter Sets: (All)
143+
Aliases:
144+
145+
Required: False
146+
Position: Named
147+
Default value: None
148+
Accept pipeline input: False
149+
Accept wildcard characters: False
150+
```
151+
152+
### -WhatIf
153+
Shows what would happen if the cmdlet runs.
154+
The cmdlet is not run.
155+
156+
```yaml
157+
Type: SwitchParameter
158+
Parameter Sets: (All)
159+
Aliases: wi
160+
161+
Required: False
162+
Position: Named
163+
Default value: None
164+
Accept pipeline input: False
165+
Accept wildcard characters: False
166+
```
167+
168+
### CommonParameters
169+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
170+
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
171+
172+
## INPUTS
173+
174+
### Microsoft.Rtc.Management.AD.UserIdParameter
175+
176+
177+
## OUTPUTS
178+
179+
### System.Object
180+
181+
## NOTES
182+
183+
## RELATED LINKS

0 commit comments

Comments
 (0)