atwork participates at "The Art of Data Management" event Monday, November 20, 2017 2:00 PM Toni Pohl The new GDPR comes in force in 6 months. From then on, every business processing personal data has to fulfil the statutory European data privacy laws. A violation can result in high fines and penalties. Within the cost free seminar series "The Art of Data Management", taking place in Germany and Austria, atwork prepares you for the statutory changes. atwork | Azure | Cloud | English | Event | Microsoft | Office | Office365 Mediumlink | Permalink | Comments (0) | Post RSS mehr
Azure Functions for Visual Studio Code Sunday, October 22, 2017 4:00 PM Toni Pohl Working with Visual Studio Code? Then check out the Azure Functions extension for Visual Studio Code at the Visual Studio Marketplace! App | Azure | Cloud | Developer | English | Microsoft | Open Source | Tools | Visual Studio Mediumlink | Permalink | Comments (0) | Post RSS mehr
Change a connection for existing Azure LogicApps Friday, October 20, 2017 2:00 PM Toni Pohl If one of your coworkers created a LogicApp some months ago and you want to "de-personalize" the connections used in a flow, you can modify the settings easily – if you know how to. Azure | App | Cloud | English | Developer | Microsoft | Flow | Business Intelligence Mediumlink | Permalink | Comments (0) | Post RSS mehr
Impressions of Microsoft Ignite 2017 Saturday, October 7, 2017 1:00 PM Toni Pohl It was a busy week! Ignite is the largest and leading event for IT-Professionals and Decision-Makers in the Microsoft universe. This year, the conference took place in Orlando, Florida, from 25th to 29th September. With approximately 30,000 attendees and about 700 breakout, a lot of theater-sessions a large expo and a lot of networking this event was … big #dataoverflow. See my personal impressions here. Azure | Blog | Cloud | English | Event | Microsoft | MVP | Office365 | atwork | SharePoint | Yammer Mediumlink | Permalink | Comments (0) | Post RSS mehr
Provisioning an Office 365 group with an approval flow and Azure functions-part 3 Thursday, October 5, 2017 8:00 PM Martina Grom This article describes the workflow for the group provisioning process by using the Azure function from part two in combination with PowerApps, SharePoint Online and Flow to enable a good user experience. Technically, we already have the toolset with the ProvisionGroup function. Now let’s create the rest. Azure | App | Cloud | Developer | English | Exchange | Microsoft | MVP | Office | Office365 | PowerApps | Event | PowerShell | SharePoint | Flow Mediumlink | Permalink | Comments (4) | Post RSS mehr
Provisioning an Office 365 group with an approval flow and Azure functions-part 2 Sunday, October 1, 2017 4:00 PM Martina Grom In part one, we saw how the Microsoft Graph API enables programmatic access to Office 365 groups. Now it’s time to let Azure Functions help us with the desired workflow. Azure | App | Cloud | Developer | English | Exchange | Microsoft | Office | Office365 | PowerShell | SharePoint Mediumlink | Permalink | Comments (14) | Post RSS mehr
Provisioning an Office 365 group with an approval flow and Azure functions-part 1 Thursday, September 28, 2017 3:30 AM Martina Grom Office 365 groups span over various Office 365 services and provide a great way for collaborating. By default, every user can create an Office 365 group. While self-service is a good thing and many businesses adopted into that direction, some companies still prefer the controlled approach. In real world environments, organizations usually want to restrict the group provisioning so that IT can control the wild growth of groups. This article series shows how to create an Office 365 group with an attached approval process with SharePoint Online, Flow and Azure functions. See how this works here! Azure | Cloud | Developer | English | Exchange | Microsoft | Office | Office365 | PowerShell | SharePoint | Flow | App | MVP | Event | PowerApps Mediumlink | Permalink | Comments (5) | Post RSS mehr
Nachlese zum GDPR Workshop mit atwork, Microsoft und Grant Thornton Thursday, September 7, 2017 11:00 AM Toni Pohl atwork organisierte einen GDPR-Workshop, der diese Woche bei Microsoft in Wien stattgefunden hat. Als kompetenten Partner aus der Wirtschaftsprüfung und Steuerberatung konnten wir Philipp Mattes von Grant Thornton gewinnen, der den ersten Teil präsentierte. Unsere Security Expertin Martina Grom informierte in Teil Zwei über die technischen Möglichkeiten mit den Microsoft Cloud Services. Sehen Sie hier eine Nachlese. General | Cloud | Event | Microsoft | Office365 | Azure | Security | atwork Mediumlink | Permalink | Comments (0) | Post RSS mehr
Delegate365 and the Exchange issue update Wednesday, August 30, 2017 10:00 AM Toni Pohl In the last days, some customers of Delegate365 experienced a warning in the Delegate365 portal that informed about the failing communication to Exchange Online. This issue was caused by the Microsoft Exchange Online PowerShell endpoint. We are glad to announce that this issue should be fixed soon. Azure | Cloud | Delegate365 | English | Microsoft | Office365 | PowerShell Mediumlink | Permalink | Comments (0) | Post RSS mehr
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
Move resources in Microsoft Azure Monday, August 21, 2017 12:00 PM Toni Pohl It’s a not so well known feature, that admins can transfer services in Microsoft Azure to reorganize their cloud services. This can be accomplished in the Azure Portal or programmatically. See here, how this works. Azure | Cloud | Developer | English | Microsoft Mediumlink | Permalink | Comments (0) | Post RSS mehr
How user profile synchronization works in Office 365 services Friday, July 7, 2017 3:00 PM Martina Grom Office 365 users often ask about user profiles in various Office 365 services and where to change what. Since the Office 365 products do have a history, there are different places where user profile data is stored and how specific properties are synchronized. So, we at atwork thought that it makes sense to inform about the current user profile status in Office 365 with this article. Azure | Cloud | English | Microsoft | Office365 | Office | SharePoint | Exchange | Skype | Yammer Mediumlink | Permalink | Comments (1) | Post RSS mehr