Skip to content

Commit f7af276

Browse files
authored
Update Get-CsMeetingMigrationStatus.md
1 parent f9eeb6e commit f7af276

File tree

1 file changed

+42
-17
lines changed

1 file changed

+42
-17
lines changed

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

Lines changed: 42 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ You use the `Get-CsMeetingMigrationStatus` cmdlet to check the status of meeting
1212

1313
## SYNTAX
1414
```
15-
Get-CsMeetingMigrationStatus [[-Identity] <Object>] [-Confirm] [-EndTime <Object>] [-StartTime <Object>]
16-
[-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 <Object>] [<CommonParameters>]
1717
```
1818

1919
## DESCRIPTION
@@ -23,19 +23,26 @@ Provide the detailed description here.
2323

2424
### -------------------------- Example 1 --------------------------
2525
```
26-
Insert example commands for example 1.
26+
Get-CsMeetingMigrationStatus -SummaryOnly
2727
```
2828

29-
Insert descriptive text for example 1.
29+
This example is used to get a summary status of all MMS migrations.
30+
31+
### -------------------------- Example 2 --------------------------
32+
```
33+
Get-CsMeetingMigrationStatus -UserId "[email protected]"
34+
```
35+
36+
This example get the meeting migration status for user [email protected].
3037

3138

3239
## PARAMETERS
3340

3441
### -Identity
35-
PARAMVALUE: UserIdParameter
42+
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.
3643

3744
```yaml
38-
Type: Object
45+
Type: UserIdParameter
3946
Parameter Sets: (All)
4047
Aliases:
4148
Applicable: Skype for Business Online
@@ -48,7 +55,7 @@ Accept wildcard characters: False
4855
```
4956
5057
### -Confirm
51-
PARAMVALUE: SwitchParameter
58+
The Confirm switch causes the command to pause processing and requires confirmation to proceed.
5259
5360
```yaml
5461
Type: SwitchParameter
@@ -63,8 +70,8 @@ Accept pipeline input: False
6370
Accept wildcard characters: False
6471
```
6572
66-
### -EndTime
67-
PARAMVALUE: DateTime
73+
### -StartTime
74+
Specifies the start date of the date range.
6875
6976
```yaml
7077
Type: Object
@@ -79,8 +86,8 @@ Accept pipeline input: False
7986
Accept wildcard characters: False
8087
```
8188
82-
### -StartTime
83-
PARAMVALUE: DateTime
89+
### -EndTime
90+
Specifies the end date of the date range.
8491
8592
```yaml
8693
Type: Object
@@ -96,7 +103,7 @@ Accept wildcard characters: False
96103
```
97104
98105
### -SummaryOnly
99-
PARAMVALUE: SwitchParameter
106+
Specified that you want a summary status of MMS migrations returned.
100107
101108
```yaml
102109
Type: SwitchParameter
@@ -112,10 +119,18 @@ Accept wildcard characters: False
112119
```
113120
114121
### -Tenant
115-
PARAMVALUE: Guid
122+
Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example:
123+
124+
-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"
125+
126+
You can return your tenant ID by running this command:
127+
128+
Get-CsTenant | Select-Object DisplayName, TenantID
129+
130+
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.
116131
117132
```yaml
118-
Type: Object
133+
Type: Guid
119134
Parameter Sets: (All)
120135
Aliases:
121136
Applicable: Skype for Business Online
@@ -128,7 +143,7 @@ Accept wildcard characters: False
128143
```
129144
130145
### -WhatIf
131-
PARAMVALUE: SwitchParameter
146+
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.
132147
133148
```yaml
134149
Type: SwitchParameter
@@ -144,7 +159,11 @@ Accept wildcard characters: False
144159
```
145160
146161
### -AsJob
147-
{{Fill AsJob Description}}
162+
Indicates that this cmdlet runs as a background job.
163+
164+
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.
165+
166+
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).
148167
149168
```yaml
150169
Type: SwitchParameter
@@ -160,7 +179,11 @@ Accept wildcard characters: False
160179
```
161180
162181
### -State
163-
{{Fill State Description}}
182+
With this parameter you can filter by migration state. Possible values are:
183+
* Pending
184+
* InProgress
185+
* Failed
186+
* Succeeded
164187
165188
```yaml
166189
Type: Object
@@ -185,4 +208,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
185208
## NOTES
186209
187210
## RELATED LINKS
211+
[Get-CsTenantMigrationConfiguration](https://docs.microsoft.com/en-us/powershell/module/skype/get-cstenantmigrationconfiguration?view=skype-ps)
188212
213+
[Get-CsOnlineDialInConferencingTenantSettings](https://docs.microsoft.com/en-us/powershell/module/skype/get-csonlinedialinconferencingtenantsettings?view=skype-ps)

0 commit comments

Comments
 (0)