Posted by: kurtsh | June 20, 2020

HOWTO: Contact Support for Microsoft 365/Office 365

imageIf you have a subscription with Microsoft & require support for your Microsoft 365 or Office 365 issue, you have 3 options:

Service Descriptions for Office 365 Support including SLAs, case levels, etc. are available here:

Posted by: kurtsh | June 17, 2020

WEBINAR: Advanced eDiscovery for Microsoft Teams

imageInterested in Advanced eDiscovery for Microsoft Teams? 

“While eDiscovery provides a range of search, hold, and export functionality, Advanced eDiscovery gives compliance administrators more tools to identify data sources and analyze their contents. 

Need to conduct an internal investigation of Teams content? We’ve got you covered. Join us to learn how to complete common eDiscovery processes on Teams content.”

This webinar is on-demand.  Comments & questions however from the live webinar have been recorded for review.

imageMoney in Excel is a dynamic template for Excel that can help you feel more in control of your money.

It’s the only template where you can securely connect your financial institutions to import and sync account and transaction  information into an Excel spreadsheet.

Track all your finances in one place, customize your workbook, and receive personalized tips without ever leaving Excel.

Note: Money in Excel is a premium template that is available as part of the Microsoft 365 Personal or Family subscription. Currently, Money in Excel is only available in the United States and can connect to most major financial institutions. For the best experience, we recommend using Money in Excel on a laptop or desktop.

With Money in Excel you’ll be able to…

  • Securely connect bank, credit card, investment, and loan accounts to view your financial information all in one place without ever leaving Excel.

  • Keep your workbook up to date by syncing your latest transactions and account balances.

  • Gain insight into your finances with charts, graphs, and alerts based on your data.

  • Customize Money in Excel to make your workbook work for you. Leverage tailored templates we’ve created for you or build your own using your favorite features in Excel.

DOWNLOAD: Money in Excel
https://templates.office.com/en-us/TM77948210

FAQ: Money in Excel
https://support.office.com/article/1cf6f49a-cb01-48c2-ac39-cda12a585c4a

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:

« Newer Posts - Older Posts »

Categories