Skip to content

Commit d3bfd3b

Browse files
authored
Merge pull request MicrosoftDocs#1570 from dariomws306/patch-10
Patch 10
2 parents 01d6dd5 + 1a77d4b commit d3bfd3b

7 files changed

+188
-183
lines changed

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

skype/skype-ps/skype/Grant-CsDialoutPolicy.md

Lines changed: 47 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,40 @@ schema: 2.0.0
88
# Grant-CsDialoutPolicy
99

1010
## SYNOPSIS
11-
Grant-CsDialoutPolicy \[-Identity\] \<UserIdParameter\> \[-PolicyName\] \<string\> \[-Tenant \<guid\>\] \[-DomainController \<Fqdn\>\] \[-PassThru\] \[-WhatIf\] \[-Confirm\] \[\<CommonParameters\>\]
11+
Use the `Grant-CsDialoutPolicy` cmdlet to assign a per-user outbound calling restriction policy to one or more users.
1212

1313
## SYNTAX
14-
1514
```
16-
Grant-CsDialoutPolicy [[-Identity] <Object>] [[-PolicyName] <Object>] [-Confirm] [-DomainController <Object>]
17-
[-PassThru] [-Tenant <Object>] [-WhatIf] [-AsJob] [<CommonParameters>]
15+
Grant-CsDialoutPolicy [[-Identity] <UserIdParameter>] [[-PolicyName] <string>] [-Confirm] [-DomainController <Fqdn>]
16+
[-PassThru] [-Tenant <Guid>] [-WhatIf] [-AsJob] [<CommonParameters>]
1817
```
1918

2019
## DESCRIPTION
21-
{{Fill in the Description}}
20+
In Skype for Business Online, outbound calling restriction policies are used to restrict the type of audio conferencing and end user PSTN calls that can be made by users in your organization.
21+
To get all the available policies in your organization run `Get-CSOnlineDialOutPolicy`.
2222

2323
## EXAMPLES
2424

25-
### Example 1 (Skype for Business Online)
25+
### -------------------------- Example 1 --------------------------
26+
```
27+
PS C:\> Grant-CsDialoutPolicy -Identity "[email protected]" -PolicyName "DialoutCPCandPSTNInternational"
28+
```
29+
30+
This example assigns the per-user outbound calling restriction policy DialoutCPCandPSTNInternational to the user with the User Principal Name "[email protected]".
31+
32+
### -------------------------- Example 2 --------------------------
33+
```
34+
PS C:\> Grant-CsDialoutPolicy -Identity "[email protected]" -PolicyName $Null
35+
```
36+
37+
In this example, any per-user outbound calling restriction policy previously assigned to the user [email protected] is unassigned from that user; as a result, Ken Myer will be managed by the global outbound calling restriction policy. To unassign a per-user policy, set the PolicyName to a null value ($Null).
38+
39+
### -------------------------- Example 3 --------------------------
2640
```
27-
PS C:\> {{ Add example code here }}
41+
PS C:\> Get-CsOnlineUser | Grant-CsDialoutPolicy -PolicyName "DialoutCPCInternationalPSTNDisabled"
2842
```
2943

30-
{{ Add example description here }}
44+
This example assigns the per-user outbound calling restriction policy DialoutCPCInternationalPSTNDisabled to all the users in your organization.
3145

3246
## PARAMETERS
3347

@@ -48,10 +62,10 @@ Accept wildcard characters: False
4862
```
4963
5064
### -DomainController
51-
{{Fill DomainController Description}}
65+
This parameter is reserved for internal Microsoft use.
5266
5367
```yaml
54-
Type: Object
68+
Type: Fqdn
5569
Parameter Sets: (All)
5670
Aliases:
5771
Applicable: Skype for Business Online
@@ -64,10 +78,10 @@ Accept wildcard characters: False
6478
```
6579
6680
### -Identity
67-
{{Fill Identity Description}}
81+
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.
6882
6983
```yaml
70-
Type: Object
84+
Type: UserIdParameter
7185
Parameter Sets: (All)
7286
Aliases:
7387
Applicable: Skype for Business Online
@@ -80,7 +94,7 @@ Accept wildcard characters: False
8094
```
8195
8296
### -PassThru
83-
{{Fill PassThru Description}}
97+
Returns the results of the command. By default, this cmdlet does not generate any output.
8498
8599
```yaml
86100
Type: SwitchParameter
@@ -96,10 +110,12 @@ Accept wildcard characters: False
96110
```
97111
98112
### -PolicyName
99-
{{Fill PolicyName Description}}
113+
"Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:RedmondPolicy has a PolicyName equal to RedmondPolicy.
114+
115+
To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null).
100116
101117
```yaml
102-
Type: Object
118+
Type: String
103119
Parameter Sets: (All)
104120
Aliases:
105121
Applicable: Skype for Business Online
@@ -112,10 +128,18 @@ Accept wildcard characters: False
112128
```
113129
114130
### -Tenant
115-
{{Fill Tenant Description}}
131+
Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example:
132+
133+
-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"
134+
135+
You can return your tenant ID by running this command:
136+
137+
Get-CsTenant | Select-Object DisplayName, TenantID
138+
139+
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.
116140
117141
```yaml
118-
Type: Object
142+
Type: Guid
119143
Parameter Sets: (All)
120144
Aliases:
121145
Applicable: Skype for Business Online
@@ -145,7 +169,11 @@ Accept wildcard characters: False
145169
```
146170
147171
### -AsJob
148-
{{Fill AsJob Description}}
172+
Indicates that this cmdlet runs as a background job.
173+
174+
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.
175+
176+
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).
149177
150178
```yaml
151179
Type: SwitchParameter
@@ -174,4 +202,4 @@ This cmdlet supports the common parameters: `-Debug, -ErrorAction, -ErrorVariabl
174202
## NOTES
175203

176204
## RELATED LINKS
177-
205+
[Get-CSOnlineDialOutPolicy](https://docs.microsoft.com/en-us/powershell/module/skype/get-csonlinedialoutpolicy?view=skype-ps)

0 commit comments

Comments
 (0)