Entra Connect deaktivieren
Entra Connect synchronisiert Benutzer zwischen dem on Premises Active Directory und Entra ID. In diesem Video erfährst du, wie man den Entra Connect deaktiviert und dadurch alle synchronisierten Objekte zu Cloud Only konvertiert.
Klappt etwas nicht?
Melde dich bei uns!
Hier findest du das Script, mit dem du den Entra Connect Sync deaktivieren kannst.
Disable-EntraConnectSync.ps1
# Install Microsoft Graph PowerShell modules
Install-Module Microsoft.Graph -Scope CurrentUser
# Connect With Hybrid Identity Administrator Account
Connect-MgGraph -scopes "Organization.ReadWrite.All,Directory.ReadWrite.All"
# Verify the current status of the DirSync Type
Get-MgOrganization | Select OnPremisesSyncEnabled
# Store the Tenant ID in a variable named organizationId
$organizationId = (Get-MgOrganization).Id
# Store the False value for the DirSyncEnabled Attribute
$params = @{
onPremisesSyncEnabled = $false
}
# Perform the update
Update-MgOrganization -OrganizationId $organizationId -BodyParameter $params
# Check that the command worked
Get-MgOrganization | Select OnPremisesSyncEnabled