Skip to content

Commit ffb81b2

Browse files
authored
Merge branch 'master' into patch-4
2 parents d514f4e + e79c10d commit ffb81b2

File tree

1 file changed

+13
-30
lines changed

1 file changed

+13
-30
lines changed

sharepoint/sharepoint-ps/sharepoint-online/Start-SPOUserAndContentMove.md

Lines changed: 13 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -26,39 +26,39 @@ Start-SPOUserAndContentMove [-UserPrincipalName] <String> [-DestinationDataLocat
2626

2727
## DESCRIPTION
2828

29-
In a multi-geo company, this cmdlet requires a multi-geo tenant to work, and enables the ability to move a user closer to their sites
29+
This cmdlet applies to Multi-Geo tenants and it is designed to move user profiles and their corresponding OneDrive personal sites across geo locations. These cmdlets may only be ran by a SharePoint or Global administrator, who is connected to the SharePoint administration center of the geo location where the user is currently hosted.
3030

3131
## EXAMPLES
3232

3333
### EXAMPLE 1
3434

3535
```powershell
36-
Start-SPOUserAndContentMove -UserPrincipalName [email protected] -DestinationDataLocation EUR
36+
Start-SPOUserAndContentMove -UserPrincipalName username@contoso.onmicrosoft.com -DestinationDataLocation EUR
3737
```
3838

39-
This example moves the user [email protected] from the current location, to the European location (EUR).
39+
This example moves the user username@contoso.onmicrosoft.com from their current location, to the European location (EUR).
4040

4141
### EXAMPLE 2
4242

4343
```powershell
44-
Start-SPOUserAndContentMove -UserPrincipalName [email protected] -DestinationDataLocation JPN
44+
Start-SPOUserAndContentMove -UserPrincipalName username@contoso.onmicrosoft.com -DestinationDataLocation JPN
4545
```
4646

47-
This example moves the user [email protected] from the current location, to the Japanese location (JPN).
47+
This example moves the user username@contoso.onmicrosoft.com from their current location, to the Japanese location (JPN).
4848

4949
### EXAMPLE 3
5050

5151
```powershell
52-
Start-SPOUserAndContentMove -UserPrincipalName [email protected] -DestinationDataLocation EUR -PreferredMoveBeginDate ((Get-Date).AddHours(1)) -PreferredMoveEndDate ((Get-Date).AddHour(12))
52+
Start-SPOUserAndContentMove -UserPrincipalName username@contoso.onmicrosoft.com -DestinationDataLocation EUR -PreferredMoveBeginDate ((Get-Date).AddHours(1)) -PreferredMoveEndDate ((Get-Date).AddHour(12))
5353
```
5454

55-
This example moves the user [email protected] from the current location, to the European location (EUR), preferred to start 1 hour ahead from now, until 12 hours to that relative time.
55+
This example moves the user username@contoso.onmicrosoft.com from their current location, to the European location (EUR), with a preferred start move date. Doing so is recommended for administrators who wish to plan their user moves outside business hours and on weekends.
5656

5757
## PARAMETERS
5858

5959
### -DestinationDataLocation
6060

61-
Defines the new destination of the user that you want to move.
61+
Defines the destination location where you want to move the user. Note that you may only move a user to their preferred data location. Thus before moving a user, you must change their preferred data location.
6262

6363
```yaml
6464
Type: String
@@ -75,7 +75,7 @@ Accept wildcard characters: False
7575
7676
### -Notify
7777
78-
Makes a SPO notification that the user is being move
78+
Provides an SPO notification that the user is being moved.
7979
8080
```yaml
8181
Type: String
@@ -92,7 +92,7 @@ Accept wildcard characters: False
9292
9393
### -OverwriteOdb
9494
95-
Switch parameter to Overwrite the information into the DB
95+
This parameter can be used to overrite a OneDrive in the destination location, if there is one present. This is only recommended in cases where an administrator wants to replace a OneDrive that already exists in the destination location, with the moved OneDrive.
9696
9797
```yaml
9898
Type: SwitchParameter
@@ -109,7 +109,7 @@ Accept wildcard characters: False
109109
110110
### -PreferredMoveBeginDate
111111
112-
Specifies what is the preferred Date and time to start the job
112+
Specifies what is the preferred date and time to begin the move.
113113
114114
```yaml
115115
Type: DateTime
@@ -126,7 +126,7 @@ Accept wildcard characters: False
126126
127127
### -PreferredMoveEndDate
128128
129-
Specifies what is the preferred Date and time to stop the job
129+
Specifies what is the preferred date and time to stop stop the move. Recommened when administrators are scripting large scale moves that they wish to complete within a timeframe.
130130
131131
```yaml
132132
Type: DateTime
@@ -141,23 +141,6 @@ Accept pipeline input: False
141141
Accept wildcard characters: False
142142
```
143143
144-
### -Reserved
145-
146-
This parameter will only check for reserved users to be moved near to their sites
147-
148-
```yaml
149-
Type: String
150-
Parameter Sets: (All)
151-
Aliases:
152-
Applicable: SharePoint Online
153-
154-
Required: False
155-
Position: 7
156-
Default value: None
157-
Accept pipeline input: False
158-
Accept wildcard characters: False
159-
```
160-
161144
### -UserPrincipalName
162145
163146
UserPrincipalName or UPN defined for the specific user on the SPO tenant
@@ -177,7 +160,7 @@ Accept wildcard characters: False
177160
178161
### -ValidationOnly
179162
180-
Use this parameter to validate if the user is able to be moved.
163+
Use this parameter to validate if the user is able to be moved. This parameter is recommended for any user move.
181164
182165
```yaml
183166
Type: SwitchParameter

0 commit comments

Comments
 (0)