Skip to content

Commit b9dc503

Browse files
authored
Merge branch 'master' into chrisda
2 parents 2c6a424 + ca16940 commit b9dc503

File tree

1 file changed

+40
-1
lines changed

1 file changed

+40
-1
lines changed

exchange/exchange-ps/exchange/Get-MigrationUser.md

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,15 @@ Get-MigrationUser [[-Identity] <MigrationUserIdParameter>]
4949
[<CommonParameters>]
5050
```
5151

52+
### EmailAddress
53+
```
54+
Get-MigrationUser -EmailAddress <SmtpAddress>
55+
[-DomainController <Fqdn>]
56+
[-ResultSize <Unlimited>]
57+
[-Partition <MailboxIdParameter>]
58+
[<CommonParameters>]
59+
```
60+
5261
## DESCRIPTION
5362
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see [Find the permissions required to run any Exchange cmdlet](https://docs.microsoft.com/powershell/exchange/find-exchange-cmdlet-permissions).
5463

@@ -68,6 +77,20 @@ Get-MigrationUser -MailboxGuid b6a6795c-a010-4f67-aaaa-da372d56fcb9 | Get-Migrat
6877

6978
This example retrieves more detailed information about any ongoing migration for the user with the specified mailbox GUID.
7079

80+
### Example 3
81+
```powershell
82+
Get-MigrationUser -EmailAddress [email protected]
83+
```
84+
85+
This example retrieves status information about the recently migrated user, Tony Smith.
86+
87+
### Example 4
88+
```powershell
89+
Get-MigrationUser -EmailAddress [email protected] | Get-MigrationUserStatistics
90+
```
91+
92+
This example retrieves more detailed information about any ongoing migration for the user with the specified email address.
93+
7194
## PARAMETERS
7295

7396
### -MailboxGuid
@@ -121,7 +144,7 @@ Accept wildcard characters: False
121144
```
122145
123146
### -Identity
124-
The Identity parameter specifies the particular user that you want to retrieve information about. The Identity parameter is represented as an email address.
147+
The Identity parameter specifies the particular ongoing migration that you want to retrieve information about. The Identity parameter is usually represented as an email address.
125148
126149
```yaml
127150
Type: MigrationUserIdParameter
@@ -136,6 +159,22 @@ Accept pipeline input: True
136159
Accept wildcard characters: False
137160
```
138161
162+
### -EmailAddress
163+
The EmailAddress parameter specifies the particular user that you want to retrieve information about. The EmailAddress parameter is represented as an email address. This parameter is available only in the cloud-based service.
164+
165+
```yaml
166+
Type: EmailAddress
167+
Parameter Sets: EmailAddress
168+
Aliases:
169+
Applicable: Exchange Online
170+
171+
Required: True
172+
Position: Named
173+
Default value: None
174+
Accept pipeline input: False
175+
Accept wildcard characters: False
176+
```
177+
139178
### -Partition
140179
This parameter is available only in the cloud-based service.
141180

0 commit comments

Comments
 (0)