imageThe Cortana Daily Briefing is a feature that provides helpful reminders of commitments an individual’s made in email or request others have made to the user.

Phrases like:

  • “If you’re open to meeting, I’ll find a time slot that works for us this week.”
  • “Please resolve these issues by visiting your dashboard.”

…are noticed by Cortana and will remind you to take action.

DISABLING DAILY BRIEFING

If you’re interested in preemptively disabling the upcoming Cortana Daily Briefing arriving in your Office 365 tenant, you’ll need to do so using Powershell commands.

End users can disable the daily briefing themselves via cortana.office.com.
(See https://docs.microsoft.com/en-us/briefing/be-admin)

Administrators wishing to disable the feature on specific users may do so by running are variety of PowerShell cmdlets.

DETERMINING THE STATUS OF A MAILBOX

The Get-UserBriefingConfig cmdlet is available to check the daily briefing status of mailboxes:

Get-UserBriefingConfig -Identity joe@contoso.com

DISABLING CORTANA DAILY BRIEFING FOR ONE USER

The PowerShell Set-UserBriefingConfig cmdlet, part of the new Exchange Online management module is the Admin’s best friend.  Set-UserBriefingConfig enables/disables the feature for a mailbox.

To disable the daily briefing for a specific user, run a command like:

Set-UserBriefingConfig -Identity joe@contoso.com -Enabled $False

DISABLING CORTANA DAILY BRIEFING FOR ALL USERS IN A TENANT

If you need to disable the daily briefing for all users you can process all mailboxes with cmdlets like Get-ExoMailbox. The following code finds all user mailboxes and disables them for the daily briefing, the rough equivalent of disabling the feature for an entire tenant:

$Accounts = Get-ExoMailbox -ResultSize Unlimited -RecipientTypeDetails UserMailbox

ForEach ($Account in $Accounts) { Set-UserBriefingConfig -Identity $Account.UserPrincipalName -Enabled $False }

DISABLING CORTANA DAILY BRIEFING FOR A LIST OF USERS

If you wish to be more selective, you can:

  • Create a .csv file with all users that were processed with their current status.

Identity
ClaudeL@contoso.com
LynneB@contoso.com
ShawnM@contoso.com

  • List the user principal name fort each user.
  • Set the specified Enabled parameter for each user.

$inFileName="<path and file name of the input .csv file that contains the users, example: C:\admin\Users2Opt-in.csv>" $outFileName="<path and file name of the output .csv file that records the results, example: C:\admin\Users2Opt-in-Done.csv>" $briefingEmailMode = $true

$users=Import-Csv $inFileName

ForEach ($user in $users) {
$user.identity
$upn=$user.identity
Set-UserBriefingConfig –Identity $upn -Enabled $briefingEmailMode
Get-UserBriefingConfig –Identity $upn | Export-Csv $outFileName -Append
}

More available at:
https://docs.microsoft.com/en-us/briefing/be-admin

image4 days, 4 tracks covering Data Platform, Data Migration, Analytics and AI at the Data & AI Virtual Summit on June 22-25th. All data professionals and developers welcome!

Join us for this exciting event with speakers from Microsoft Product Teams and more!

Breakdown:

  • Data Platform – June 22
    Microsoft’s data platform solutions unleash the potential hidden in your data,, revealing insights and opportunities that can transform your business.

  • Migration – June 23
    Learn more about all the tools, resources, and guidance you need to migrate your servers, apps, databases, and workloads effectively and efficiently to the Cloud.

  • Analytics – June 24
    Analytics can help you identify patterns that impact productivity, effectiveness, and employee engagement, assisting you to accelerate transformation with new insights.

  • Artificial Intelligence – June 25
    AI can extend your capabilities, free up time for creative and strategic endeavors, and help you and your organization achieve more.

Interested in free training around JS-based Azure AD authentication development beginning June 25, 2020?

—————–

imageBuild sophisticated apps that connect to Azure services or the Microsoft Graph

If you are looking to connect your modern applications to the Microsoft Identity Platform, specifically utilizing Azure Active Directory and the Microsoft Graph, then this webinar series is for you.

This series will start from the absolute fundamentals and progress to building sophisticated applications that connect to Azure services or the Microsoft Graph. You’ll start with registering new applications and then learn how to send users to authenticate to Azure AD, both manually and using the latest developer SDKs.

Authenticate users in JavaScript apps with MSAL.js

June 25, 2020 | 2 PM ET / 11 AM PT

The Microsoft Authentication Library (MSAL) is the critical enabler for any developer who wants to connect to the Microsoft Identity Platform, acquire a token, and then use that token to access secure APIs.

REGISTER NOW
Bring identity components to apps with the Microsoft Graph Toolkit

Tune in to Mixer on July 2, 2020 to watch us live | 2 PM ET / 11 AM PT

Add to Calendar: Outlook/iCal | Google

The Microsoft Graph toolkit is a set of modern reusable components for your web applications that can help you integrate the Microsoft Graph efficiently, regardless of UI framework. This toolkit is great for any developer who wants to include the Graph in their web or Microsoft 365 applications.

Authenticate to Azure services with Azure AD and MSAL.js

Tune in to Mixer on July 9, 2020 to watch us live | 2 PM ET / 11 AM PT

Add to Calendar: Outlook/iCal | Google

As more and more services in Azure support modern & managed authentication using Azure Active Directory, you may begin to wonder how to update apps to use those robust identities. In this session, we will show you how to use the MSAL.js library to acquire tokens than can be sent to services such as Azure SQL Database, Azure Storage, and Cognitive Services.

Get started with the Microsoft Graph SDK from your JavaScript apps

Tune in to Mixer on July 16, 2020 to watch us live | 2 PM ET / 11 AM PT

Add to Calendar: Outlook/iCal | Google

The Microsoft Graph is the gateway to all the data and intelligence of Microsoft 365. We’ll provide an overview to accessing this data by using the Graph Explorer and then using MSAL.js to query the graph endpoints directly. You’ll also learn how the Graph SDK makes it easier than ever to build high-quality applications that access and leverage the Graph.

clip_image002In a world where your organization’s data can be spread across multiple applications—on-premises and in the cloud—and accessed by multiple devices and users, identity is the new control plane that connects it all.

With Microsoft Azure Active Directory (Azure AD), you can establish a universal identity platform for your cloud and on-premises directories. Help your employees, partners, and customers collaborate by providing a seamless, secure sign-in experience for apps and services. Set requirements for each sign-in and increase security and compliance with conditional access, passwordless and multifactor authentication (MFA), advanced identity protection, and identity governance. Easily automate changes, enforce policies, and provide self-service options—so that you can focus on transforming your business.

Join our identity experts on Tuesday, June 23rd for an opportunity to "Ask Microsoft Anything" (AMA) about deploying Azure AD capabilities. The AMA will take place from 9:00 AM to 10:00 AM Pacific Time in the Azure AD AMA space. Add the event to your calendar here.
To join, simply visit the AMA space at 9:00 a.m. PDT and submit a question by selecting Start a new conversation—then do this for each new question.

  • What is an AMA?
    An AMA is a live, online, text-based question-and-answer event similar to a "YamJam" on Yammer or an "Ask Me Anything" on Reddit or Twitter. 
  • Can’t attend at 9:00 AM Pacific Time?
    While we’ll only be answering questions in real-time from 9:00-10:00 a.m. Pacific Time, you can post your questions for the AMA to the Azure AD AMA space in the Azure AD Tech Community up to 24 hours in advance. 

imageORCA is a report that you can run in your environment which can highlight known configuration issues and improvements for Office 365 Advanced Threat Protection (ATP).

ORCA looks at O365 ATP configuration and provides recommendations / guidelines on configuration that will cause issues with the deployment. Examples include highlighting whitelisting occurring within the tenant, not configuring the anti-phishing policy settings.

Microsoft Forms Pro was recently made available in the Government Community Cloud (GCC).

Forms Pro availability on US Government Community Cloud

The dependency services used by Forms Pro are available on US Government Community Cloud (GCC). Note the following differences in functionality for Forms Pro on GCC:

  • The format of survey responses on the Responses tab is slightly different when compared to non-GCC regions. The report can only display up to 50,000 responses. You can create a Power BI report and connect directly to Common Data Service to see all the responses.

  • By default, the anonymous sharing of surveys is disabled. A tenant administrator must enable anonymous sharing by selecting the Send a link to the form and collect responses check box under External sharing in the Microsoft 365 admin center. More information: Administrator settings for Microsoft Forms

  • Microsoft Forms Pro on GCC uses your Microsoft Exchange mailbox to send the survey. For information about Exchange mailbox limits, see Exchange Online limits.

Note: As a GCC customer, you must either have a Dynamics 365 enterprise license or a Microsoft 365 license.

For more information, view the documentation here:

imageJoin us to learn how to minimize the chance of multimillion-dollar security breaches threatening your organization. Register for this virtual event to hear three strategies for staying ahead of attacks across all of your resources—in Azure, on-premises, and even in hybrid and multicloud environments.

You’ll learn threat protection perspectives and best practices from Microsoft engineers, your peers, and Microsoft cybersecurity executives Ann Johnson and Eric Doerr.

In this information-packed hour, you’ll:

  • Hear Microsoft security experts discuss threat protection strategies using Azure Security Center and Azure Sentinel.
  • Watch customers share how they’re using Azure security services to protect their multicloud and on-premises resources.
  • See how you can use Azure Security Center to achieve multicloud threat protection for servers and virtual machines, cloud-native workloads, and data services.

And get expert answers to your security strategy questions during the live Q&A.

image

Date/Time:
Tuesday, June 30, 2020
10:00 AM–11:00 AM Pacific Time

Registration:

imageSee and stop threats before they cause harm, with SIEM reinvented for a modern world.

Azure Sentinel is your birds-eye view across the enterprise. Put the cloud and large-scale intelligence from decades of Microsoft security experience to work. Make your threat detection and response smarter and faster with artificial intelligence (AI). Eliminate security infrastructure setup and maintenance, and elastically scale to meet your security needs—while reducing IT costs.

  1. image“Get started with a cloud-native SIEM” – Azure Sentinel Part 1
  2. “Built-in AI to detect threats faster” – Azure Sentinel Part 2
  3. Investigate and automate threat responses” – Azure Sentinel Part 3

Here are 2 FREE eBooks/reports that provide more background information on Azure Sentinel:

imageCloud-native SIEM: Quick-start Guide to Azure Sentinel

Start using smarter, faster threat detection and response that connects data from all your sources with the cloud and Azure Sentinel.

SIEM analyst report

Track the latest market trends, including cloud adoption and AI within enterprise and midsize organizations, with this analysis from Enterprise Strategy Group (ESG).

For more learnings, visit:
https://aka.ms/LearnAzureSecurity

imageWe are excited to share that new geospatial features will be coming soon to Power Apps. With these new features, app makers will be able to quickly introduce location-based capabilities into their experiences and start to digitize workflows in physical space using tools they are already familiar with.

These new components are powered by Azure Maps services, but you don’t need to be a professional developer to take advantage of these features. You can add these components with the ease of drag-and-drop and low-code development.

Features include:

  • Interactive Maps
  • Address Suggestion

To sign up for a private preview & read more about the new capabilities, visit:

imageDo you need to create a web scale application, hosted on a secure cloud?

Get 6 free months of select Microsoft Power Platform solutions to support COVID-19 responses.

Respond quickly to changing organizational needs due to COVID-19 using the following Microsoft Power Platform applications—available to healthcare, governments, nonprofits, and educators free of charge for six months.*

The following is included:

POWER APPS
Quickly build and share custom, low-code applications.

Includes:

  • Up to 1,000 seats

POWER AUTOMATE
Streamline repetitive tasks and processes.

Includes:

  • Up to 100 seats

POWER APPS PORTAL
Offer external users secure access to your applications.

Includes:

  • Up to 50,000 views
  • Up to 20,000 logins

POWER VIRTUAL AGENT
Quickly build intelligent chatbots without having to code.

Includes:

  • Up to 200,000 sessions

Visit this site to enroll:

« Newer Posts - Older Posts »

Categories