blog.atwork.at

news and know-how about microsoft, technology, cloud and more.

Groups Governance Toolkit Part 6-Groups statistics

To apply governance in an organization, the responsible persons require data. See here, how we can get group data of an Office 365 tenant for further use, for example for a visualization with Microsoft Power BI and all the benefits of such an attractive and interactive tool.

Groups Governance Toolkit Part 5-External Guests

Governance specifies the rules for an organization. The Office 365 collaboration platform allows to invite external users for contributing in groups. In this part, we want to monitor all groups that have external guests and inform the group owners, who has access to a group or a team. See how this works here.

Secure a web on Azure with an Azure Active Directory Multi-Tenant App

Azure offers a great platform for multiple types of apps and services, Web Apps are one of the PaaS service, we are using much. In some scenarios, it makes sense to host a static website on Azure, but to restrict access just for authenticated users. Well, AAD can help you with that by demanding a successful login with an Office 365 account. See how this works here.

Working with the new Azure PowerShell Az module

PowerShell is both a command-line shell and scripting language and perfect for automating administrative tasks. When working with Microsoft Azure, Microsoft recommends to use the new Azure PowerShell Az module. See how to uninstall the outdated Azure PowerShell AzureRM , how to install the new Az module for PowerShell 5.x and 6.x and how to connect and to get a inventory of your resources and a little bit of Cloud Shell here.

Detect sentiment with Text Analytics

Azure Cognitive Services offer a bunch of services. One is the Sentiment Analysis API that allows to analyze unstructured text for tasks such as sentiment analysis based on Microsoft machine learning algorithms. See the first steps how to use that here.The test works in the same way with Postman as in the previous article.The goal here is to analyze some text to get a positive or negative result of the meaning.So, we just need some Azure logic and a tool to send and get the data. How to detect sentiment with Text Analytics informs about the service we want to consume. Again, we need to create a new Cognitive Service and to get our own access data from the Azure Portal. Once created, we get that data in the service overview and in the keys menu.Then, calling the Computer Vision API is easy: We need a HTTP POST request against the API and modify just the region and the subscription key.https://<region>.api.cognitive.microsoft.com/analytics/v2.0/sentiment?subscription-key=<subscription-key>So, my sample starts with https://westeurope.api.cognitive.microsoft.com/analytics/v2.0/sentiment...In Postman, we just create a new POST request with that URL and some parameters as here:As Headers we add a key "Content-Type" with value "application/json" and the body text that shall be uploaded with that post.As defined, the data we want to submit can be formatted JSON type, as here. First, there's a positive, then there's a negative text, in english language.{         "documents": [             {                 "language": "en",                 "id": "1",                 "text": "We love this trail and make the trip every year. The views are breathtaking and well worth the hike!"             },             {                 "language": "en",                 "id": "2",                 "text": "Poorly marked trails! I thought we were goners. Worst hike ever."             }         ] }See Language and region support for the Text Analytics API for more info.When clicking on the "Send" button, the request should be sent to the API. After some seconds of analyzing, the result will be shown as body, similar as here. Here's the output in JSON format.{     "documents": [         {             "id": "1",             "score": 0.92014169692993164         },         {             "id": "2",             "score": 0.05087512731552124         }     ],     "errors": [] } The return data says, that the first text with id 1 is positive (92%), the second text with id 2 is very negative (5%). A neutral value would be 0.5 (50%). Happy analyzing your text with the Sentiment Analysis API!

First steps with the Microsoft Vision API

Cloud services help to automate simple and complex processes. For analyzing a picture, the Microsoft Cognitive Services offer a bunch of services like the Vision API, (Custom) Computer Vision, Face API, Video Indexer an more. Follow this first sample with Postman to start with the Vision API.

Groups Governance Toolkit Part 4-Ownerless Groups

In this multi-part series we show you how to handle the Office 365 Groups and Microsoft Teams governance toolkit. The next article cover the governance part of our Groups Governance Toolkit.Imagine your company policy requires at least 2 owners per Office 365 Group or per Microsoft Team. In this part, we want to monitor all groups that are ownerless (orphaned), or do not comply with our organization's policies. The IT department shall get the information of all groups and teams where there are no owners or not enough owners and the possibility to fix that. Read below how this can be accomplished.

Troubleshooting Delegate365

Delegate365 is a user-friendly tool to enable delegated management of users, licenses, and groups. This means that only objects assigned to a scope administrator are displayed in Delegate365. So, sometimes, we get questions as "I can't see my users/shared mailbox or similar". Here's why and how to solve such issues.

Ready for European Collaboration Summit 2019!

Join us at the legendary European Collaboration Summit from May 27 to May 29, 2019 in Wiesbaden, Germany! #collabsummit is Europe's largest community-driven conference with a focus on modern workplace technologies and digital transformation, with topics such as Microsoft 365, Azure, SharePoint, AWS, and Business Apps. The conference is organized for the community by the community.

Groups Governance Toolkit Part 3-Develop Azure Functions

After the introduction of the Office 365 Groups and Microsoft Teams Governance Toolkit and with the necessary requirements we are now looking into Azure Functions. In our group and team provisioning scenario, we need a little code for provisioning of an Office 365 group and a Microsoft team. Serverless computing with an Azure Function provides the optimal solution for that. Follow these steps to create the function we need for our workflow.

Groups Governance Toolkit Part 2-Provisioning requirements

In part 1 of this series we described the scenario for our Office 365 groups governance toolkit. In this part we will setup a workflow for the Office 365 and Microsoft Teams provisioning. Workflows help to follow specific processes for a successful collaboration.
Offering self-services for users is a key to reduce workloads on the IT department and to allow users to cover their requirements quickly while the organization's policies are enforced during the process. A frequently asked request is how to provision a new Microsoft Team in Office 365 in a secure and monitored way. See how this can be implemented here.
To allow an app to create a Microsoft group or team programmatically in a workflow, we will use the Microsoft Graph API, Azure Functions and Flow or Logic Apps. With these technologies, we can create powerful workflows to offer a self-service for users to create a team when needed, approved by the manager and being provisioned with all the necessary properties and permissions.