Skip to content

Commit 6e708de

Browse files
authored
Merge pull request MicrosoftDocs#4390 from get-itips/patch-113
Corrected examples
2 parents 424bae0 + ac9ffac commit 6e708de

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,21 +44,21 @@ This command starts the information and the status of a move request of a user b
4444

4545
### EXAMPLE 1
4646
```powershell
47-
Start-SPOSiteContentMove -Url $url -DestinationDataLocation $DestLocation -PreferredMoveBeginDate ((Get-Date).AddHours(1)) -PreferredMoveEndDate ((Get-Date).AddHour(12))
47+
Start-SPOSiteContentMove -Url https://contosoenergy.sharepoint.com/sites/hr -DestinationDataLocation EUR -PreferredMoveBeginDate ((Get-Date).AddHours(1)) -PreferredMoveEndDate ((Get-Date).AddHour(12))
4848
```
49-
Starts the movement of the content on $url to the destination defined on $DestLocation variable preferred to start 1 hour ahead from now, until 12 hours to that relative time.
49+
Starts the movement of the content on https://contosoenergy.sharepoint.com/sites/hr to the EUR destination preferred to start 1 hour ahead from now, until 12 hours to that relative time.
5050

5151
### EXAMPLE 2
5252
```powershell
53-
Start-SPOSiteContentMove -GroupName [email protected] -DestinationDataLocation $destlocation
53+
Start-SPOSiteContentMove -GroupName [email protected] -DestinationDataLocation JPN
5454
```
55-
Starts the movement of a group of users called [email protected] to the destination location called $destlocation
55+
Starts the movement of a group of users called [email protected] to the JPN location
5656

5757
### EXAMPLE 3
5858
```powershell
59-
Start-SPOSiteContentMove -Url $url -DestinationUrl $destlocation
59+
Start-SPOSiteContentMove -Url https://contosoenergy.sharepoint.com/sites/hr -DestinationUrl https://contosoenergyEUR.sharepoint.com/sites/hr
6060
```
61-
Starts the movement from a $url and set it to the location defined on $destlocation
61+
Starts the movement from https://contosoenergy.sharepoint.com/sites/hr and set it to the location https://contosoenergyEUR.sharepoint.com/sites/hr
6262

6363

6464
## PARAMETERS

0 commit comments

Comments
 (0)