Skip to content

Commit 08fd0cc

Browse files
authored
Merge branch 'master' into patch-1
2 parents 239a705 + 4a22b0e commit 08fd0cc

File tree

2 files changed

+32
-11
lines changed

2 files changed

+32
-11
lines changed

sharepoint/sharepoint-ps/sharepoint-online/Get-SPOUnifiedGroup.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.reviewer:
1414

1515
## SYNOPSIS
1616

17-
.
17+
Retrieves the Preferred Data Location for the specified Office 365 Group.
1818

1919
## SYNTAX
2020

@@ -24,23 +24,22 @@ Get-SPOUnifiedGroup [-GroupAlias] <string> [<CommonParameters>]
2424

2525
## DESCRIPTION
2626

27-
.
27+
Retrieves the Preferred Data Location (PDL) for the specified Office 365 Group. The customer tenant must be multi-geo enabled.
2828

2929
## EXAMPLES
3030

3131
### Example 1
3232

3333
```powershell
34-
Get-SPOUnifiedGroup -GroupAlias <string>
34+
Get-SPOUnifiedGroup -GroupAlias EUTeam
3535
```
36-
37-
.
36+
Returns the PDL for the Office 365 Group named 'EUTeam'.
3837

3938
## PARAMETERS
4039

4140
### -GroupAlias
4241

43-
.
42+
The alias of the Office 365 Group.
4443

4544
```yaml
4645
Type: String
@@ -59,3 +58,7 @@ Accept wildcard characters: False
5958
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/p/?LinkID=113216).
6059
6160
## NOTES
61+
62+
## RELATED LINKS
63+
64+
[Move a SharePoint site to a different geo ___location](https://docs.microsoft.com/office365/enterprise/move-sharepoint-between-geo-locations)

sharepoint/sharepoint-ps/sharepoint-online/Get-SPOUnifiedGroupMoveState.md

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.reviewer:
1414

1515
## SYNOPSIS
1616

17-
.
17+
Returns the state of an Office 365 Group move between Preferred Data Locations.
1818

1919
## SYNTAX
2020

@@ -24,23 +24,23 @@ Get-SPOUnifiedGroupMoveState [-GroupAlias] <string> [<CommonParameters>]
2424

2525
## DESCRIPTION
2626

27-
.
27+
Retrieves the state of the Office 365 Group move to the Preferred Data Location (PDL) for the specified. The customer tenant must be multi-geo enabled.
2828

2929
## EXAMPLES
3030

3131
### Example 1
3232

3333
```powershell
34-
Get-SPOUnifiedGroupMoveState -GroupAlias <string>
34+
Get-SPOUnifiedGroupMoveState -GroupAlias EUTeam
3535
```
3636

37-
.
37+
Returns the status of the move between geos for the Office 365 Group named 'EUTeam'.
3838

3939
## PARAMETERS
4040

4141
### -GroupAlias
4242

43-
.
43+
The alias of the Office 365 Group.
4444

4545
```yaml
4646
Type: String
@@ -92,4 +92,22 @@ Accept wildcard characters: False
9292

9393
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/p/?LinkID=113216).
9494

95+
## OUTPUTS
96+
97+
### System.Object
98+
99+
The move status for the Office 365 Group. Possible values are:
100+
101+
* Ready to Trigger: The move has not started.
102+
* Scheduled: The move is in queue but has not yet started.
103+
* InProgress (n/4): The move is in progress in one of the following states: Validation (1/4), Backup (2/4), Restore (3/4), Cleanup (4/4).
104+
* Success: The move has completed successfully.
105+
* Failed: The move failed.
106+
95107
## NOTES
108+
109+
You can also apply the `-Verbose` option to see additional information about the move.
110+
111+
## RELATED LINKS
112+
113+
[Move a SharePoint site to a different geo ___location](https://docs.microsoft.com/office365/enterprise/move-sharepoint-between-geo-locations)

0 commit comments

Comments
 (0)