Skip to content

Commit a00ca2d

Browse files
committed
Update Set-MsolAdministrativeUnit.md and Get-MsolAdministrativeUnitMember.md
fix some spelling errors
1 parent 4d10661 commit a00ca2d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

azureadps-1.0/MSOnline/Get-MsolAdministrativeUnitMember.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ The **Get-MsolAdministrativeUnitMember** cmdlet gets members of an administrativ
3434
### Example 1: Get members of an administrative unit
3535

3636
```
37-
PS C:\> $AdminstrativeUnit = Get-MsolAdministrativeUnit -SearchString "West Coast"
37+
PS C:\> $AdministrativeUnit = Get-MsolAdministrativeUnit -SearchString "West Coast"
3838
PS C:\> Get-MsolAdministrativeUnitMember -AdministrativeUnitObjectId $AdminstrativeUnit.ObjectId
3939
```
4040

4141
The first command gets an administrative unit that matches a search string by using the [Get-MsolAdministrativeUnit](./Get-MsolAdministrativeUnit.md) cmdlet.
42-
The command stores the administrative unit in the $AdminstrativeUnit variable.
42+
The command stores the administrative unit in the $AdministrativeUnit variable.
4343

44-
The second command returns all members of the administrative unit in $AdminstrativeUnit.
44+
The second command returns all members of the administrative unit in $AdministrativeUnit.
4545

4646
## PARAMETERS
4747

azureadps-1.0/MSOnline/Set-MsolAdministrativeUnit.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ The **Set-MsolAdministrativeUnit** cmdlet updates the properties of an administr
2727
### Example 1: Modify a description of an administrative unit
2828

2929
```
30-
PS C:\> $AdminstrativeUnit = Get-MsolAdministrativeUnit -SearchString "West Coast"
31-
PS C:\> Set-MsolAdministrativeUnit -Description "West Coast region" -ObjectID $AdminstrativeUnit.ObjectId
30+
PS C:\> $AdministrativeUnit = Get-MsolAdministrativeUnit -SearchString "West Coast"
31+
PS C:\> Set-MsolAdministrativeUnit -Description "West Coast region" -ObjectID $AdministrativeUnit.ObjectId
3232
```
3333

3434
The first command gets an administrative unit that matches a search string by using the [Get-MsolAdministrativeUnit](./Get-MsolAdministrativeUnit.md) cmdlet.
35-
The command stores the administrative unit in the $AdminstrativeUnit variable.
35+
The command stores the administrative unit in the $AdministrativeUnit variable.
3636

3737
The second command assigns the description value of West Coast region.
38-
The command specifies the administrative unit by using the object ID of $AdminstrativeUnit.
38+
The command specifies the administrative unit by using the object ID of $AdministrativeUnit.
3939

4040
## PARAMETERS
4141

0 commit comments

Comments
 (0)