SlideShare a Scribd company logo
1 of 59
Office 365 Groups Deep Dive
Presented by: Knut Relbe-Moe
CTO, Knowledge People
Product Evangelist & Partner Manager Valo Intranet in Box
About me
BLOG
LINKED IN
TWITTER
EMAIL
MEMBER OF
MEMBER OF
WORKS FOR
JOB TITLE
Microsoft MVP
Office Servers and Services
Product Evangelist & Partner Manager
https://linkedin.com/in/shareptkarm
knut@valointranet.com /
knut@knowledgepeople.no
http://www.valointranet.com
@shareptkarm
NIWUG
AWARDED
AWARDED
Nintex vTE
Nintex Virtual Technical Evangelist
SharePoint Saturday Oslo
http://sharepointblog.no
WWW
CTO
Ready-to-go Modern
intranet on Office 365
and SharePoint
Valo
Blue Meteorite Ltd
Valo Intranet is a finalist in the best Intranet /
Extranet awards category
valointranet.com
Win Cool BB-8!!Valo
Take part in the
Raffle!
Visit our booth
Office 365: Complete Group Collaboration Solution
Addressing the unique needs and workstyle of each group
Groups
Move from task to task with cross
application group membership
Graph
Discover content and people with cross
application intelligence
Trust
Control on your terms with cross
application security & compliance
Email and
schedule
Call and meetCreate, share, find
content
Connect
across the org
Agenda
• Overview
• Administration
• Connectors
• Extensibility
• Advanced Topics
• Roadmap
THE WORLD HAS CHANGED
Brings together people, information, and apps across Office 365,
to enable better communication and collaboration.
What’s new in 2016?
• Public/private switch now adjustable
• New document library features
• Multi-domain support
• Migrate distribution lists to Office 365 Groups
• Dynamic Group membership (AAD Premium)
• SharePoint Integration / Yammer
https://support.office.com/en-us/article/Migrate-distribution-lists-to-Office-365-Groups-Admin-help-
787d7a75-e201-46f3-a242-f698162ff09f?ui=en-US&rs=en-US&ad=US
https://support.office.com/en-us/article/Multi-domain-support-for-Office-365-Groups-Admin-help-
7cf5655d-e523-4bc3-a93b-3ccebf44a01a?ui=en-US&rs=en-US&ad=US
Office 365 Group Experiences is available today!
Groups building blocks
Public by default
Key benefits
Self-service
Sharing to non-members
Context & history
Single definition
Simple to manage
Office 365 Groups Overview
Administration
more
Group Management Experiences
Office 365 Admin Center
Office 365 Admin app
Azure AD Admin Portal
Exchange Admin console
Execute against Azure AD as primary
Synchronous notification/update in Exchange/SP
*-UnifiedGroup / *-MsolGroup
*-UnifiedGroupLinks
*-MsolSettings
Use PowerShell to manage Office 365 Groups
> Get-UnifiedGroup #create/update/view groups and their settings
> Get-UnifiedGroupLinks #Manage members, owners, and subscriber list
> Get-MsolSettings #Manage tenant-wide group settings
Management UI
PowerShell: Connect
Allow remote sessions
Set-ExecutionPolicy Unrestricted
Get usercredentials
$userCredential = Get-Credential
Open Powershell session
$session = New-PSSession -ConfigurationName Microsoft.Exchange
-ConnectionUri https://outlook.office365.com/powershell-liveid/
-Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $session
PowerShell: Unified Group
Get list of groups
Get-UnifiedGroup
Get specific group
Get-UnifiedGroup –Identity SalesTeam
Create Group
New-UnifiedGroup –DisplayName “Sales Team” –Alias SalesTeam
Delete Group
Remove-UnifiedGroup SalesTeam
Set Group Options
Set-UnifiedGroup –Identity SalesTeam –
RequireSenderAuthenticationEnabled $true
PowerShell: Unified Group Links
Get Group Members
Get-UnifiedGroupLinks –Identity SalesTeam –LinkType Members
Add Member/Owner
Add-UnifiedGroupLinks –Identity SalesTeam –Links my@email.pt –LinkType Members
Add-UnifiedGroupLinks –Identity SalesTeam –Links my@email.pt –LinkType Owners
Remove Group Member
Remove-UnifiedGroupLinks SalesTeam –LinkType Members –Links my@email.pt
Remove Group Owner
Remove-UnifiedGroupLinks SalesTeam –LinkType Owners –Links my@email.pt
Remove-UnifiedGroupLinks SalesTeam –LinkType Members –Links my@email.pt
Policy controls
• Set on display name during create/change
• Blocked word list, pre-/post-fix based on AAD attributes
or fixed text
• Same policy for DL and groups
• IT admins can override
Naming policy
Set on display name during create/change
Blocked word list, pre-/post-fix based on AAD attributes
IT admins can override
New* the naming policy doesn’t apply to DLs synced from on-
prem
Will be replaced by AD policy in Fall 2016
Group creation permissions
AD policy can restrict some users from creating groups anywhere
in O365
Does not prevent users from using groups
IT can still create groups
See Manage Group Creation for more
Dynamic membership
Defined in Azure AD Admin Portal
Directory Management
Some Groups info
• General info
Get-UnifiedGroup | Format-Table Alias, PrimarySmtpAddress, WhenChanged,
AccessType
• Number of conversations + last logon date
Get-UnifiedGroup | Foreach-Object {
Get-MailboxStatistics -Identity $_.Identity}
• Last content change in SharePoint
Get-UnifiedGroup | Foreach-Object {
Get-SPOSite -Identity $_.SharePointDocumentsUrl.replace("/Shared
Documents","")} | Format-Table Title, Url, LastContentModifiedDate
Office 365 Connectors
• New Connector Card creates new message
• 80+ Connectors available today
• Incoming Webhooks
• Possibility to create your own Connectors
https://dev.outlook.com/connectors
Security and Compliance
Now on iOS, Android
Admin Controls for Guest Access
Information Protection – Current Support
Current feature Scenario Old name
Supported on
Group Site?
Supported
on Group
Mailbox?
EDISCOVERY
eDiscovery case Hold
Ensure data is preserved for
investigation/active litigation
through eDiscovery
In-place Hold
Litigation Hold for EXO from EAC
In-place Hold for SPO from SPO eDiscovery center
In-Place Hold for EXO from SPO eDiscovery center
Yes - using the
group site URL
Yes - using
the group
mailbox
eDiscovery search
through Security and
Compliance center
Search for data in Groups for
litigation/investigation
eDiscovery search for EXO from EAC
eDiscovery search for EXO from SPO eDiscovery center
eDiscovery search for SPO from SPO eDiscovery center
Yes - using the
group site URL
Yes - using
the group
mailbox
PRESERVATION AND DELETION
Preservation policy
from Security and
Compliance Center
Ensure all data is preserved for legal,
regulatory and business continuity
needs.
In-place Hold
Litigation Hold for EXO from EAC
In-Place Hold for EXO from SPO eDiscovery center
In-place Hold for SPO from SPO eDiscovery center
Yes - using the
group site URL Not yet
Deletion policy from
Security and
Compliance Center
Reduce legal risk and/or data
lifecycle management by deleting
data after some interval
Retention policy in EXO
Site Deletion policy in SPO
Content type information management policy Not yet Not yet
Auditing
Reporting in the Azure AD
Admin Portal
Audit Log Search in O365
Admin Center
Get-UnifiedGroup
powershell
Extensibility
https://graph.microsoft.com/v1.0/groups
https://graph.microsoft.com/beta/groups
https://graph.microsoft.com/
USERS FILES MAIL CALENDARGROUPS
Insights and relationships from Office Graph
TASKS
https://graph.Microsoft.io
Microsoft Graph Highlights
• GA: /v1.0/groups
• Beta: /beta/groups
 See http://graph.microsoft.io for more info
• Single endpoint for group data
 Tasks
 OneNote
 OneDrive
 Mail
 Calendar
 Group management
• Webhook Notifications
 Receive notifications for group
conversations
• Favor MS Graph over AAD
Graph
 Closing functional gap with AAD
Graph
 New features targeting MS Graph
 New apps should use MS Graph
 AAD Graph remains for existing
apps
 Office 365 unified API overview
 Office 365 Groups REST API reference
 Deep Dive into the Office 365 Groups API
Valo brings your Office 365
groups to your intranet
Extensibility
Office 365 Planner
Integrated with Office 365 Groups, so all
of the conversations in Planner are
available in Outlook 2016, Outlook on
the web and the Outlook Groups
mobile app.
Create new plans, organize &
assign tasks, share files, talk
about what you’re working on,
and get updates on progress.
Hybrid Configuration
Target Address - the service address of the Groups object
Recipient Type Details - specifies that the Group is not mastered in the on-premises directory
AAD Connect, write-back enabled
Exchange 2013 CU11/2016 CU 1 –when individual mailboxes are on-premises
Configure Office 365 Groups with on-premises Exchange hybrid
Hybrid - UX
Groups appear in the GAL* (Requires writeback)
Access to group files (if licensed in SPO)
Access to the group notebook
Groups not shown in left nav
Group contact cards appear as DLs
Set Files Quota
• Set a storage quota on a Group’s SharePoint site
• Currently only through PowerShell
Get-SPOSite –Identity https://<tenant>.sharepoint.com/sites/<group> -detailed |fl
Set-SPOSite
–Identity https://<tenant>.sharepoint.com/sites/<group>
-StorageQuota 3000
-StorageQuotaWarningLevel 2000
Requires Site Collection Storage Management setting for the tenant is switched to Manual
Send As Group
• Allows a group member to send email as the Group
• Currently only through PowerShell
$groupAlias = "TestSendAs"
$userAlias = "AlexD"
$groupsRecipientDetails = Get-Recipient
-RecipientDetails
-groupmailbox
-Identity $groupAlias
Add-RecipientPermission
-Identity $groupsRecipientDetails.Name
-Trustee $userAlias
-AccessRights SendAs
Roadmap
Office 365 Connectors
Microsoft Planner
Professional learning community groups Office
365 Groups + team sites integration
Guest user access (external users)
Calendaring improvements
Notifications improvements
Mobile improvements
Outlook Groups iPad app
Experiences
File quota management
Hybrid guidance & improvements
Privacy type conversion
Multi-domain support
Creation policies in AAD
Mobile application management
Data classification and extensible policies
Usage guidelines
Exchange Admin Center UI for upgrading DL to
Groups
Administration
Yammer
Planner: multi-assign, external user, mobile
Send As in Outlook on the web
Outlook for Mac support
Inbox tiered notifications
Single Groups files view
Search across Groups
Skype Meet Now
Continuously improving UI design
Naming policies in AAD
Hidden membership
General usage reporting
Preservation and deletion policies
Soft-delete and restore
Upgrade from nested, dynamic and hybrid DLs
to Groups
Improved hybrid experiences
aka.ms/O365g aka.ms/O365ng fasttrack.microsoft.com/office
fasttrack.office.com/roadmap aka.ms/Office365Groups
Key Resources
Next steps
Resources
Documentation
• Microsoft Graph API
• Hands On Labs: Deep Dive into the Microsoft Graph for Office 365 Groups
• Office 365 unified API overview
• Office 365 Groups REST API reference
• Deep Dive into the Office 365 Groups API
Tools
• Graph Explorer
• Groups Explorer
http://techcommunity.microsoft.com
Knut Relbe-Moe
Product Evangelist & Partner Manager, Valo Intranet in a box
knut@valointranet.com
SEF Unity Connect 2016 Office 365 Groups

More Related Content

What's hot

Office365 Video - Learn it - Love it - Use it | Collab365
Office365 Video - Learn it - Love it - Use it | Collab365Office365 Video - Learn it - Love it - Use it | Collab365
Office365 Video - Learn it - Love it - Use it | Collab365Drew Madelung
 
SharePoint Server 2016 - Lets get ready - Wisconsin SharePoint User Group
SharePoint Server 2016 - Lets get ready - Wisconsin SharePoint User GroupSharePoint Server 2016 - Lets get ready - Wisconsin SharePoint User Group
SharePoint Server 2016 - Lets get ready - Wisconsin SharePoint User GroupDrew Madelung
 
SharePoint vs Microsoft Teams vs Groups (updated 28 July 2018)
SharePoint vs Microsoft Teams vs Groups (updated 28 July 2018)SharePoint vs Microsoft Teams vs Groups (updated 28 July 2018)
SharePoint vs Microsoft Teams vs Groups (updated 28 July 2018)Nikkia Carter
 
Establishing a Collaboration Roadmap
Establishing a Collaboration RoadmapEstablishing a Collaboration Roadmap
Establishing a Collaboration RoadmapDrew Madelung
 
Understanding Office 365 Groups: Ask The Experts
Understanding Office 365 Groups: Ask The ExpertsUnderstanding Office 365 Groups: Ask The Experts
Understanding Office 365 Groups: Ask The ExpertsDux Raymond Sy
 
Webinar slides: Getting started with Azure Resource Graph
Webinar slides: Getting started with Azure Resource GraphWebinar slides: Getting started with Azure Resource Graph
Webinar slides: Getting started with Azure Resource GraphShareGate
 
ESPC19 - Microsoft Teams Architecture Deep Dive
ESPC19 - Microsoft Teams Architecture Deep DiveESPC19 - Microsoft Teams Architecture Deep Dive
ESPC19 - Microsoft Teams Architecture Deep DiveMaarten Eekels
 
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016Drew Madelung
 
Office 365 Groups? Microsoft Teams? … Confused? Here's some help.
Office 365 Groups? Microsoft Teams? … Confused? Here's some help.Office 365 Groups? Microsoft Teams? … Confused? Here's some help.
Office 365 Groups? Microsoft Teams? … Confused? Here's some help.Adam Levithan
 
Microsoft Teams Overview
Microsoft Teams OverviewMicrosoft Teams Overview
Microsoft Teams OverviewSara Barbosa
 
OneDrive for Business Administration Security Compliance Boston Office 365 Us...
OneDrive for Business Administration Security Compliance Boston Office 365 Us...OneDrive for Business Administration Security Compliance Boston Office 365 Us...
OneDrive for Business Administration Security Compliance Boston Office 365 Us...Oliver Bartholdson
 
Microsoft Teams Preview - Technical Overview
Microsoft Teams Preview - Technical OverviewMicrosoft Teams Preview - Technical Overview
Microsoft Teams Preview - Technical OverviewOlivier Carpentier
 
Concurrency SharePoint Summit 2015
Concurrency SharePoint Summit 2015Concurrency SharePoint Summit 2015
Concurrency SharePoint Summit 2015Drew Madelung
 
Introduction to Microsoft Teams
Introduction to Microsoft TeamsIntroduction to Microsoft Teams
Introduction to Microsoft TeamsGreg McMurray
 
Power Saturday Paris 2019 - Enabling External Sharing in Office 365, SharePo...
Power Saturday Paris 2019  - Enabling External Sharing in Office 365, SharePo...Power Saturday Paris 2019  - Enabling External Sharing in Office 365, SharePo...
Power Saturday Paris 2019 - Enabling External Sharing in Office 365, SharePo...Chirag Patel
 
SPS London 2019 Enabling External Sharing in Office 365, SharePoint and OneDrive
SPS London 2019 Enabling External Sharing in Office 365, SharePoint and OneDriveSPS London 2019 Enabling External Sharing in Office 365, SharePoint and OneDrive
SPS London 2019 Enabling External Sharing in Office 365, SharePoint and OneDriveChirag Patel
 
Introduction to Office 365 Administration - SPSVB 2019
Introduction to Office 365 Administration - SPSVB 2019Introduction to Office 365 Administration - SPSVB 2019
Introduction to Office 365 Administration - SPSVB 2019Nikkia Carter
 
Concurrency SharePoint Summit 2016 - Indiana
Concurrency SharePoint Summit 2016 - IndianaConcurrency SharePoint Summit 2016 - Indiana
Concurrency SharePoint Summit 2016 - IndianaDrew Madelung
 
Intranets & Digital Hubs With Microsoft 365: What You Need To Know
Intranets & Digital Hubs With Microsoft 365: What You Need To KnowIntranets & Digital Hubs With Microsoft 365: What You Need To Know
Intranets & Digital Hubs With Microsoft 365: What You Need To KnowRichard Harbridge
 

What's hot (20)

Office365 Video - Learn it - Love it - Use it | Collab365
Office365 Video - Learn it - Love it - Use it | Collab365Office365 Video - Learn it - Love it - Use it | Collab365
Office365 Video - Learn it - Love it - Use it | Collab365
 
SharePoint Server 2016 - Lets get ready - Wisconsin SharePoint User Group
SharePoint Server 2016 - Lets get ready - Wisconsin SharePoint User GroupSharePoint Server 2016 - Lets get ready - Wisconsin SharePoint User Group
SharePoint Server 2016 - Lets get ready - Wisconsin SharePoint User Group
 
SharePoint vs Microsoft Teams vs Groups (updated 28 July 2018)
SharePoint vs Microsoft Teams vs Groups (updated 28 July 2018)SharePoint vs Microsoft Teams vs Groups (updated 28 July 2018)
SharePoint vs Microsoft Teams vs Groups (updated 28 July 2018)
 
Establishing a Collaboration Roadmap
Establishing a Collaboration RoadmapEstablishing a Collaboration Roadmap
Establishing a Collaboration Roadmap
 
Understanding Office 365 Groups: Ask The Experts
Understanding Office 365 Groups: Ask The ExpertsUnderstanding Office 365 Groups: Ask The Experts
Understanding Office 365 Groups: Ask The Experts
 
Webinar slides: Getting started with Azure Resource Graph
Webinar slides: Getting started with Azure Resource GraphWebinar slides: Getting started with Azure Resource Graph
Webinar slides: Getting started with Azure Resource Graph
 
ESPC19 - Microsoft Teams Architecture Deep Dive
ESPC19 - Microsoft Teams Architecture Deep DiveESPC19 - Microsoft Teams Architecture Deep Dive
ESPC19 - Microsoft Teams Architecture Deep Dive
 
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
 
Office 365 Groups? Microsoft Teams? … Confused? Here's some help.
Office 365 Groups? Microsoft Teams? … Confused? Here's some help.Office 365 Groups? Microsoft Teams? … Confused? Here's some help.
Office 365 Groups? Microsoft Teams? … Confused? Here's some help.
 
Microsoft Teams Overview
Microsoft Teams OverviewMicrosoft Teams Overview
Microsoft Teams Overview
 
OneDrive for Business Administration Security Compliance Boston Office 365 Us...
OneDrive for Business Administration Security Compliance Boston Office 365 Us...OneDrive for Business Administration Security Compliance Boston Office 365 Us...
OneDrive for Business Administration Security Compliance Boston Office 365 Us...
 
Microsoft Teams Preview - Technical Overview
Microsoft Teams Preview - Technical OverviewMicrosoft Teams Preview - Technical Overview
Microsoft Teams Preview - Technical Overview
 
Concurrency SharePoint Summit 2015
Concurrency SharePoint Summit 2015Concurrency SharePoint Summit 2015
Concurrency SharePoint Summit 2015
 
Introduction to Microsoft Teams
Introduction to Microsoft TeamsIntroduction to Microsoft Teams
Introduction to Microsoft Teams
 
Power Saturday Paris 2019 - Enabling External Sharing in Office 365, SharePo...
Power Saturday Paris 2019  - Enabling External Sharing in Office 365, SharePo...Power Saturday Paris 2019  - Enabling External Sharing in Office 365, SharePo...
Power Saturday Paris 2019 - Enabling External Sharing in Office 365, SharePo...
 
SPS London 2019 Enabling External Sharing in Office 365, SharePoint and OneDrive
SPS London 2019 Enabling External Sharing in Office 365, SharePoint and OneDriveSPS London 2019 Enabling External Sharing in Office 365, SharePoint and OneDrive
SPS London 2019 Enabling External Sharing in Office 365, SharePoint and OneDrive
 
Introduction to O365 E5 Plan
Introduction to O365 E5 Plan Introduction to O365 E5 Plan
Introduction to O365 E5 Plan
 
Introduction to Office 365 Administration - SPSVB 2019
Introduction to Office 365 Administration - SPSVB 2019Introduction to Office 365 Administration - SPSVB 2019
Introduction to Office 365 Administration - SPSVB 2019
 
Concurrency SharePoint Summit 2016 - Indiana
Concurrency SharePoint Summit 2016 - IndianaConcurrency SharePoint Summit 2016 - Indiana
Concurrency SharePoint Summit 2016 - Indiana
 
Intranets & Digital Hubs With Microsoft 365: What You Need To Know
Intranets & Digital Hubs With Microsoft 365: What You Need To KnowIntranets & Digital Hubs With Microsoft 365: What You Need To Know
Intranets & Digital Hubs With Microsoft 365: What You Need To Know
 

Viewers also liked

SharePoint 2016 & Office 365: A Look Ahead To What's Coming - SPS Vancouver
SharePoint 2016 & Office 365: A Look Ahead To What's Coming - SPS VancouverSharePoint 2016 & Office 365: A Look Ahead To What's Coming - SPS Vancouver
SharePoint 2016 & Office 365: A Look Ahead To What's Coming - SPS VancouverRichard Harbridge
 
UnityConnect - Office 365 Groups Deep Dive With Planner
UnityConnect - Office 365 Groups Deep Dive With PlannerUnityConnect - Office 365 Groups Deep Dive With Planner
UnityConnect - Office 365 Groups Deep Dive With PlannerKnut Relbe-Moe [MVP, MCT]
 
Unity Connect - Getting SQL Spinning with SharePoint - Best Practices for the...
Unity Connect - Getting SQL Spinning with SharePoint - Best Practices for the...Unity Connect - Getting SQL Spinning with SharePoint - Best Practices for the...
Unity Connect - Getting SQL Spinning with SharePoint - Best Practices for the...Knut Relbe-Moe [MVP, MCT]
 
SPSMadrid Get sql spinning with SharePoint. Best practice for the back end
SPSMadrid Get sql spinning with SharePoint. Best practice for the back endSPSMadrid Get sql spinning with SharePoint. Best practice for the back end
SPSMadrid Get sql spinning with SharePoint. Best practice for the back endKnut Relbe-Moe [MVP, MCT]
 
SPSToronto: SharePoint 2016 - Hybrid, right choice for you and your organizat...
SPSToronto: SharePoint 2016 - Hybrid, right choice for you and your organizat...SPSToronto: SharePoint 2016 - Hybrid, right choice for you and your organizat...
SPSToronto: SharePoint 2016 - Hybrid, right choice for you and your organizat...Knut Relbe-Moe [MVP, MCT]
 
WF 101 - SharePoint Designer 2013 Workflows: An Introduction
WF 101 - SharePoint Designer 2013 Workflows: An IntroductionWF 101 - SharePoint Designer 2013 Workflows: An Introduction
WF 101 - SharePoint Designer 2013 Workflows: An IntroductionKnut Relbe-Moe [MVP, MCT]
 
10 Reasons your SharePoint Migration Failed
10 Reasons your SharePoint Migration Failed10 Reasons your SharePoint Migration Failed
10 Reasons your SharePoint Migration FailedBenjamin Niaulin
 

Viewers also liked (7)

SharePoint 2016 & Office 365: A Look Ahead To What's Coming - SPS Vancouver
SharePoint 2016 & Office 365: A Look Ahead To What's Coming - SPS VancouverSharePoint 2016 & Office 365: A Look Ahead To What's Coming - SPS Vancouver
SharePoint 2016 & Office 365: A Look Ahead To What's Coming - SPS Vancouver
 
UnityConnect - Office 365 Groups Deep Dive With Planner
UnityConnect - Office 365 Groups Deep Dive With PlannerUnityConnect - Office 365 Groups Deep Dive With Planner
UnityConnect - Office 365 Groups Deep Dive With Planner
 
Unity Connect - Getting SQL Spinning with SharePoint - Best Practices for the...
Unity Connect - Getting SQL Spinning with SharePoint - Best Practices for the...Unity Connect - Getting SQL Spinning with SharePoint - Best Practices for the...
Unity Connect - Getting SQL Spinning with SharePoint - Best Practices for the...
 
SPSMadrid Get sql spinning with SharePoint. Best practice for the back end
SPSMadrid Get sql spinning with SharePoint. Best practice for the back endSPSMadrid Get sql spinning with SharePoint. Best practice for the back end
SPSMadrid Get sql spinning with SharePoint. Best practice for the back end
 
SPSToronto: SharePoint 2016 - Hybrid, right choice for you and your organizat...
SPSToronto: SharePoint 2016 - Hybrid, right choice for you and your organizat...SPSToronto: SharePoint 2016 - Hybrid, right choice for you and your organizat...
SPSToronto: SharePoint 2016 - Hybrid, right choice for you and your organizat...
 
WF 101 - SharePoint Designer 2013 Workflows: An Introduction
WF 101 - SharePoint Designer 2013 Workflows: An IntroductionWF 101 - SharePoint Designer 2013 Workflows: An Introduction
WF 101 - SharePoint Designer 2013 Workflows: An Introduction
 
10 Reasons your SharePoint Migration Failed
10 Reasons your SharePoint Migration Failed10 Reasons your SharePoint Migration Failed
10 Reasons your SharePoint Migration Failed
 

Similar to SEF Unity Connect 2016 Office 365 Groups

Office 365 Groups Deep Dive
Office 365 Groups Deep DiveOffice 365 Groups Deep Dive
Office 365 Groups Deep DiveAndré Vala
 
Managing Office 365 Groups - SPFest Denver
Managing Office 365 Groups - SPFest DenverManaging Office 365 Groups - SPFest Denver
Managing Office 365 Groups - SPFest DenverDrew Madelung
 
Webinar: Deploy Microsoft Teams and stay in control
Webinar: Deploy Microsoft Teams and stay in controlWebinar: Deploy Microsoft Teams and stay in control
Webinar: Deploy Microsoft Teams and stay in controlShareGate
 
Office 365 Groups: Deep Dive
Office 365 Groups: Deep DiveOffice 365 Groups: Deep Dive
Office 365 Groups: Deep Divepearce.alex
 
Office365 groups from the ground up - Collab365 Global Conference
Office365 groups from the ground up - Collab365 Global ConferenceOffice365 groups from the ground up - Collab365 Global Conference
Office365 groups from the ground up - Collab365 Global ConferenceDrew Madelung
 
ECS19 - Rodrigo Pinto - Migrating to Teams, real cases and scenarios
ECS19 - Rodrigo Pinto - Migrating to Teams, real cases and scenariosECS19 - Rodrigo Pinto - Migrating to Teams, real cases and scenarios
ECS19 - Rodrigo Pinto - Migrating to Teams, real cases and scenariosEuropean Collaboration Summit
 
ESPC15 Th30 Microsoft Office 365 Groups Deep Dive
ESPC15 Th30 Microsoft Office 365 Groups Deep DiveESPC15 Th30 Microsoft Office 365 Groups Deep Dive
ESPC15 Th30 Microsoft Office 365 Groups Deep DiveKnut Relbe-Moe [MVP, MCT]
 
O365 Groups- Best Practices and Solutions
O365 Groups- Best Practices and SolutionsO365 Groups- Best Practices and Solutions
O365 Groups- Best Practices and SolutionsJohnConnected
 
Vivafy your SharePoint intranet in Microsoft Teams with Viva Connections
Vivafy your SharePoint intranet in Microsoft Teams with Viva ConnectionsVivafy your SharePoint intranet in Microsoft Teams with Viva Connections
Vivafy your SharePoint intranet in Microsoft Teams with Viva ConnectionsJoel Oleson
 
SqlSat Victoria governance for PowerBI
SqlSat Victoria governance for PowerBISqlSat Victoria governance for PowerBI
SqlSat Victoria governance for PowerBIBerkovich Consulting
 
Working with Security and Compliance in Microsoft Teams - Microsoft 365 Virtu...
Working with Security and Compliance in Microsoft Teams - Microsoft 365 Virtu...Working with Security and Compliance in Microsoft Teams - Microsoft 365 Virtu...
Working with Security and Compliance in Microsoft Teams - Microsoft 365 Virtu...Chirag Patel
 
Sp tech festdallas - office 365 groups - planner session
Sp tech festdallas - office 365 groups - planner sessionSp tech festdallas - office 365 groups - planner session
Sp tech festdallas - office 365 groups - planner sessionInnoTech
 
Introduction to Office 365 Groups - SharePoint Fest Chicago
Introduction to Office 365 Groups - SharePoint Fest ChicagoIntroduction to Office 365 Groups - SharePoint Fest Chicago
Introduction to Office 365 Groups - SharePoint Fest ChicagoDrew Madelung
 
Office 365 Features for GDPR Compliance Webinar
Office 365 Features for GDPR Compliance WebinarOffice 365 Features for GDPR Compliance Webinar
Office 365 Features for GDPR Compliance WebinarNew Horizons Ireland
 
Strategies for Transitioning From SharePoint On-Prem to Office 365
Strategies for Transitioning From SharePoint On-Prem to Office 365Strategies for Transitioning From SharePoint On-Prem to Office 365
Strategies for Transitioning From SharePoint On-Prem to Office 365Kanwal Khipple
 
Webinar: You made the move to Office 365—now what?
Webinar: You made the move to Office 365—now what?Webinar: You made the move to Office 365—now what?
Webinar: You made the move to Office 365—now what?ShareGate
 
The Integration of Microsoft Teams and Skype for Business
The Integration of Microsoft Teams and Skype for BusinessThe Integration of Microsoft Teams and Skype for Business
The Integration of Microsoft Teams and Skype for BusinessChristian Buckley
 
2016 01-30 SPS Dubai - Office 365 Groups: all you need to know about it and ...
2016 01-30 SPS Dubai - Office 365 Groups: all you need to know about it and ...2016 01-30 SPS Dubai - Office 365 Groups: all you need to know about it and ...
2016 01-30 SPS Dubai - Office 365 Groups: all you need to know about it and ...Patrick Guimonet
 
Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...
Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...
Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...Toni Frankola
 
Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...
Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...
Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...spsnyc
 

Similar to SEF Unity Connect 2016 Office 365 Groups (20)

Office 365 Groups Deep Dive
Office 365 Groups Deep DiveOffice 365 Groups Deep Dive
Office 365 Groups Deep Dive
 
Managing Office 365 Groups - SPFest Denver
Managing Office 365 Groups - SPFest DenverManaging Office 365 Groups - SPFest Denver
Managing Office 365 Groups - SPFest Denver
 
Webinar: Deploy Microsoft Teams and stay in control
Webinar: Deploy Microsoft Teams and stay in controlWebinar: Deploy Microsoft Teams and stay in control
Webinar: Deploy Microsoft Teams and stay in control
 
Office 365 Groups: Deep Dive
Office 365 Groups: Deep DiveOffice 365 Groups: Deep Dive
Office 365 Groups: Deep Dive
 
Office365 groups from the ground up - Collab365 Global Conference
Office365 groups from the ground up - Collab365 Global ConferenceOffice365 groups from the ground up - Collab365 Global Conference
Office365 groups from the ground up - Collab365 Global Conference
 
ECS19 - Rodrigo Pinto - Migrating to Teams, real cases and scenarios
ECS19 - Rodrigo Pinto - Migrating to Teams, real cases and scenariosECS19 - Rodrigo Pinto - Migrating to Teams, real cases and scenarios
ECS19 - Rodrigo Pinto - Migrating to Teams, real cases and scenarios
 
ESPC15 Th30 Microsoft Office 365 Groups Deep Dive
ESPC15 Th30 Microsoft Office 365 Groups Deep DiveESPC15 Th30 Microsoft Office 365 Groups Deep Dive
ESPC15 Th30 Microsoft Office 365 Groups Deep Dive
 
O365 Groups- Best Practices and Solutions
O365 Groups- Best Practices and SolutionsO365 Groups- Best Practices and Solutions
O365 Groups- Best Practices and Solutions
 
Vivafy your SharePoint intranet in Microsoft Teams with Viva Connections
Vivafy your SharePoint intranet in Microsoft Teams with Viva ConnectionsVivafy your SharePoint intranet in Microsoft Teams with Viva Connections
Vivafy your SharePoint intranet in Microsoft Teams with Viva Connections
 
SqlSat Victoria governance for PowerBI
SqlSat Victoria governance for PowerBISqlSat Victoria governance for PowerBI
SqlSat Victoria governance for PowerBI
 
Working with Security and Compliance in Microsoft Teams - Microsoft 365 Virtu...
Working with Security and Compliance in Microsoft Teams - Microsoft 365 Virtu...Working with Security and Compliance in Microsoft Teams - Microsoft 365 Virtu...
Working with Security and Compliance in Microsoft Teams - Microsoft 365 Virtu...
 
Sp tech festdallas - office 365 groups - planner session
Sp tech festdallas - office 365 groups - planner sessionSp tech festdallas - office 365 groups - planner session
Sp tech festdallas - office 365 groups - planner session
 
Introduction to Office 365 Groups - SharePoint Fest Chicago
Introduction to Office 365 Groups - SharePoint Fest ChicagoIntroduction to Office 365 Groups - SharePoint Fest Chicago
Introduction to Office 365 Groups - SharePoint Fest Chicago
 
Office 365 Features for GDPR Compliance Webinar
Office 365 Features for GDPR Compliance WebinarOffice 365 Features for GDPR Compliance Webinar
Office 365 Features for GDPR Compliance Webinar
 
Strategies for Transitioning From SharePoint On-Prem to Office 365
Strategies for Transitioning From SharePoint On-Prem to Office 365Strategies for Transitioning From SharePoint On-Prem to Office 365
Strategies for Transitioning From SharePoint On-Prem to Office 365
 
Webinar: You made the move to Office 365—now what?
Webinar: You made the move to Office 365—now what?Webinar: You made the move to Office 365—now what?
Webinar: You made the move to Office 365—now what?
 
The Integration of Microsoft Teams and Skype for Business
The Integration of Microsoft Teams and Skype for BusinessThe Integration of Microsoft Teams and Skype for Business
The Integration of Microsoft Teams and Skype for Business
 
2016 01-30 SPS Dubai - Office 365 Groups: all you need to know about it and ...
2016 01-30 SPS Dubai - Office 365 Groups: all you need to know about it and ...2016 01-30 SPS Dubai - Office 365 Groups: all you need to know about it and ...
2016 01-30 SPS Dubai - Office 365 Groups: all you need to know about it and ...
 
Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...
Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...
Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...
 
Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...
Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...
Governance in the Modern Workplace: SharePoint, OneDrive, Groups, Teams, Flow...
 

More from Knut Relbe-Moe [MVP, MCT]

How to build a Project Hub with Hubsites and Sitedesign and Sitescripts
How to build a Project Hub with Hubsites and Sitedesign and Sitescripts How to build a Project Hub with Hubsites and Sitedesign and Sitescripts
How to build a Project Hub with Hubsites and Sitedesign and Sitescripts Knut Relbe-Moe [MVP, MCT]
 
Mobility with Office 365 How to make use of it (different apps) in your organ...
Mobility with Office 365 How to make use of it (different apps) in your organ...Mobility with Office 365 How to make use of it (different apps) in your organ...
Mobility with Office 365 How to make use of it (different apps) in your organ...Knut Relbe-Moe [MVP, MCT]
 
How to build a Project Hub with Hubsites and Sitedesign and Sitescripts
How to build a Project Hub with Hubsites and Sitedesign and Sitescripts How to build a Project Hub with Hubsites and Sitedesign and Sitescripts
How to build a Project Hub with Hubsites and Sitedesign and Sitescripts Knut Relbe-Moe [MVP, MCT]
 
How hubsites raise SharePoint Intranet potential
How hubsites raise SharePoint Intranet potentialHow hubsites raise SharePoint Intranet potential
How hubsites raise SharePoint Intranet potentialKnut Relbe-Moe [MVP, MCT]
 
How hubsites raise SharePoints intranet potential
How hubsites raise SharePoints intranet potentialHow hubsites raise SharePoints intranet potential
How hubsites raise SharePoints intranet potentialKnut Relbe-Moe [MVP, MCT]
 
SPSNYC: How Hub Sites Raise SharePoint's Intranet Potential
SPSNYC: How Hub Sites Raise SharePoint's Intranet PotentialSPSNYC: How Hub Sites Raise SharePoint's Intranet Potential
SPSNYC: How Hub Sites Raise SharePoint's Intranet PotentialKnut Relbe-Moe [MVP, MCT]
 
How to automate the SharePoint Provisioning
How to automate the SharePoint Provisioning How to automate the SharePoint Provisioning
How to automate the SharePoint Provisioning Knut Relbe-Moe [MVP, MCT]
 
Can you build a Intranet with Modern SharePoint
Can you build a Intranet with Modern SharePointCan you build a Intranet with Modern SharePoint
Can you build a Intranet with Modern SharePointKnut Relbe-Moe [MVP, MCT]
 
Knut wf 203 get started with designer workflows
Knut wf 203   get started with designer workflowsKnut wf 203   get started with designer workflows
Knut wf 203 get started with designer workflowsKnut Relbe-Moe [MVP, MCT]
 
SharePoint 2016 The Future is Hybrid, what you need to know about it
SharePoint 2016 The Future is Hybrid, what you need to know about itSharePoint 2016 The Future is Hybrid, what you need to know about it
SharePoint 2016 The Future is Hybrid, what you need to know about itKnut Relbe-Moe [MVP, MCT]
 
Migrate from Lotus Notes to SharePoint 2013 or SharePoint Online - Tips, Tric...
Migrate from Lotus Notes to SharePoint 2013 or SharePoint Online - Tips, Tric...Migrate from Lotus Notes to SharePoint 2013 or SharePoint Online - Tips, Tric...
Migrate from Lotus Notes to SharePoint 2013 or SharePoint Online - Tips, Tric...Knut Relbe-Moe [MVP, MCT]
 
How to create a Windows app with Project Siena, SharePoint and Office 365
How to create a Windows app with Project Siena, SharePoint and Office 365How to create a Windows app with Project Siena, SharePoint and Office 365
How to create a Windows app with Project Siena, SharePoint and Office 365Knut Relbe-Moe [MVP, MCT]
 
ESPC15 Power BI - The New Way to Quickly Build Powerful Dashboards (Level 300)
ESPC15 Power BI - The New Way to Quickly Build Powerful Dashboards (Level 300)ESPC15 Power BI - The New Way to Quickly Build Powerful Dashboards (Level 300)
ESPC15 Power BI - The New Way to Quickly Build Powerful Dashboards (Level 300)Knut Relbe-Moe [MVP, MCT]
 
How to Create a Windows App with Project Siena, SharePoint & Office 365
 How to Create a Windows App with Project Siena, SharePoint & Office 365 How to Create a Windows App with Project Siena, SharePoint & Office 365
How to Create a Windows App with Project Siena, SharePoint & Office 365Knut Relbe-Moe [MVP, MCT]
 
Legacy SharePoint Platform Migrations (2003/2007)
Legacy SharePoint Platform Migrations (2003/2007)Legacy SharePoint Platform Migrations (2003/2007)
Legacy SharePoint Platform Migrations (2003/2007)Knut Relbe-Moe [MVP, MCT]
 
How to create a Windows app with Project Siena, SharePoint and Office 365
How to create a Windows app with Project Siena, SharePoint and Office 365How to create a Windows app with Project Siena, SharePoint and Office 365
How to create a Windows app with Project Siena, SharePoint and Office 365Knut Relbe-Moe [MVP, MCT]
 
Get your SharePoint spinning with SQL Server
Get your SharePoint spinning with SQL ServerGet your SharePoint spinning with SQL Server
Get your SharePoint spinning with SQL ServerKnut Relbe-Moe [MVP, MCT]
 

More from Knut Relbe-Moe [MVP, MCT] (20)

Knut relbe moe - teams-tips
Knut relbe moe - teams-tipsKnut relbe moe - teams-tips
Knut relbe moe - teams-tips
 
How to build a Project Hub with Hubsites and Sitedesign and Sitescripts
How to build a Project Hub with Hubsites and Sitedesign and Sitescripts How to build a Project Hub with Hubsites and Sitedesign and Sitescripts
How to build a Project Hub with Hubsites and Sitedesign and Sitescripts
 
Mobility with Office 365 How to make use of it (different apps) in your organ...
Mobility with Office 365 How to make use of it (different apps) in your organ...Mobility with Office 365 How to make use of it (different apps) in your organ...
Mobility with Office 365 How to make use of it (different apps) in your organ...
 
How to build a Project Hub with Hubsites and Sitedesign and Sitescripts
How to build a Project Hub with Hubsites and Sitedesign and Sitescripts How to build a Project Hub with Hubsites and Sitedesign and Sitescripts
How to build a Project Hub with Hubsites and Sitedesign and Sitescripts
 
How hubsites raise SharePoint Intranet potential
How hubsites raise SharePoint Intranet potentialHow hubsites raise SharePoint Intranet potential
How hubsites raise SharePoint Intranet potential
 
How hubsites raise SharePoints intranet potential
How hubsites raise SharePoints intranet potentialHow hubsites raise SharePoints intranet potential
How hubsites raise SharePoints intranet potential
 
SPSNYC: How Hub Sites Raise SharePoint's Intranet Potential
SPSNYC: How Hub Sites Raise SharePoint's Intranet PotentialSPSNYC: How Hub Sites Raise SharePoint's Intranet Potential
SPSNYC: How Hub Sites Raise SharePoint's Intranet Potential
 
How to automate the SharePoint Provisioning
How to automate the SharePoint Provisioning How to automate the SharePoint Provisioning
How to automate the SharePoint Provisioning
 
Can you build a Intranet with Modern SharePoint
Can you build a Intranet with Modern SharePointCan you build a Intranet with Modern SharePoint
Can you build a Intranet with Modern SharePoint
 
Knut wf 203 get started with designer workflows
Knut wf 203   get started with designer workflowsKnut wf 203   get started with designer workflows
Knut wf 203 get started with designer workflows
 
SharePoint 2016 The Future is Hybrid, what you need to know about it
SharePoint 2016 The Future is Hybrid, what you need to know about itSharePoint 2016 The Future is Hybrid, what you need to know about it
SharePoint 2016 The Future is Hybrid, what you need to know about it
 
Migrate from Lotus Notes to SharePoint 2013 or SharePoint Online - Tips, Tric...
Migrate from Lotus Notes to SharePoint 2013 or SharePoint Online - Tips, Tric...Migrate from Lotus Notes to SharePoint 2013 or SharePoint Online - Tips, Tric...
Migrate from Lotus Notes to SharePoint 2013 or SharePoint Online - Tips, Tric...
 
How to create a Windows app with Project Siena, SharePoint and Office 365
How to create a Windows app with Project Siena, SharePoint and Office 365How to create a Windows app with Project Siena, SharePoint and Office 365
How to create a Windows app with Project Siena, SharePoint and Office 365
 
ESPC15 Power BI - The New Way to Quickly Build Powerful Dashboards (Level 300)
ESPC15 Power BI - The New Way to Quickly Build Powerful Dashboards (Level 300)ESPC15 Power BI - The New Way to Quickly Build Powerful Dashboards (Level 300)
ESPC15 Power BI - The New Way to Quickly Build Powerful Dashboards (Level 300)
 
SharePoint Migrering unngå fallgruver
SharePoint Migrering unngå fallgruverSharePoint Migrering unngå fallgruver
SharePoint Migrering unngå fallgruver
 
How to Create a Windows App with Project Siena, SharePoint & Office 365
 How to Create a Windows App with Project Siena, SharePoint & Office 365 How to Create a Windows App with Project Siena, SharePoint & Office 365
How to Create a Windows App with Project Siena, SharePoint & Office 365
 
Legacy SharePoint Platform Migrations (2003/2007)
Legacy SharePoint Platform Migrations (2003/2007)Legacy SharePoint Platform Migrations (2003/2007)
Legacy SharePoint Platform Migrations (2003/2007)
 
How to create a Windows app with Project Siena, SharePoint and Office 365
How to create a Windows app with Project Siena, SharePoint and Office 365How to create a Windows app with Project Siena, SharePoint and Office 365
How to create a Windows app with Project Siena, SharePoint and Office 365
 
Speakers slidedeckwidescreen sp-biz
Speakers slidedeckwidescreen   sp-bizSpeakers slidedeckwidescreen   sp-biz
Speakers slidedeckwidescreen sp-biz
 
Get your SharePoint spinning with SQL Server
Get your SharePoint spinning with SQL ServerGet your SharePoint spinning with SQL Server
Get your SharePoint spinning with SQL Server
 

Recently uploaded

PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.
PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.
PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.KathleenAnnCordero2
 
THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...
THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...
THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...漢銘 謝
 
PHYSICS PROJECT BY MSC - NANOTECHNOLOGY
PHYSICS PROJECT BY MSC  - NANOTECHNOLOGYPHYSICS PROJECT BY MSC  - NANOTECHNOLOGY
PHYSICS PROJECT BY MSC - NANOTECHNOLOGYpruthirajnayak525
 
RACHEL-ANN M. TENIBRO PRODUCT RESEARCH PRESENTATION
RACHEL-ANN M. TENIBRO PRODUCT RESEARCH PRESENTATIONRACHEL-ANN M. TENIBRO PRODUCT RESEARCH PRESENTATION
RACHEL-ANN M. TENIBRO PRODUCT RESEARCH PRESENTATIONRachelAnnTenibroAmaz
 
The 3rd Intl. Workshop on NL-based Software Engineering
The 3rd Intl. Workshop on NL-based Software EngineeringThe 3rd Intl. Workshop on NL-based Software Engineering
The 3rd Intl. Workshop on NL-based Software EngineeringSebastiano Panichella
 
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...Krijn Poppe
 
miladyskindiseases-200705210221 2.!!pptx
miladyskindiseases-200705210221 2.!!pptxmiladyskindiseases-200705210221 2.!!pptx
miladyskindiseases-200705210221 2.!!pptxCarrieButtitta
 
Early Modern Spain. All about this period
Early Modern Spain. All about this periodEarly Modern Spain. All about this period
Early Modern Spain. All about this periodSaraIsabelJimenez
 
Genshin Impact PPT Template by EaTemp.pptx
Genshin Impact PPT Template by EaTemp.pptxGenshin Impact PPT Template by EaTemp.pptx
Genshin Impact PPT Template by EaTemp.pptxJohnree4
 
Quality by design.. ppt for RA (1ST SEM
Quality by design.. ppt for  RA (1ST SEMQuality by design.. ppt for  RA (1ST SEM
Quality by design.. ppt for RA (1ST SEMCharmi13
 
Chizaram's Women Tech Makers Deck. .pptx
Chizaram's Women Tech Makers Deck.  .pptxChizaram's Women Tech Makers Deck.  .pptx
Chizaram's Women Tech Makers Deck. .pptxogubuikealex
 
Anne Frank A Beacon of Hope amidst darkness ppt.pptx
Anne Frank A Beacon of Hope amidst darkness ppt.pptxAnne Frank A Beacon of Hope amidst darkness ppt.pptx
Anne Frank A Beacon of Hope amidst darkness ppt.pptxnoorehahmad
 
SBFT Tool Competition 2024 -- Python Test Case Generation Track
SBFT Tool Competition 2024 -- Python Test Case Generation TrackSBFT Tool Competition 2024 -- Python Test Case Generation Track
SBFT Tool Competition 2024 -- Python Test Case Generation TrackSebastiano Panichella
 
Mathan flower ppt.pptx slide orchids ✨🌸
Mathan flower ppt.pptx slide orchids ✨🌸Mathan flower ppt.pptx slide orchids ✨🌸
Mathan flower ppt.pptx slide orchids ✨🌸mathanramanathan2005
 
INDIAN GCP GUIDELINE. for Regulatory affair 1st sem CRR
INDIAN GCP GUIDELINE. for Regulatory  affair 1st sem CRRINDIAN GCP GUIDELINE. for Regulatory  affair 1st sem CRR
INDIAN GCP GUIDELINE. for Regulatory affair 1st sem CRRsarwankumar4524
 
Event 4 Introduction to Open Source.pptx
Event 4 Introduction to Open Source.pptxEvent 4 Introduction to Open Source.pptx
Event 4 Introduction to Open Source.pptxaryanv1753
 
DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...
DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...
DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...Henrik Hanke
 
Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...
Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...
Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...marjmae69
 
Dutch Power - 26 maart 2024 - Henk Kras - Circular Plastics
Dutch Power - 26 maart 2024 - Henk Kras - Circular PlasticsDutch Power - 26 maart 2024 - Henk Kras - Circular Plastics
Dutch Power - 26 maart 2024 - Henk Kras - Circular PlasticsDutch Power
 
Work Remotely with Confluence ACE 2.pptx
Work Remotely with Confluence ACE 2.pptxWork Remotely with Confluence ACE 2.pptx
Work Remotely with Confluence ACE 2.pptxmavinoikein
 

Recently uploaded (20)

PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.
PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.
PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.
 
THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...
THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...
THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...
 
PHYSICS PROJECT BY MSC - NANOTECHNOLOGY
PHYSICS PROJECT BY MSC  - NANOTECHNOLOGYPHYSICS PROJECT BY MSC  - NANOTECHNOLOGY
PHYSICS PROJECT BY MSC - NANOTECHNOLOGY
 
RACHEL-ANN M. TENIBRO PRODUCT RESEARCH PRESENTATION
RACHEL-ANN M. TENIBRO PRODUCT RESEARCH PRESENTATIONRACHEL-ANN M. TENIBRO PRODUCT RESEARCH PRESENTATION
RACHEL-ANN M. TENIBRO PRODUCT RESEARCH PRESENTATION
 
The 3rd Intl. Workshop on NL-based Software Engineering
The 3rd Intl. Workshop on NL-based Software EngineeringThe 3rd Intl. Workshop on NL-based Software Engineering
The 3rd Intl. Workshop on NL-based Software Engineering
 
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...
 
miladyskindiseases-200705210221 2.!!pptx
miladyskindiseases-200705210221 2.!!pptxmiladyskindiseases-200705210221 2.!!pptx
miladyskindiseases-200705210221 2.!!pptx
 
Early Modern Spain. All about this period
Early Modern Spain. All about this periodEarly Modern Spain. All about this period
Early Modern Spain. All about this period
 
Genshin Impact PPT Template by EaTemp.pptx
Genshin Impact PPT Template by EaTemp.pptxGenshin Impact PPT Template by EaTemp.pptx
Genshin Impact PPT Template by EaTemp.pptx
 
Quality by design.. ppt for RA (1ST SEM
Quality by design.. ppt for  RA (1ST SEMQuality by design.. ppt for  RA (1ST SEM
Quality by design.. ppt for RA (1ST SEM
 
Chizaram's Women Tech Makers Deck. .pptx
Chizaram's Women Tech Makers Deck.  .pptxChizaram's Women Tech Makers Deck.  .pptx
Chizaram's Women Tech Makers Deck. .pptx
 
Anne Frank A Beacon of Hope amidst darkness ppt.pptx
Anne Frank A Beacon of Hope amidst darkness ppt.pptxAnne Frank A Beacon of Hope amidst darkness ppt.pptx
Anne Frank A Beacon of Hope amidst darkness ppt.pptx
 
SBFT Tool Competition 2024 -- Python Test Case Generation Track
SBFT Tool Competition 2024 -- Python Test Case Generation TrackSBFT Tool Competition 2024 -- Python Test Case Generation Track
SBFT Tool Competition 2024 -- Python Test Case Generation Track
 
Mathan flower ppt.pptx slide orchids ✨🌸
Mathan flower ppt.pptx slide orchids ✨🌸Mathan flower ppt.pptx slide orchids ✨🌸
Mathan flower ppt.pptx slide orchids ✨🌸
 
INDIAN GCP GUIDELINE. for Regulatory affair 1st sem CRR
INDIAN GCP GUIDELINE. for Regulatory  affair 1st sem CRRINDIAN GCP GUIDELINE. for Regulatory  affair 1st sem CRR
INDIAN GCP GUIDELINE. for Regulatory affair 1st sem CRR
 
Event 4 Introduction to Open Source.pptx
Event 4 Introduction to Open Source.pptxEvent 4 Introduction to Open Source.pptx
Event 4 Introduction to Open Source.pptx
 
DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...
DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...
DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...
 
Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...
Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...
Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...
 
Dutch Power - 26 maart 2024 - Henk Kras - Circular Plastics
Dutch Power - 26 maart 2024 - Henk Kras - Circular PlasticsDutch Power - 26 maart 2024 - Henk Kras - Circular Plastics
Dutch Power - 26 maart 2024 - Henk Kras - Circular Plastics
 
Work Remotely with Confluence ACE 2.pptx
Work Remotely with Confluence ACE 2.pptxWork Remotely with Confluence ACE 2.pptx
Work Remotely with Confluence ACE 2.pptx
 

SEF Unity Connect 2016 Office 365 Groups

  • 1. Office 365 Groups Deep Dive Presented by: Knut Relbe-Moe CTO, Knowledge People Product Evangelist & Partner Manager Valo Intranet in Box
  • 2.
  • 3. About me BLOG LINKED IN TWITTER EMAIL MEMBER OF MEMBER OF WORKS FOR JOB TITLE Microsoft MVP Office Servers and Services Product Evangelist & Partner Manager https://linkedin.com/in/shareptkarm knut@valointranet.com / knut@knowledgepeople.no http://www.valointranet.com @shareptkarm NIWUG AWARDED AWARDED Nintex vTE Nintex Virtual Technical Evangelist SharePoint Saturday Oslo http://sharepointblog.no WWW CTO
  • 4. Ready-to-go Modern intranet on Office 365 and SharePoint Valo
  • 6. Valo Intranet is a finalist in the best Intranet / Extranet awards category valointranet.com
  • 7. Win Cool BB-8!!Valo Take part in the Raffle! Visit our booth
  • 8. Office 365: Complete Group Collaboration Solution Addressing the unique needs and workstyle of each group Groups Move from task to task with cross application group membership Graph Discover content and people with cross application intelligence Trust Control on your terms with cross application security & compliance Email and schedule Call and meetCreate, share, find content Connect across the org
  • 9. Agenda • Overview • Administration • Connectors • Extensibility • Advanced Topics • Roadmap
  • 10. THE WORLD HAS CHANGED
  • 11.
  • 12. Brings together people, information, and apps across Office 365, to enable better communication and collaboration.
  • 13. What’s new in 2016? • Public/private switch now adjustable • New document library features • Multi-domain support • Migrate distribution lists to Office 365 Groups • Dynamic Group membership (AAD Premium) • SharePoint Integration / Yammer https://support.office.com/en-us/article/Migrate-distribution-lists-to-Office-365-Groups-Admin-help- 787d7a75-e201-46f3-a242-f698162ff09f?ui=en-US&rs=en-US&ad=US https://support.office.com/en-us/article/Multi-domain-support-for-Office-365-Groups-Admin-help- 7cf5655d-e523-4bc3-a93b-3ccebf44a01a?ui=en-US&rs=en-US&ad=US
  • 14. Office 365 Group Experiences is available today!
  • 16. Public by default Key benefits Self-service Sharing to non-members Context & history Single definition Simple to manage
  • 17. Office 365 Groups Overview
  • 18.
  • 20. Group Management Experiences Office 365 Admin Center Office 365 Admin app Azure AD Admin Portal Exchange Admin console Execute against Azure AD as primary Synchronous notification/update in Exchange/SP *-UnifiedGroup / *-MsolGroup *-UnifiedGroupLinks *-MsolSettings Use PowerShell to manage Office 365 Groups > Get-UnifiedGroup #create/update/view groups and their settings > Get-UnifiedGroupLinks #Manage members, owners, and subscriber list > Get-MsolSettings #Manage tenant-wide group settings
  • 22. PowerShell: Connect Allow remote sessions Set-ExecutionPolicy Unrestricted Get usercredentials $userCredential = Get-Credential Open Powershell session $session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection Import-PSSession $session
  • 23. PowerShell: Unified Group Get list of groups Get-UnifiedGroup Get specific group Get-UnifiedGroup –Identity SalesTeam Create Group New-UnifiedGroup –DisplayName “Sales Team” –Alias SalesTeam Delete Group Remove-UnifiedGroup SalesTeam Set Group Options Set-UnifiedGroup –Identity SalesTeam – RequireSenderAuthenticationEnabled $true
  • 24. PowerShell: Unified Group Links Get Group Members Get-UnifiedGroupLinks –Identity SalesTeam –LinkType Members Add Member/Owner Add-UnifiedGroupLinks –Identity SalesTeam –Links my@email.pt –LinkType Members Add-UnifiedGroupLinks –Identity SalesTeam –Links my@email.pt –LinkType Owners Remove Group Member Remove-UnifiedGroupLinks SalesTeam –LinkType Members –Links my@email.pt Remove Group Owner Remove-UnifiedGroupLinks SalesTeam –LinkType Owners –Links my@email.pt Remove-UnifiedGroupLinks SalesTeam –LinkType Members –Links my@email.pt
  • 25. Policy controls • Set on display name during create/change • Blocked word list, pre-/post-fix based on AAD attributes or fixed text • Same policy for DL and groups • IT admins can override
  • 26. Naming policy Set on display name during create/change Blocked word list, pre-/post-fix based on AAD attributes IT admins can override New* the naming policy doesn’t apply to DLs synced from on- prem Will be replaced by AD policy in Fall 2016 Group creation permissions AD policy can restrict some users from creating groups anywhere in O365 Does not prevent users from using groups IT can still create groups See Manage Group Creation for more Dynamic membership Defined in Azure AD Admin Portal Directory Management
  • 27. Some Groups info • General info Get-UnifiedGroup | Format-Table Alias, PrimarySmtpAddress, WhenChanged, AccessType • Number of conversations + last logon date Get-UnifiedGroup | Foreach-Object { Get-MailboxStatistics -Identity $_.Identity} • Last content change in SharePoint Get-UnifiedGroup | Foreach-Object { Get-SPOSite -Identity $_.SharePointDocumentsUrl.replace("/Shared Documents","")} | Format-Table Title, Url, LastContentModifiedDate
  • 28.
  • 29. Office 365 Connectors • New Connector Card creates new message • 80+ Connectors available today • Incoming Webhooks • Possibility to create your own Connectors https://dev.outlook.com/connectors
  • 30.
  • 31. Security and Compliance Now on iOS, Android
  • 32. Admin Controls for Guest Access
  • 33. Information Protection – Current Support Current feature Scenario Old name Supported on Group Site? Supported on Group Mailbox? EDISCOVERY eDiscovery case Hold Ensure data is preserved for investigation/active litigation through eDiscovery In-place Hold Litigation Hold for EXO from EAC In-place Hold for SPO from SPO eDiscovery center In-Place Hold for EXO from SPO eDiscovery center Yes - using the group site URL Yes - using the group mailbox eDiscovery search through Security and Compliance center Search for data in Groups for litigation/investigation eDiscovery search for EXO from EAC eDiscovery search for EXO from SPO eDiscovery center eDiscovery search for SPO from SPO eDiscovery center Yes - using the group site URL Yes - using the group mailbox PRESERVATION AND DELETION Preservation policy from Security and Compliance Center Ensure all data is preserved for legal, regulatory and business continuity needs. In-place Hold Litigation Hold for EXO from EAC In-Place Hold for EXO from SPO eDiscovery center In-place Hold for SPO from SPO eDiscovery center Yes - using the group site URL Not yet Deletion policy from Security and Compliance Center Reduce legal risk and/or data lifecycle management by deleting data after some interval Retention policy in EXO Site Deletion policy in SPO Content type information management policy Not yet Not yet
  • 34. Auditing Reporting in the Azure AD Admin Portal Audit Log Search in O365 Admin Center Get-UnifiedGroup powershell
  • 35.
  • 36. Extensibility https://graph.microsoft.com/v1.0/groups https://graph.microsoft.com/beta/groups https://graph.microsoft.com/ USERS FILES MAIL CALENDARGROUPS Insights and relationships from Office Graph TASKS https://graph.Microsoft.io
  • 37. Microsoft Graph Highlights • GA: /v1.0/groups • Beta: /beta/groups  See http://graph.microsoft.io for more info • Single endpoint for group data  Tasks  OneNote  OneDrive  Mail  Calendar  Group management • Webhook Notifications  Receive notifications for group conversations • Favor MS Graph over AAD Graph  Closing functional gap with AAD Graph  New features targeting MS Graph  New apps should use MS Graph  AAD Graph remains for existing apps
  • 38.  Office 365 unified API overview  Office 365 Groups REST API reference  Deep Dive into the Office 365 Groups API
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44. Valo brings your Office 365 groups to your intranet
  • 46.
  • 47. Office 365 Planner Integrated with Office 365 Groups, so all of the conversations in Planner are available in Outlook 2016, Outlook on the web and the Outlook Groups mobile app. Create new plans, organize & assign tasks, share files, talk about what you’re working on, and get updates on progress.
  • 48.
  • 49. Hybrid Configuration Target Address - the service address of the Groups object Recipient Type Details - specifies that the Group is not mastered in the on-premises directory AAD Connect, write-back enabled Exchange 2013 CU11/2016 CU 1 –when individual mailboxes are on-premises Configure Office 365 Groups with on-premises Exchange hybrid
  • 50. Hybrid - UX Groups appear in the GAL* (Requires writeback) Access to group files (if licensed in SPO) Access to the group notebook Groups not shown in left nav Group contact cards appear as DLs
  • 51. Set Files Quota • Set a storage quota on a Group’s SharePoint site • Currently only through PowerShell Get-SPOSite –Identity https://<tenant>.sharepoint.com/sites/<group> -detailed |fl Set-SPOSite –Identity https://<tenant>.sharepoint.com/sites/<group> -StorageQuota 3000 -StorageQuotaWarningLevel 2000 Requires Site Collection Storage Management setting for the tenant is switched to Manual
  • 52. Send As Group • Allows a group member to send email as the Group • Currently only through PowerShell $groupAlias = "TestSendAs" $userAlias = "AlexD" $groupsRecipientDetails = Get-Recipient -RecipientDetails -groupmailbox -Identity $groupAlias Add-RecipientPermission -Identity $groupsRecipientDetails.Name -Trustee $userAlias -AccessRights SendAs
  • 53.
  • 54. Roadmap Office 365 Connectors Microsoft Planner Professional learning community groups Office 365 Groups + team sites integration Guest user access (external users) Calendaring improvements Notifications improvements Mobile improvements Outlook Groups iPad app Experiences File quota management Hybrid guidance & improvements Privacy type conversion Multi-domain support Creation policies in AAD Mobile application management Data classification and extensible policies Usage guidelines Exchange Admin Center UI for upgrading DL to Groups Administration Yammer Planner: multi-assign, external user, mobile Send As in Outlook on the web Outlook for Mac support Inbox tiered notifications Single Groups files view Search across Groups Skype Meet Now Continuously improving UI design Naming policies in AAD Hidden membership General usage reporting Preservation and deletion policies Soft-delete and restore Upgrade from nested, dynamic and hybrid DLs to Groups Improved hybrid experiences aka.ms/O365g aka.ms/O365ng fasttrack.microsoft.com/office fasttrack.office.com/roadmap aka.ms/Office365Groups Key Resources
  • 56. Resources Documentation • Microsoft Graph API • Hands On Labs: Deep Dive into the Microsoft Graph for Office 365 Groups • Office 365 unified API overview • Office 365 Groups REST API reference • Deep Dive into the Office 365 Groups API Tools • Graph Explorer • Groups Explorer
  • 58. Knut Relbe-Moe Product Evangelist & Partner Manager, Valo Intranet in a box knut@valointranet.com

Editor's Notes

  1. How many of you are using Groups? Next year, everyone in this room’s hands go up.  We’re here to equip you to be an enabled customer. Office 365 Groups are a tool companies use to help their staff form teams and work across the suite using a suite of familiar tools with low friction. Groups users can form teams in Office 365 as easy as they form in real life and work seamlessly across the suite. After creating group, users will find familiar ease in communicating and coming together with email and calendar from Exchange. Users will find collaboration and control working together on files powered by SharePoint and the group’s site. Users will find their team online for easy meetings or quick calls in Skype for Business. And of that’s not enough, users will find the same team connects to their teams in planner, reports in power BI and tens of other third-party services through connectors. This is all made possible by Office 365 – the graph which powers connection and insights across apps, and the governance you expect and demand from Office 365.
  2. Demo the service. Demo’s are available at //BI
  3. Our goal in this session is to set you up to institute a pilot for Office 365 groups with the tools we’re going to give you in this session. If you’re already using Groups, you’ll learn about new tools to manage Groups. First, you need to know where to go to administer groups…. You’ll also find rich support for powershell to manage individual groups and policy across all groups.
  4. Demo the service. Demo’s are available at //BI
  5. When rolling out groups in your organization, you may want to enact policies to indicate which groups are created by users, or to use user properties to help create clusters of groups in the directory. Two features that help with this are naming policy and blocked words. Naming policy is enacted in Exchange Admin Center today…. Naming policy and blocked words today apply to the vastness of Groups created in Exchange and Outlook. Support for naming conventions for all groups on all endpoints is moving into the directory very soon – Vince will tell you more about that later. When running your pilot, you may want to control the rollout of group creation to users while you apply necessary polices. That’s possible easill yusing AD powershell… And sometimes you want to create large groups that don’t require ongoing management – like folks in a discipline….
  6. Office 365 groups adhere to your organization’s information protection concerns - Whether it’s in Outlook on a PC or on a mobile device, know that data in Groups conforms to your policies for access and sharing. Over the last few months, we’ve enabled the Outlook Groups mobile apps to support mobile app management through Intune and other management providers. Also, if a group needs to be made private, you can easily make that change at any time in the UI, admin settings, etc.
  7. In-place hold and preservation policy scenario also includes: Typically accomplished using 3rd party archives such as Enterprise Vault. For example SEC Rule 17a-4 states that many of the records, including communications that relate to the broker-dealer's business as such, must be retained for three years; All will support Groups as a first-class object in Fall 2016
  8. “But I’ve heard that there aren’t any compliance features for Groups!” Many critical capabilities exist today, and enhanced features are releasing in the coming months. What if you need to know who created which groups? What if you need to perform ediscovery against group content?
  9. Demo the service. Demo’s are available at //BI