Use Azure AD app principal without user context Monday, August 21, 2017 1:41 PM js For an application registered in AAD to be able to run in application context only without a user context the "Company Administrator" role has to be assigned to the application in order to be able to access administrator endpoints for APIs like the Microsoft Graph. No additional permissions have to be assigned to the application after assigning this role.The assignment has to be done using PowerShell and looks like this: (the app registration has to be done beforehand)Install-Module AzureADConnect-AzureAD$app = Get-AzureADServicePrincipal -SearchString "your app name"$role = Get-AzureADDirectoryRole | Where-Object { $_.DisplayName -eq "Company Administrator" }Add-AzureADDirectoryRoleMember -ObjectId $role.ObjectId -RefObjectId $app.ObjectIdNote that you have to replace the string "your app name" with the name provided to your app registration. The script intalls (if not already installed) the AzureAD PowerShell module and uses the contained commandlets to get the service principal of the app registration by name, gets the Azure AD Directory Role "Company Administrator" and adds this role to the service principal of the app. After the role has been added, the app might, e.g., make queries to the user endpoint of the Microsoft Graph API to get properties from any users in the AAD. Azure | Microsoft | Office365 | PowerShell | Security Mediumlink | Permalink | Comments (0) | Post RSS mehr
Why we moved away from Exchange distribution groups to Office 365 groups Sunday, July 23, 2017 8:22 PM Martina Grom A very simple use case let us give up our Distribution lists. This article discusses why and how we did it and delivers tips how to improve your experience with Office 365 groups.How can you replace old” distribution groups from a synced environment with new” Office 365 groups? And how to add, delete or modify email addresses to an Office 365 group? This article shows the steps. Cloud | English | Microsoft | Office365 | PowerShell | Exchange Mediumlink | Permalink | Comments (0) | Post RSS mehr
Adding Send as permissions to an Office 365 Group with PowerShell Wednesday, June 14, 2017 9:40 AM Martina Grom Office 365 Groups provide a bunch of useful features for collaboration. In some cases, users want to send emails from an Office 365 group as sender. Here’s the HowTo” to accomplish SendAs” permissions to an Office 365 group for users. Cloud | English | Microsoft | Office | Office365 | PowerShell | SharePoint | Exchange Mediumlink | Permalink | Comments (2) | Post RSS mehr
Restrict Office 365 Groups and Microsoft Teams creation in organizations Sunday, March 19, 2017 9:40 PM Martina Grom In Office 365, it’s possible to define that just specific users are able to create Office 365 groups. if you set such a policy, does this also affect the creation of Microsoft teams? Well, see the answer here! Azure | Cloud | English | Microsoft | Office | Office365 | PowerShell | Security Mediumlink | Permalink | Comments (1) | Post RSS mehr
Working With Office 365 Groups And Connectors article series at MVP Award Blog Thursday, February 2, 2017 7:00 AM Toni Pohl Recently, the Microsoft MVP Award Program Blog published my three-part series about Working With Office 365 Groups And Connectors”. Read the articles online in the MVP blog here. General | App | Azure | Blog | Cloud | Developer | English | Exchange | Microsoft | MVP | Office | Office365 | PowerShell | Visual Studio | atwork | Social Mediumlink | Permalink | Comments (0) | Post RSS mehr
Gain access as delegated partner to another Office365 tenant with PowerShell Wednesday, January 11, 2017 6:00 AM Toni Pohl The goal was administer an Office365 tenant as delegated partner. But, currently I had difficulties to access another Office365 tenant in the Microsoft Partner Portal. When selecting a partner and opening the Office 365 admin center, not the partner tenant was opened but instead my own tenant. I didn’t figure out why this no longer was working. Anyway, I tried to use PowerShell instead… Cloud | English | Microsoft | Office365 | PowerShell Mediumlink | Permalink | Comments (1) | Post RSS mehr
Azure Active Directory PowerShell Module V2 is available Wednesday, December 21, 2016 10:00 AM Toni Pohl Today, just a short info for Azure Active Directory guys: #AzureAD PowerShell V2.0 is now GA! Azure | Cloud | Developer | English | Microsoft | Office365 | PowerShell Mediumlink | Permalink | Comments (0) | Post RSS mehr
PowerShell, welcome to Linux! Friday, August 19, 2016 9:40 PM Toni Pohl As Jeffrey Snover, Technical Fellow at Microsoft Enterprise Cloud Group, announced recently, PowerShell is open sourced and is available on Linux! Blog | English | Microsoft | Open Source | PowerShell Mediumlink | Permalink | Comments (0) | Post RSS mehr
MailTips in Exchange Online nutzen um sicherer zu kommunizieren Monday, August 1, 2016 7:00 AM Martina Grom MailTips in Exchange Online können für unterschiedliche Dinge verwendet werden: gibt es eine DLP Policy, die den Benutzer warnt, bevor er sicherheitsrelevante Nachrichten versendet oder dies sogar verhindert oder auch einfache MailTips, die vor allem dazu dienen sollen, den Nachrichtenverlauf zu verbessern. Beispielsweise könnte ein MailTip dazu dienen den Absender zu informieren, dass er gerade an eine Verteilerliste mit mehr as 25 Empfängern sendet. Cloud | Exchange | Office365 | PowerShell Mediumlink | Permalink | Comments (0) | Post RSS mehr
Skype for Business Policies im Griff haben-Teil 1 Monday, July 25, 2016 7:38 AM Martina Grom Skype for Business Online ist ein wichtiges Service von Office 365 mit dem professionelle Teamarbeit und Online Besprechungen sowie Web-und Videokonferenzen möglich sind. Im Unternehmensumfeld müssen die Berechtigungen und Features gut geplant werden, sehr oft werden dort andere Anforderungen an eine Implementierung gesetzt, als in der Standardkonfiguration vorgesehen sind. Wie man dennoch zur passenden Policy kommt, darum geht es in dierser Artikelserie. Cloud | Office365 | PowerShell | Skype Mediumlink | Permalink | Comments (0) | Post RSS mehr
Raise user awareness with a MailTip for external recipients in Exchange Online Sunday, July 24, 2016 9:50 PM Martina Grom Policy tips in Exchange Online can be used for a lot of things: warnings if a user sends confidential information to someone outside the organization if a proper DLP policy is in place or other useful things. One simple and effective MailTip is available for a while now and helps to raise user awareness in writing e-mails. Exchange | PowerShell | Office365 | English Mediumlink | Permalink | Comments (0) | Post RSS mehr
Adresslisten in Exchange Online aktualisieren Wednesday, June 29, 2016 7:00 AM Martina Grom Kürzlich bin ich über ein Thema bei der Aktualisierung von Adresslisten in Office 365/Exchange Online gestolpert und möchte hier darüber berichten. Die Kurzfassung ist, dass existierende Mitglieder in Adresslisten nicht angezeigt werden. Mehr dazu hier! Cloud | Health | Office365 | PowerShell Mediumlink | Permalink | Comments (0) | Post RSS mehr