Skip to content

Commit fa36286

Browse files
author
Chris Davis
authored
Merge branch 'master' into patch-11
2 parents fabd228 + e718eca commit fa36286

File tree

2 files changed

+21
-38
lines changed

2 files changed

+21
-38
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Start-SPOUnifiedGroupMove [-GroupAlias] <String> [-DestinationDataLocation] <Str
2424

2525
## DESCRIPTION
2626

27-
Initiates the move of an Office 365 Group to a new geo location. The administrator may set a preferred start and end time for the move, however the preferred end time is not guaranteed. The customer tenant must be multi-geo enabled.
27+
Initiates the move of an Office 365 Group site to a new geo location. The administrator may set a preferred start and end time for the move, however the preferred end time is not guaranteed. The customer tenant must be Multi-Geo enabled to use these commandlets.
2828

2929
## EXAMPLES
3030

@@ -34,13 +34,13 @@ Initiates the move of an Office 365 Group to a new geo location. The administrat
3434
Start-SPOUnifiedGroupMove -GroupAlias EUTeam -DestinationDataLocation EUR
3535
```
3636

37-
Starts the move of Office 365 Group EUTeam to the Preferred Data Location EUR (Europe).
37+
Starts the move of an Office 365 Group site with an alias EUTeam to the Preferred Data Location EUR (Europe).
3838

3939
## PARAMETERS
4040

4141
### -DestinationDataLocation
4242

43-
The destination location for the Office 365 Group move.
43+
The destination location for the Office 365 Group site move.
4444

4545
```yaml
4646
Type: String
@@ -56,7 +56,7 @@ Accept wildcard characters: False
5656
5757
### -Force
5858
59-
Force the cmdlet to run.
59+
Force the cmdlet to run. This ignores all warning blocks and validations. It is only recommended if the administrator only wishes to preserve data and is not interested in checks for applications, Business Connectivity Services, or other functionalities.
6060
6161
```yaml
6262
Type: SwitchParameter
@@ -72,7 +72,7 @@ Accept wildcard characters: False
7272
7373
### -GroupAlias
7474
75-
The alias of the Office 365 Group.
75+
The alias of the Office 365 Group attached to the site you want to move.
7676
7777
```yaml
7878
Type: String
@@ -152,7 +152,7 @@ Accept wildcard characters: False
152152
153153
### -SuppressBcsCheck
154154
155-
Suppress checking of Business Connectivity Services used with the associated Office 365 Group Team site.
155+
Suppress checking for Business Connectivity Services used with the associated Office 365 Group site.
156156
157157
```yaml
158158
Type: SwitchParameter
@@ -168,7 +168,7 @@ Accept wildcard characters: False
168168
169169
### -SuppressMarketplaceAppCheck
170170
171-
Suppress checking compatibility of marketplace SharePoint Add-ins deployed to the associated Office 365 Group Team site.
171+
Suppress checking compatibility of marketplace SharePoint Add-ins deployed to the associated Office 365 Group site.
172172
173173
```yaml
174174
Type: SwitchParameter
@@ -184,7 +184,7 @@ Accept wildcard characters: False
184184
185185
### -SuppressWorkflow2013Check
186186
187-
Suppress checking compatibility of SharePoint 2013 Workflows deployed to the associated Office 365 Group Team site.
187+
Suppress checking compatibility of SharePoint 2013 Workflows deployed to the associated Office 365 Group site.
188188
189189
```yaml
190190
Type: SwitchParameter

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)