File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
articles/active-directory/hybrid/connect Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -103,10 +103,10 @@ If you need to match on-premises AD accounts with existing accounts created in t
103
103
This feature is on by default for newly created Azure AD directories. You can see if this feature is enabled for you by running:
104
104
105
105
``` powershell
106
- # Using the MSOnline module
106
+ ## Using the MSOnline module
107
107
Get-MsolDirSyncFeatures -Feature EnableSoftMatchOnUpn
108
108
109
- # Using the Graph Powershell module
109
+ ## Using the Graph Powershell module
110
110
$Config = Get-MgDirectoryOnPremisSynchronization
111
111
$Config.Features.SoftMatchOnUpnEnabled
112
112
```
@@ -142,10 +142,10 @@ Enabling this feature allows the sync engine to update the userPrincipalName whe
142
142
This feature is on by default for newly created Azure AD directories. You can see if this feature is enabled for you by running:
143
143
144
144
``` powershell
145
- # Using the MSOnline module
145
+ ## Using the MSOnline module
146
146
Get-MsolDirSyncFeatures -Feature SynchronizeUpnForManagedUsers
147
147
148
- # Using the Graph Powershell module
148
+ ## Using the Graph Powershell module
149
149
$config = Get-MgDirectoryOnPremisSynchronization
150
150
$config.Features.SynchronizeUpnForManagedUsersEnabled
151
151
```
You can’t perform that action at this time.
0 commit comments