Skip to content

Commit 495a68e

Browse files
authored
Merge pull request #7305 from get-itips/patch-322
Updating with new param names
2 parents 918e431 + dd6abbe commit 495a68e

File tree

1 file changed

+70
-8
lines changed

1 file changed

+70
-8
lines changed

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

Lines changed: 70 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,18 @@ Start a job to move a particular user or group of users to be moved across geo l
2121
### UrlAndDestinationDataLocation
2222

2323
```powershell
24-
Start-SPOSiteContentMove [-Url] <String> [-DestinationDataLocation] <String>
24+
Start-SPOSiteContentMove [-SourceSiteUrl] <String> [-DestinationDataLocation] <String>
2525
[[-PreferredMoveBeginDate] <DateTime>] [[-PreferredMoveEndDate] <DateTime>] [[-Reserved] <String>]
26-
[-ValidationOnly] [<CommonParameters>]
26+
[-ValidationOnly] [-SuppressMarketplaceAppCheck] [-SuppressWorkflow2013Check] [-SuppressAllWarnings]
27+
[-SuppressBcsCheck][<CommonParameters>]
2728
```
2829

2930
### UrlAndDestinationUrl
3031

3132
```powershell
32-
Start-SPOSiteContentMove [-Url] <String> [-DestinationUrl] <String> [[-PreferredMoveBeginDate] <DateTime>]
33-
[[-PreferredMoveEndDate] <DateTime>] [[-Reserved] <String>] [-ValidationOnly] [<CommonParameters>]
33+
Start-SPOSiteContentMove [-SourceSiteUrl] <String> [-DestinationUrl] <String> [[-PreferredMoveBeginDate] <DateTime>]
34+
[[-PreferredMoveEndDate] <DateTime>] [[-Reserved] <String>] [-ValidationOnly] [-SuppressMarketplaceAppCheck] [-SuppressWorkflow2013Check]
35+
[-SuppressAllWarnings] [-SuppressBcsCheck] [<CommonParameters>]
3436
```
3537

3638
## DESCRIPTION
@@ -44,23 +46,23 @@ UrlAndDestinationUrl: These parameters allow a SharePoint administrator to move
4446
### EXAMPLE 1
4547

4648
```powershell
47-
Start-SPOSiteContentMove -Url https://contosoenergy.sharepoint.com/sites/hr -DestinationDataLocation EUR
49+
Start-SPOSiteContentMove -SourceSiteUrl https://contosoenergy.sharepoint.com/sites/hr -DestinationDataLocation EUR
4850
```
4951

5052
Starts the movement of the content on <https://contosoenergy.sharepoint.com/sites/hr> to the EUR destination.
5153

5254
### EXAMPLE 2
5355

5456
```powershell
55-
Start-SPOSiteContentMove -Url https://contosoenergy.sharepoint.com/sites/hr -DestinationDataLocation EUR -PreferredMoveBeginDate ((Get-Date).AddHours(1)) -PreferredMoveEndDate ((Get-Date).AddHour(12))
57+
Start-SPOSiteContentMove -SourceSiteUrl https://contosoenergy.sharepoint.com/sites/hr -DestinationDataLocation EUR -PreferredMoveBeginDate ((Get-Date).AddHours(1)) -PreferredMoveEndDate ((Get-Date).AddHour(12))
5658
```
5759

5860
Starts a site geo move for <https://contosoenergy.sharepoint.com/sites/hr> to the EUR destination with a preffered start time window of 1 to 12 hours from the move schedule operation.
5961

6062
### EXAMPLE 3
6163

6264
```powershell
63-
Start-SPOSiteContentMove -Url https://contosoenergy.sharepoint.com/sites/hr -DestinationUrl https://contosoenergyEUR.sharepoint.com/sites/hrEU -DestinationDataLocation EUR
65+
Start-SPOSiteContentMove -SourceSiteUrl https://contosoenergy.sharepoint.com/sites/hr -DestinationUrl https://contosoenergyEUR.sharepoint.com/sites/hrEU
6466
```
6567

6668
Starts a site geo move for <https://contosoenergy.sharepoint.com/sites/hr> and allows site rename to <https://contosoenergyEUR.sharepoint.com/sites/hrEU> as part of the geo move operation.
@@ -148,7 +150,7 @@ Accept pipeline input: False
148150
Accept wildcard characters: False
149151
```
150152
151-
### -Url
153+
### -SourceSiteUrl
152154
153155
Specifies the source URL of the site collection you want to move.
154156
@@ -180,6 +182,66 @@ Accept pipeline input: False
180182
Accept wildcard characters: False
181183
```
182184
185+
### -SuppressAllWarnings
186+
Suppress all warning messages.
187+
188+
```yaml
189+
Type: SwitchParameter
190+
Parameter Sets: (All)
191+
Aliases:
192+
193+
Required: False
194+
Position: 9
195+
Default value: None
196+
Accept pipeline input: False
197+
Accept wildcard characters: False
198+
```
199+
200+
### -SuppressBcsCheck
201+
Suppress checking for Business Connectivity Services used with the associated site.
202+
203+
```yaml
204+
Type: SwitchParameter
205+
Parameter Sets: (All)
206+
Aliases:
207+
208+
Required: False
209+
Position: 10
210+
Default value: None
211+
Accept pipeline input: False
212+
Accept wildcard characters: False
213+
```
214+
215+
### -SuppressMarketplaceAppCheck
216+
Suppress checking compatibility of marketplace SharePoint Add-ins deployed to the associated site.
217+
218+
```yaml
219+
Type: SwitchParameter
220+
Parameter Sets: (All)
221+
Aliases:
222+
223+
Required: False
224+
Position: 7
225+
Default value: None
226+
Accept pipeline input: False
227+
Accept wildcard characters: False
228+
```
229+
230+
### -SuppressWorkflow2013Check
231+
Suppress checking compatibility of SharePoint 2013 Workflows deployed to the associated site.
232+
233+
```yaml
234+
Type: SwitchParameter
235+
Parameter Sets: (All)
236+
Aliases:
237+
238+
Required: False
239+
Position: 8
240+
Default value: None
241+
Accept pipeline input: False
242+
Accept wildcard characters: False
243+
```
244+
183245
### CommonParameters
184246
185247
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).

0 commit comments

Comments
 (0)