Skip to content

Commit 9363b52

Browse files
author
David Strome
committed
Merge branch 'master' into ExMigration
2 parents 8331b20 + 5b91d42 commit 9363b52

14 files changed

+435
-196
lines changed

sharepoint/sharepoint-ps/sharepoint-server/Import-SPAppPackage.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,20 +51,19 @@ Accept wildcard characters: False
5151
```
5252
5353
### -Source
54-
Defines the source of the app.
54+
Defines the source of the app. The source indicates where the app package originates from, for example, if the app was built by a developer but did not reside on the SharePoint Marketplace, you might use the CorporateCatalog source.
5555
5656
The following are valid values:
5757
5858
InvalidSource, Marketplace, CorporateCatalog, DeveloperSite, ObjectModel, RemoteObjectModel
5959
6060
The following are valid sources (not parameters of -Source) of the app:
6161
62-
--SharePoint Store
62+
--SharePoint Store (Marketplace)
6363
64-
--App catalog
64+
--App catalog (CorporateCatalog)
6565
66-
--SharePointService- Indicates apps that were built in place with SharePoint features, for example Access
67-
Services.
66+
--SharePointService - Indicates apps that were built in place with SharePoint features, for example Access Services (ObjectModel)
6867
6968
7069
```yaml
Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.dll-Help.xml
3+
applicable: Skype for Business Server 2019
4+
title: Get-CsAuthConfig
5+
schema: 2.0.0
6+
---
7+
8+
# Get-CsAuthConfig
9+
10+
## SYNOPSIS
11+
Use the Get-CsAuthConfig cmdlet to retrieve the authentication configuration for your organization.
12+
13+
## SYNTAX
14+
15+
```
16+
Get-CsAuthConfig [[-Pool] <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
17+
```
18+
19+
## DESCRIPTION
20+
Use the Get-CsAuthConfig cmdlet to retrieve the authentication configuration for your organization.
21+
This cmdlet gets authentication configuration from two server roles - Registrar and WebServices.
22+
It is meant to only be run at the global level.
23+
If you do run it at the pool level and only one of the roles are present on the pool, the cmdlet will return the setting that corresponds to the role that exists on the pool and the global settings for the role that doesn’t exist on the pool.
24+
If neither role is present on the pool, it will return an error.
25+
If both roles are present for the pool, but policies are not defined at the pool level, the cmdlet will return an error.
26+
27+
## EXAMPLES
28+
29+
### Example 1
30+
```powershell
31+
PS C:\> {{ Add example code here }}
32+
```
33+
34+
{{ Add example description here }}
35+
36+
## PARAMETERS
37+
38+
### -Confirm
39+
Prompts you for confirmation before running the cmdlet.
40+
41+
```yaml
42+
Type: SwitchParameter
43+
Parameter Sets: (All)
44+
Aliases: cf
45+
applicable: Skype for Business Server 2019
46+
Required: False
47+
Position: Named
48+
Default value: None
49+
Accept pipeline input: False
50+
Accept wildcard characters: False
51+
```
52+
53+
### -Pool
54+
{{Fill Pool Description}}
55+
56+
```yaml
57+
Type: String
58+
Parameter Sets: (All)
59+
Aliases:
60+
applicable: Skype for Business Server 2019
61+
Required: False
62+
Position: 0
63+
Default value: None
64+
Accept pipeline input: True (ByPropertyName, ByValue)
65+
Accept wildcard characters: False
66+
```
67+
68+
### -WhatIf
69+
Shows what would happen if the cmdlet runs.
70+
The cmdlet is not run.
71+
72+
```yaml
73+
Type: SwitchParameter
74+
Parameter Sets: (All)
75+
Aliases: wi
76+
applicable: Skype for Business Server 2019
77+
Required: False
78+
Position: Named
79+
Default value: None
80+
Accept pipeline input: False
81+
Accept wildcard characters: False
82+
```
83+
84+
### CommonParameters
85+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
86+
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
87+
88+
## INPUTS
89+
90+
### System.String
91+
92+
## OUTPUTS
93+
94+
### System.Object
95+
## NOTES
96+
97+
## RELATED LINKS

skype/skype-ps/skype/Get-CsMeetingMigrationStatus.md

Lines changed: 49 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,35 +8,43 @@ schema: 2.0.0
88
# Get-CsMeetingMigrationStatus
99

1010
## SYNOPSIS
11-
Provide the topic introduction here.
11+
You use the `Get-CsMeetingMigrationStatus` cmdlet to check the status of meeting migrations.
1212

1313
## SYNTAX
14-
1514
```
16-
Get-CsMeetingMigrationStatus [[-Identity] <Object>] [-Confirm] [-EndTime <Object>] [-StartTime <Object>]
17-
[-SummaryOnly] [-Tenant <Object>] [-WhatIf] [-AsJob] [-State <Object>] [<CommonParameters>]
15+
Get-CsMeetingMigrationStatus [[-Identity] <UserIdParameter>] [-Confirm] [-EndTime <DateTime>] [-StartTime <DateTime>]
16+
[-SummaryOnly] [-Tenant <Guid>] [-WhatIf] [-AsJob] [-State <StateType>] [<CommonParameters>]
1817
```
1918

2019
## DESCRIPTION
21-
Provide the detailed description here.
20+
Meeting Migration Service (MMS) is a Skype for Business service that runs in the background and automatically updates Skype for Business and Microsoft Teams meetings for users. MMS is designed to eliminate the need for users to run the Meeting Migration Tool to update their Skype for Business and Microsoft Teams meetings.
21+
22+
You can use the `Get-CsMeetingMigrationStatus` cmdlet to check the status of meeting migrations.
2223

2324
## EXAMPLES
2425

2526
### -------------------------- Example 1 --------------------------
2627
```
27-
Insert example commands for example 1.
28+
Get-CsMeetingMigrationStatus -SummaryOnly
29+
```
30+
31+
This example is used to get a summary status of all MMS migrations.
32+
33+
### -------------------------- Example 2 --------------------------
34+
```
35+
Get-CsMeetingMigrationStatus -UserId "[email protected]"
2836
```
2937

30-
Insert descriptive text for example 1.
38+
This example get the meeting migration status for user [email protected].
3139

3240

3341
## PARAMETERS
3442

3543
### -Identity
36-
PARAMVALUE: UserIdParameter
44+
Specifies the Identity of the user account to be to be modified. A user identity can be specified by using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer) and 4) the user's Active Directory display name (for example, Ken Myer). You can also reference a user account by using the user's Active Directory distinguished name.
3745

3846
```yaml
39-
Type: Object
47+
Type: UserIdParameter
4048
Parameter Sets: (All)
4149
Aliases:
4250
Applicable: Skype for Business Online
@@ -49,7 +57,7 @@ Accept wildcard characters: False
4957
```
5058
5159
### -Confirm
52-
PARAMVALUE: SwitchParameter
60+
The Confirm switch causes the command to pause processing and requires confirmation to proceed.
5361
5462
```yaml
5563
Type: SwitchParameter
@@ -64,8 +72,8 @@ Accept pipeline input: False
6472
Accept wildcard characters: False
6573
```
6674
67-
### -EndTime
68-
PARAMVALUE: DateTime
75+
### -StartTime
76+
Specifies the start date of the date range.
6977
7078
```yaml
7179
Type: Object
@@ -80,8 +88,8 @@ Accept pipeline input: False
8088
Accept wildcard characters: False
8189
```
8290
83-
### -StartTime
84-
PARAMVALUE: DateTime
91+
### -EndTime
92+
Specifies the end date of the date range.
8593
8694
```yaml
8795
Type: Object
@@ -97,7 +105,7 @@ Accept wildcard characters: False
97105
```
98106
99107
### -SummaryOnly
100-
PARAMVALUE: SwitchParameter
108+
Specified that you want a summary status of MMS migrations returned.
101109
102110
```yaml
103111
Type: SwitchParameter
@@ -113,10 +121,18 @@ Accept wildcard characters: False
113121
```
114122
115123
### -Tenant
116-
PARAMVALUE: Guid
124+
Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example:
125+
126+
-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"
127+
128+
You can return your tenant ID by running this command:
129+
130+
Get-CsTenant | Select-Object DisplayName, TenantID
131+
132+
If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment.
117133
118134
```yaml
119-
Type: Object
135+
Type: Guid
120136
Parameter Sets: (All)
121137
Aliases:
122138
Applicable: Skype for Business Online
@@ -129,7 +145,7 @@ Accept wildcard characters: False
129145
```
130146
131147
### -WhatIf
132-
PARAMVALUE: SwitchParameter
148+
The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes.
133149
134150
```yaml
135151
Type: SwitchParameter
@@ -145,7 +161,11 @@ Accept wildcard characters: False
145161
```
146162
147163
### -AsJob
148-
{{Fill AsJob Description}}
164+
Indicates that this cmdlet runs as a background job.
165+
166+
When you specify the AsJob parameter, the command immediately returns an object that represents the background job. You can continue to work in the session while the job finishes. The job is created on the local computer and the results from the Skype for Business Online session are automatically returned to the local computer. To get the job results, use the Receive-Job cmdlet.
167+
168+
For more information about Windows PowerShell background jobs, see [about_Jobs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_jobs?view=powershell-6) and [about_Remote_Jobs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_remote_jobs?view=powershell-6).
149169
150170
```yaml
151171
Type: SwitchParameter
@@ -161,10 +181,14 @@ Accept wildcard characters: False
161181
```
162182
163183
### -State
164-
{{Fill State Description}}
184+
With this parameter you can filter by migration state. Possible values are:
185+
* Pending
186+
* InProgress
187+
* Failed
188+
* Succeeded
165189
166190
```yaml
167-
Type: Object
191+
Type: StateType
168192
Parameter Sets: (All)
169193
Aliases:
170194
Applicable: Skype for Business Online
@@ -186,4 +210,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
186210
## NOTES
187211
188212
## RELATED LINKS
213+
[Get-CsTenantMigrationConfiguration](https://docs.microsoft.com/en-us/powershell/module/skype/get-cstenantmigrationconfiguration?view=skype-ps)
214+
215+
[Get-CsOnlineDialInConferencingTenantSettings](https://docs.microsoft.com/en-us/powershell/module/skype/get-csonlinedialinconferencingtenantsettings?view=skype-ps)
189216
217+
[Start-CsExMeetingMigration](https://docs.microsoft.com/en-us/powershell/module/skype/start-csexmeetingmigration?view=skype-ps)

skype/skype-ps/skype/Get-CsOAuthConfiguration.md

Lines changed: 10 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,16 @@ This cmdlet was introduced in Lync Server 2013.
1515

1616
## SYNTAX
1717

18-
### Filter
18+
### Identity (Default)
1919
```
20-
Get-CsOAuthConfiguration [-Filter <String>] [-LocalStore] [-Tenant <Guid>] [<CommonParameters>]
20+
Get-CsOAuthConfiguration [[-Identity] <XdsIdentity>] [-LocalStore] [-Tenant <Guid>] [-AsJob] [<CommonParameters>]
2121
```
2222

23-
### Identity
23+
### Filter
2424
```
25-
Get-CsOAuthConfiguration [[-Identity] <XdsIdentity>] [-LocalStore] [-Tenant <Guid>] [<CommonParameters>]
25+
Get-CsOAuthConfiguration [-Filter <String>] [-LocalStore] [-Tenant <Guid>] [-AsJob] [<CommonParameters>]
2626
```
2727

28-
### (Default)
29-
```
30-
Get-CsOAuthConfiguration [[-Identity] <Object>] [-BypassDualWrite <Object>] [-Filter <Object>] [-LocalStore]
31-
[-Tenant <Object>] [-AsJob] [<CommonParameters>]
32-
```
3328

3429
## DESCRIPTION
3530
In Skype for Business Server, server-to-server authentication (for example, the authentication that enables Skype for Business Server and Exchange to share information) is carried out using the OAuth security protocol.
@@ -97,27 +92,14 @@ Accept pipeline input: False
9792
Accept wildcard characters: False
9893
```
9994

100-
```yaml
101-
Type: XdsIdentity
102-
Parameter Sets: (All)
103-
Aliases:
104-
Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019
105-
106-
Required: False
107-
Position: 1
108-
Default value: None
109-
Accept pipeline input: False
110-
Accept wildcard characters: False
111-
```
112-
11395
### -LocalStore
11496
Retrieves the OAuth configuration data from the local replica of the Central Management store rather than from the Central Management store itself.
11597

11698
```yaml
11799
Type: SwitchParameter
118100
Parameter Sets: (All)
119101
Aliases:
120-
Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019
102+
Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019
121103
122104
Required: False
123105
Position: Named
@@ -141,22 +123,6 @@ You can return the tenant ID for each of your tenants by running this command:
141123
Type: Guid
142124
Parameter Sets: (All)
143125
Aliases:
144-
Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019
145-
146-
Required: False
147-
Position: Named
148-
Default value: None
149-
Accept pipeline input: False
150-
Accept wildcard characters: False
151-
```
152-
153-
### -BypassDualWrite
154-
{{Fill BypassDualWrite Description}}
155-
156-
```yaml
157-
Type: Object
158-
Parameter Sets: (All)
159-
Aliases:
160126
Applicable: Skype for Business Online
161127
162128
Required: False
@@ -167,7 +133,11 @@ Accept wildcard characters: False
167133
```
168134

169135
### -AsJob
170-
{{Fill AsJob Description}}
136+
Indicates that this cmdlet runs as a background job.
137+
138+
When you specify the AsJob parameter, the command immediately returns an object that represents the background job. You can continue to work in the session while the job finishes. The job is created on the local computer and the results from the Skype for Business Online session are automatically returned to the local computer. To get the job results, use the Receive-Job cmdlet.
139+
140+
For more information about Windows PowerShell background jobs, see [about_Jobs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_jobs?view=powershell-6) and [about_Remote_Jobs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_remote_jobs?view=powershell-6).
171141

172142
```yaml
173143
Type: SwitchParameter
@@ -200,6 +170,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
200170

201171

202172
## RELATED LINKS
203-
204173
[Set-CsOAuthConfiguration](Set-CsOAuthConfiguration.md)
205174

0 commit comments

Comments
 (0)