Skip to content

Commit b49ed36

Browse files
(Azure CXP) Fixes wrong formatting
Updated line 56 - 72 from #### EXAMPLE 1 ``` Find objects with disabled inheritance in 'Contoso' domain (by default returns 'organizationalUnit' objects only) ``` Get-ADSyncObjectsWithInheritanceDisabled -SearchBase 'Contoso' #### EXAMPLE 2 ``` Find 'user' objects with disabled inheritance in 'Contoso' domain ``` Get-ADSyncObjectsWithInheritanceDisabled -SearchBase 'Contoso' -ObjectClass 'user' #### EXAMPLE 3 ``` Find all types of objects with disabled inheritance in a OU ``` Get-ADSyncObjectsWithInheritanceDisabled -SearchBase OU=AzureAD,DC=Contoso,DC=com -ObjectClass '*' to #### EXAMPLE 1 Find objects with disabled inheritance in 'Contoso' domain (by default returns 'organizationalUnit' objects only) ``` Get-ADSyncObjectsWithInheritanceDisabled -SearchBase 'Contoso' ``` #### EXAMPLE 2 Find 'user' objects with disabled inheritance in 'Contoso' domain ``` Get-ADSyncObjectsWithInheritanceDisabled -SearchBase 'Contoso' -ObjectClass 'user' ``` #### EXAMPLE 3 Find all types of objects with disabled inheritance in a OU ``` Get-ADSyncObjectsWithInheritanceDisabled -SearchBase OU=AzureAD,DC=Contoso,DC=com -ObjectClass '*' ``` This is as per MicrosoftDocs/azure-docs#54415 ------- cc: @billmath
1 parent 2f7cef6 commit b49ed36

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

articles/active-directory/hybrid/reference-connect-adsyncconfig.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,25 +54,24 @@ Searches in AD starting from the SearchBase parameter and returns all objects, f
5454
### EXAMPLES
5555

5656
#### EXAMPLE 1
57-
```
5857
Find objects with disabled inheritance in 'Contoso' domain (by default returns 'organizationalUnit' objects only)
5958
```
60-
6159
Get-ADSyncObjectsWithInheritanceDisabled -SearchBase 'Contoso'
60+
```
6261

6362
#### EXAMPLE 2
64-
```
6563
Find 'user' objects with disabled inheritance in 'Contoso' domain
6664
```
67-
6865
Get-ADSyncObjectsWithInheritanceDisabled -SearchBase 'Contoso' -ObjectClass 'user'
66+
```
6967

7068
#### EXAMPLE 3
71-
```
7269
Find all types of objects with disabled inheritance in a OU
7370
```
74-
7571
Get-ADSyncObjectsWithInheritanceDisabled -SearchBase OU=AzureAD,DC=Contoso,DC=com -ObjectClass '*'
72+
```
73+
74+
7675

7776
### PARAMETERS
7877

0 commit comments

Comments
 (0)