O365: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
6vffdh (Diskussion | Beiträge) |
6vffdh (Diskussion | Beiträge) |
||
Zeile 21: | Zeile 21: | ||
: Listet Mailbox Informationen aus. | : Listet Mailbox Informationen aus. | ||
Get-Mailbox -Identity * | Get-Mailbox -Identity * | ||
+ | |||
+ | : Verbindung zum PowerShell Exchange Online | ||
+ | Connect-ExchangeOnline -UserPrincipalName support@<tenant>.onmicrosoft.com |
Version vom 8. Februar 2022, 16:23 Uhr
- Lokales AD mit Office 365 synchronisieren
- Tips 365
- How to sync on promises AD tu Azure AD with Azure AD connect
- Powershell:
- Der ActiveDirectory Admin möchte nach einer Objektänderung diese „sofort“ ins Azure AD synchronisiert wissen und nicht die üblichen 30 Minuten warten.
- To initiate a Delta Sync, open Windows PowerShell and run:
Start-ADSyncSyncCycle -PolicyType Delta
- To initiate a Full Sync, open Windows PowerShell and run:
Start-ADSyncSyncCycle -PolicyType Initial
Wählen Sie auf der Registerkarte "Konto" in der Dropdownliste des UPN-Suffixes das neue UPN-Suffix aus.
$LocalUsers = Get-ADUser -Filter "UserPrincipalName -like '*contoso.local'" -Properties userPrincipalName -ResultSetSize $null $LocalUsers | foreach {$newUpn = $_.UserPrincipalName.Replace("@contoso.local","@contoso.com"); $_ | Set-ADUser -UserPrincipalName $newUpn}
- Listet Mailbox Informationen aus.
Get-Mailbox -Identity *
- Verbindung zum PowerShell Exchange Online
Connect-ExchangeOnline -UserPrincipalName support@<tenant>.onmicrosoft.com