Office 365 für Bildungseinrichtungen
Office365 für Bildungseinrichtungen
Gerade wollte ich einen Artikel zu diesem Thema schreiben, das erhalte ich den Hinweis, dass auf ictschule.wordpress.com genau dieses Problem behandelt wird. Danke Chrisitian für den Artikel.
Azure Active Directory Synchronization Services or AAD Sync is the new synchronization service that will allow customers to do the following:
- Synchronize multi-forest Active Directory environments without needing the full blown features of Forefront Identity Manager 2010 R2.
- Advanced provisioning, mapping and filtering rules for objects and attributes, including support for syncing a very minimal set of user attributes (only 7!)
- Configuring multiple on-premises Exchange organizations to map to a single AAD tenant
Quelle: MSDN Microsoft
Quelle: http://blogs.office.com/2014/11/18/introducing-office-365-video/
Für Lync online sind vom Provider folgende DNS Enträge zu setzen:
SRV Einträge
Type | Service | Protocol | Port | Weight | Priority | TTL | Name | Target |
SRV | _sip | _tls | 443 | 1 | 100 | 1 h | <DomainName> | sipdir.online.lync.com |
SRV | _sipfederationtls | _tcp | 5061 | 1 | 100 | 1 h | <DomainName> | sipfed.online.lync.com |
CNAME Einträge
Type | Host Name | Destination | TTL |
CNAME | sip.<DomainName> | sipdir.online.lync.com | 1 h |
CNAME | lyncdiscover.<DomainName> | webdir.online.lync.com | 1 h |
Auf dem Technet Team Blog Austria gibt es einen guten Artikel von Martina Grom, der sehr hilfreich sein kann, wenn ein Provider in seiner Eingabemaske nicht alle Felder verfügbar hat.
Bei meinem Provider sieht die Maske so aus:
Name: _sip._tls
TTL: 1 h
Priorität: 100
Wert: 1 443 sipdir.online.lync.com.
und
Name: _sipfederationtls._tcp
TTL: 1 h
Priorität: 100
Wert: 1 5061 sipfed.online.lync.com.
Die folgende Vorgangsweise funktioniert nur, wenn die Benutzer nicht über die Active Directory Synchronisation (Dirsync) angelegt wurden.
Mit Office 365 über Windows PowerShell verbinden:
Connect-MsolService
- Um das Ablaufen des Kennwort für einen bestimmten Benutzer abzuschalten, folgenden Befehl ausführen:
Set-MsolUser -UserPrincipalName <user ID> -PasswordNeverExpires $true
- Um das Ablaufen des Kennwort für alle Benutzer abzuschalten, folgenden Befehl ausführen:
Get-MSOLUser | Set-MsolUser -PasswordNeverExpires $true
Möchte man überprüfen, für welche Benutzer das Ablaufen der Kennwörter ausgeschalten ist, folgenden Befehl ausführen:
Connect-MsolService
Get-MSOLUser | Select UserPrincipalName, PasswordNeverExpires
- oder für einen bestimmten Benutzer
- Get-MSOLUser -UserPrincipalName <user ID> | Select PasswordNeverExpires
Author: Suzanne Girardot, Office 365 writer
If you're an Office 365 admin, you can now reset your own password without having to submit a service request. You can ask another admin to reset your password, but when you're the only admin in your organization, or no other admin is available, you can reset your own password.
On the Office 365 sign-in page, click Forgot your password? and follow the instructions.
To reset your own password, you must have already provided an alternate email address and mobile phone number that can receive text messages. For instructions on how to add this information to your user account, see Create or edit users. Note: You need a mobile phone that can receive text messages for password reset only if one or both of the following applies to you:
- Your organization has a custom domain that you’ve set up to use with Office 365.
- Your Office 365 account is synchronized through directory synchronization.
You can get more information about resetting your admin password in Reset your administrator password.
If this doesn’t work to reset your password, submit a password reset request via our New Service Request wizard.