SlideShare a Scribd company logo
1 of 59
Microsoft Planner Deep Dive
24June2017
Thanks to the Sponsors!
https://andrevala.com
/in/andrevala
@atomicvee
andre.vala@gmail.com
André Vala
SharePoint Lead Architect @ everis Portugal
Office Servers and Services MVP
SharePointer for 11+ years
Speaker & author
Who Am I?
Agenda
Under the
hood RoadmapOverview
Managing
Plans
Planner
Integration
19 SLIDES + 1 DEMO
LEVEL: 100
ALL
4 SLIDES
LEVEL: 200
DEV+ITPRO
12 SLIDES + 2 DEMOS
LEVEL: 300
ITPRO
13 SLIDES + 1 DEMO
LEVEL: 300
DEV
4 SLIDES
LEVEL: 100
ALL
Microsoft Planner
30% of executives say the greatest
challenge to executing strategy is
the failure to coordinate across units1
62% of employees work
from multiple locations in a
month2
25% of the average worker’s time goes
into looking for information3
1. Harvard Business Review. “Why Strategy Execution
Unravels—and What to Do About It.”
2. Forrester Remote Work Survey
3. IDC. “The High Cost of Not Finding Information.”
MODERN WORKPLACE CHALLENGES
One size doesn’t fit all
OVERVIEW
SMS
Work Management
OVERVIEW
Wunderlist
Planner
Project
Low Medium High
PMO / Executives
and Project Teams
Ad-hoc Teams
Individuals
LEVEL OF COMPLEXITY
To-Do
Competition
OVERVIEW
Planner Concepts
OVERVIEW
Planner Hub
• Shows a summary of
each of the user’s
favorite plans
• Allows access to all of
the organization’s public
plans
Planner Concepts
OVERVIEW
Plan
• Owned by a group
• Inherits group’s members
• Contains tasks
• Contains buckets
Planner Concepts
OVERVIEW
Task
• Represented by a card
• Placed in a bucket
• Can be assigned to one or
more members
• Can have a start and due
date
• Has a progress status
• Can contain a checklist
• Can have files attached or
linked
• Can have labels
• Can have comments
Planner Concepts
OVERVIEW
Comments
Attachments
Progress Status
Owner(s)
Label
Start Date
Due Date
Checklist
Planner Concepts
OVERVIEW
Bucket
• Set of tasks organized in
a column
• Can have any name
• A plan can have several
buckets
Planner Concepts
OVERVIEW
Chart View
• Shows plan tasks by
status
• Shows tasks by group
member
• Lists tasks and allows
grouping and filtering
What is this? A Moon?
A Space Station!
Death Star
Superlaser
Who is this? Darth Vader
Who is this? Director Krennic
Overview
Out-of-the-box Compliance
ISO 27001
ISO 27018
EU Model Clauses
HIPAA BAA
SOC 1 & 2
OVERVIEW
Planner Mobile Apps
OVERVIEW
Native Android
Windows 10 Universal App
Native iOS
SOON SOONAVAILABLE NOW
Requirements
Office 365 Enterprise (E1, E3, E4 and E5)
Office 365 Education (E1, E3, E4 and E5)
Office 365 Business Essentials
Office 365 Business Premium
OVERVIEW
Microsoft Planner
Architecture
UNDER THE HOOD
GROUP
NOTEBOOKCALENDAR
CONVERSATIONS
MEMBERSHIP
PLANFILES
OneNote
Azure Active
Directory
Azure
Web App
SharePoint
Team Site
Exchange Mailbox
Yammer Group
Exchange
Calendar
TEAM
Azure
Web App
Architecture
UNDER THE HOOD
Azure AD
Azure
Exchange
Mailbox
Yammer
Group
SharePoint
Team Site
Data Model
UNDER THE HOOD
GROUP
TASKBUCKET
PLAN DETAIL
TASK DETAIL
USER
FILE
PLAN TASKBOARD
1
N
1 1
CATEGORY
1
6
1
N
1 N
PLAN
13
1
1
N N
ASSIGNED TO
N N
REFERENCE
N
N
MEMBER
PROGRESS TASKBOARD
BUCKET TASKBOARD
ASSIGNED TO TASKBOARD
N
1
Microsoft Planner
Management UI
MANAGING PLANS
Azure AD Control Panel
Office 365 Admin Center
Office 365
Admin App
Management UI
MANAGING PLANS
Task Azure AD
Control Panel
Office 365
Admin Center
Office 365
Admin App
Create, update and delete groups
Add and remove group members
and owners
Set dynamic membership policies
Management UI
PowerShell
MANAGING PLANS
*-UnifiedGroup
Create, edit and delete groups
Manage single-value properties available on the Group object
*-UnifiedGroupLinks
Manage members, owners and subscriber list
Use PowerShell to manage Office 365 Groups
Convert an Exchange distribution group to an Office 365 Group
Plan Creation Policies
MANAGING PLANS
PS> Connect-MsolService
PS> $policy = Get-MsolAllSettingTemplate | where-object {$_.displayname -eq "Group.Unified"}
PS> $setting = $policy.CreateSettingsObject()
PS> $setting["EnableGroupCreation"] = "false"
PS> $setting["GroupCreationAllowedGroupId"] = "{group ID}"
PS> New-MsolSettings -SettingsObject $setting
Manage Office 365 Group creation
Disable Guest Access
MANAGING PLANS
PS> Connect-MsolService
PS> $policy = Get-MsolAllSettingTemplate | where-object {$_.displayname -eq "Group.Unified"}
PS> $setting = $policy.CreateSettingsObject()
PS> $setting["AllowGuestsToAccessGroups"] = "false"
PS> New-MsolSettings -SettingsObject $setting
Guest access to Office 365 groups - Admin Help
Prevent Users From Adding Guests
MANAGING PLANS
PS> Connect-MsolService
PS> $policy = Get-MsolAllSettingTemplate | where-object {$_.displayname -eq "Group.Unified"}
PS> $setting = $policy.CreateSettingsObject()
PS> $setting["AllowToAddGuests"] = "false"
PS> New-MsolSettings -SettingsObject $setting
Guest access to Office 365 groups - Admin Help
Who is this? Galen Erso
Managing Plans
with PowerShell
Naming Conventions
MANAGING PLANS
Dynamic Membership
MANAGING PLANS
Managing groups in Azure Active Directory
Microsoft Planner
Microsoft Graph API
PLANNER INTEGRATION
https://graph.microsoft.com/
USERS FILES MAIL CALENDARGROUPS
Insights and relationships from Microsoft Graph
TASKS
Microsoft Graph API
PLANNER INTEGRATION
EVENTS
MANAGEMENT
CONVERSATIONS
NOTES DRIVE
PLANS PLANS
BUCKETS
TASKS
GROUPS API TASKS API
Tasks API Overview
Groups API
PLANNER INTEGRATION
Get Group Info
GET https://graph.microsoft.com/v1.0/groups/{id}/
Get Group Members
GET https://graph.microsoft.com/v1.0/groups/{id}/members
Get Group Plans
GET https://graph.microsoft.com/beta/groups/{id}/plans
Get Groups I’m a Member Of
GET https://graph.microsoft.com/v1.0/me/getMemberGroups
Plans API
PLANNER INTEGRATION
Get Plan Info
GET https://graph.microsoft.com/beta/plans?$filter=owner eq '{id}'
Get Plan Details
GET https://graph.microsoft.com/beta/plans/{id}/details
Get Plan Buckets
GET https://graph.microsoft.com/beta/plans/{id}/buckets
Get Plan Tasks
GET https://graph.microsoft.com/beta/plans/{id}/tasks
Group ID
Tasks API
PLANNER INTEGRATION
Get My Tasks
GET https://graph.microsoft.com/beta/tasks?$filter=createdby eq 'me'
Get Task Info
GET https://graph.microsoft.com/beta/tasks/{id}
Get Task Details
GET https://graph.microsoft.com/beta/tasks/{id}/details
Buckets API
PLANNER INTEGRATION
Get Bucket Info
GET https://graph.microsoft.com/beta/buckets/{id}
Get Bucket Tasks
GET https://graph.microsoft.com/beta/buckets/{id}/tasks
Death Star Plans
Stolen Death
Star Plans
Jyn Erso
Darth Vader tried to avoid the theft...
R2-D2
Copied Death
Star Plans
Princess Leia
Design flaw?
Thermal
Exhaust Port
Planner Integration
Microsoft Planner
Roadmap
Available Now
• Creation Policy in AAD
• External user access
• Multiple users per task
• Alert management
• Planner mobile apps
Soon
• Plan templates
• Timeline view
• Custom backgrounds
Most Requested
• Integrate tasks with calendar
• Better integration with
Outlook
• Due date notification
• Multiple plans per group
• Search capabilities
https://roadmap.office.com https://planner.uservoice.com
IN PROGRESS
PARTIALLY
External User Access
ROADMAP
Plan Owner/Members
 Owners can add guest users
 Members are aware of guest participation across
all group endpoints
Guests (subscribed experience in their email account)
 Receives a welcome email and groups messages
 Access Plans as well as files and notes
Tenant Admin can turn on/off:
 Guest access to groups within tenant
 Adding of guest users per group
 Adding of guest users across any group within
tenant
Plan Templates
Early Thinking (plans may change)
 Start from existing plan / copy plan
 User/Org defined templates
 Task/Bucket/Checklist templates
 Recurring Tasks
 NOT Microsoft defined templates
ROADMAP
Next Steps
Microsoft Tech Community
https://techcommunity.microsoft.com
Planner @ User Voice
https://planner.uservoice.com
Answers @ Microsoft
https://answers.microsoft.com
Office Blog
https://blogs.office.com
Office Roadmap
http://roadmap.office.com
Q&A
Thank you
Brian Kesinger
https://andrevala.com
/in/andrevala
@atomicvee
andre.vala@gmail.com
Thanks to the Sponsors!

More Related Content

What's hot

How to Get Your Organizations To Start Using Microsoft Teams
How to Get Your Organizations To Start Using Microsoft TeamsHow to Get Your Organizations To Start Using Microsoft Teams
How to Get Your Organizations To Start Using Microsoft TeamsDux Raymond Sy
 
Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013Vishal Pawar
 
Planning Your Migration to SharePoint Online #SPBiz60
Planning Your Migration to SharePoint Online #SPBiz60Planning Your Migration to SharePoint Online #SPBiz60
Planning Your Migration to SharePoint Online #SPBiz60Christian Buckley
 
Microsoft Teams Preview - Technical Overview
Microsoft Teams Preview - Technical OverviewMicrosoft Teams Preview - Technical Overview
Microsoft Teams Preview - Technical OverviewOlivier Carpentier
 
Do I Use Planner, Project Online, or Azure DevOps?
Do I Use Planner, Project Online, or Azure DevOps?Do I Use Planner, Project Online, or Azure DevOps?
Do I Use Planner, Project Online, or Azure DevOps?Christian Buckley
 
Microsoft Teams Tutorial
Microsoft Teams TutorialMicrosoft Teams Tutorial
Microsoft Teams TutorialFocusU Engage
 
Microsoft Teams Quick Start Guide
Microsoft Teams Quick Start GuideMicrosoft Teams Quick Start Guide
Microsoft Teams Quick Start GuidePhil Vincent
 
Introduction to microsoft teams
Introduction to microsoft teamsIntroduction to microsoft teams
Introduction to microsoft teamsStuartDow5
 
Introduction to Microsoft Teams
Introduction to Microsoft TeamsIntroduction to Microsoft Teams
Introduction to Microsoft TeamsGreg McMurray
 
Microsoft Viva - understanding the four types of Viva
Microsoft Viva - understanding the four types of VivaMicrosoft Viva - understanding the four types of Viva
Microsoft Viva - understanding the four types of VivaMatthew Carter
 
Power Automate Overview
Power Automate OverviewPower Automate Overview
Power Automate OverviewTristanMobbs
 
Dynamics 365 introduction and functional
Dynamics 365 introduction and functionalDynamics 365 introduction and functional
Dynamics 365 introduction and functionalSatish Reddy
 
Introduction to jira
Introduction to jiraIntroduction to jira
Introduction to jiraKhubaib Ahmed
 
Office 365 and using SharePoint Online
Office 365 and using SharePoint OnlineOffice 365 and using SharePoint Online
Office 365 and using SharePoint OnlineCliff Ashcroft
 
Viva Connections from Microsoft
Viva Connections from MicrosoftViva Connections from Microsoft
Viva Connections from MicrosoftDavid J Rosenthal
 
Ensuring Successful Office 365 Tenant to Tenant Migration SPS Cambridge 2017...
Ensuring Successful Office 365 Tenant to Tenant Migration  SPS Cambridge 2017...Ensuring Successful Office 365 Tenant to Tenant Migration  SPS Cambridge 2017...
Ensuring Successful Office 365 Tenant to Tenant Migration SPS Cambridge 2017...Chirag Patel
 

What's hot (20)

Microsoft Viva
Microsoft VivaMicrosoft Viva
Microsoft Viva
 
How to Get Your Organizations To Start Using Microsoft Teams
How to Get Your Organizations To Start Using Microsoft TeamsHow to Get Your Organizations To Start Using Microsoft Teams
How to Get Your Organizations To Start Using Microsoft Teams
 
Power Automate
Power AutomatePower Automate
Power Automate
 
Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013
 
Planning Your Migration to SharePoint Online #SPBiz60
Planning Your Migration to SharePoint Online #SPBiz60Planning Your Migration to SharePoint Online #SPBiz60
Planning Your Migration to SharePoint Online #SPBiz60
 
Microsoft Teams Preview - Technical Overview
Microsoft Teams Preview - Technical OverviewMicrosoft Teams Preview - Technical Overview
Microsoft Teams Preview - Technical Overview
 
Do I Use Planner, Project Online, or Azure DevOps?
Do I Use Planner, Project Online, or Azure DevOps?Do I Use Planner, Project Online, or Azure DevOps?
Do I Use Planner, Project Online, or Azure DevOps?
 
Microsoft Teams Tutorial
Microsoft Teams TutorialMicrosoft Teams Tutorial
Microsoft Teams Tutorial
 
Microsoft Teams Quick Start Guide
Microsoft Teams Quick Start GuideMicrosoft Teams Quick Start Guide
Microsoft Teams Quick Start Guide
 
Introduction to microsoft teams
Introduction to microsoft teamsIntroduction to microsoft teams
Introduction to microsoft teams
 
Introduction to Microsoft Teams
Introduction to Microsoft TeamsIntroduction to Microsoft Teams
Introduction to Microsoft Teams
 
Microsoft Viva - understanding the four types of Viva
Microsoft Viva - understanding the four types of VivaMicrosoft Viva - understanding the four types of Viva
Microsoft Viva - understanding the four types of Viva
 
Power Automate Overview
Power Automate OverviewPower Automate Overview
Power Automate Overview
 
Dynamics 365 introduction and functional
Dynamics 365 introduction and functionalDynamics 365 introduction and functional
Dynamics 365 introduction and functional
 
Introduction to jira
Introduction to jiraIntroduction to jira
Introduction to jira
 
Office 365 and using SharePoint Online
Office 365 and using SharePoint OnlineOffice 365 and using SharePoint Online
Office 365 and using SharePoint Online
 
Viva Connections from Microsoft
Viva Connections from MicrosoftViva Connections from Microsoft
Viva Connections from Microsoft
 
Ensuring Successful Office 365 Tenant to Tenant Migration SPS Cambridge 2017...
Ensuring Successful Office 365 Tenant to Tenant Migration  SPS Cambridge 2017...Ensuring Successful Office 365 Tenant to Tenant Migration  SPS Cambridge 2017...
Ensuring Successful Office 365 Tenant to Tenant Migration SPS Cambridge 2017...
 
Power platform power automate in a day
Power platform   power automate in a dayPower platform   power automate in a day
Power platform power automate in a day
 
Modern Workplace with Microsoft 365
Modern Workplace with Microsoft 365Modern Workplace with Microsoft 365
Modern Workplace with Microsoft 365
 

Similar to Microsoft Planner Deep Dive

Planning the Death Star with Microsoft Planner
Planning the Death Star with Microsoft PlannerPlanning the Death Star with Microsoft Planner
Planning the Death Star with Microsoft PlannerAndré Vala
 
Microsoft Planner Deep Dive
Microsoft Planner Deep DiveMicrosoft Planner Deep Dive
Microsoft Planner Deep DiveAndré Vala
 
The slides from my session with Albert-Jan Schot at SharePoint Saturday Monaco
The slides from my session with Albert-Jan Schot at SharePoint Saturday MonacoThe slides from my session with Albert-Jan Schot at SharePoint Saturday Monaco
The slides from my session with Albert-Jan Schot at SharePoint Saturday MonacoRick Van Rousselt
 
O365 Saturday MS Graph API
O365 Saturday MS Graph APIO365 Saturday MS Graph API
O365 Saturday MS Graph APIAshish Trivedi
 
DevTeach 2016 - Introduction to AngularJS in an Office 365 Context
DevTeach 2016 - Introduction to AngularJS in an Office 365 ContextDevTeach 2016 - Introduction to AngularJS in an Office 365 Context
DevTeach 2016 - Introduction to AngularJS in an Office 365 ContextSébastien Levert
 
Microsoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needsMicrosoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needsMicrosoft Tech Community
 
Microsoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needsMicrosoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needsMicrosoft Tech Community
 
Microsoft Graph API - A Single Stop For Your Cloud Solution
Microsoft Graph API - A Single Stop For Your Cloud SolutionMicrosoft Graph API - A Single Stop For Your Cloud Solution
Microsoft Graph API - A Single Stop For Your Cloud SolutionDipti Chhatrapati
 
Collaboration and Work Management
Collaboration and Work ManagementCollaboration and Work Management
Collaboration and Work ManagementMicrosoft
 
Understanding Tasks End-to-End
Understanding Tasks End-to-EndUnderstanding Tasks End-to-End
Understanding Tasks End-to-EndChristian Buckley
 
SharePoint Saturday Cape Town 2019 - - Without Change, There Would Be No Butt...
SharePoint Saturday Cape Town 2019 - - Without Change, There Would Be No Butt...SharePoint Saturday Cape Town 2019 - - Without Change, There Would Be No Butt...
SharePoint Saturday Cape Town 2019 - - Without Change, There Would Be No Butt...Heather Newman
 
Lviv PMDay 2016 S Олексій Просніцький: Нові продукти та “нове” в продуктах ві...
Lviv PMDay 2016 S Олексій Просніцький: Нові продукти та “нове” в продуктах ві...Lviv PMDay 2016 S Олексій Просніцький: Нові продукти та “нове” в продуктах ві...
Lviv PMDay 2016 S Олексій Просніцький: Нові продукти та “нове” в продуктах ві...Lviv Startup Club
 
Project Management with SharePoint 2010
Project Management with SharePoint 2010Project Management with SharePoint 2010
Project Management with SharePoint 2010Greg Kiefer
 
Microsoft Graph community call - April, 2018
Microsoft Graph community call - April, 2018Microsoft Graph community call - April, 2018
Microsoft Graph community call - April, 2018Microsoft 365 Developer
 
New Business Development Proposal - Adding Project Portfolio Management (PPM)...
New Business Development Proposal - Adding Project Portfolio Management (PPM)...New Business Development Proposal - Adding Project Portfolio Management (PPM)...
New Business Development Proposal - Adding Project Portfolio Management (PPM)...Rolly Perreaux, PMP
 

Similar to Microsoft Planner Deep Dive (20)

Planning the Death Star with Microsoft Planner
Planning the Death Star with Microsoft PlannerPlanning the Death Star with Microsoft Planner
Planning the Death Star with Microsoft Planner
 
Microsoft Planner Deep Dive
Microsoft Planner Deep DiveMicrosoft Planner Deep Dive
Microsoft Planner Deep Dive
 
The slides from my session with Albert-Jan Schot at SharePoint Saturday Monaco
The slides from my session with Albert-Jan Schot at SharePoint Saturday MonacoThe slides from my session with Albert-Jan Schot at SharePoint Saturday Monaco
The slides from my session with Albert-Jan Schot at SharePoint Saturday Monaco
 
O365 Saturday MS Graph API
O365 Saturday MS Graph APIO365 Saturday MS Graph API
O365 Saturday MS Graph API
 
DevTeach 2016 - Introduction to AngularJS in an Office 365 Context
DevTeach 2016 - Introduction to AngularJS in an Office 365 ContextDevTeach 2016 - Introduction to AngularJS in an Office 365 Context
DevTeach 2016 - Introduction to AngularJS in an Office 365 Context
 
Microsoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needsMicrosoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needs
 
Microsoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needsMicrosoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needs
 
Microsoft Graph API - A Single Stop For Your Cloud Solution
Microsoft Graph API - A Single Stop For Your Cloud SolutionMicrosoft Graph API - A Single Stop For Your Cloud Solution
Microsoft Graph API - A Single Stop For Your Cloud Solution
 
Collaboration and Work Management
Collaboration and Work ManagementCollaboration and Work Management
Collaboration and Work Management
 
Understanding Tasks End-to-End
Understanding Tasks End-to-EndUnderstanding Tasks End-to-End
Understanding Tasks End-to-End
 
SharePoint Saturday Cape Town 2019 - - Without Change, There Would Be No Butt...
SharePoint Saturday Cape Town 2019 - - Without Change, There Would Be No Butt...SharePoint Saturday Cape Town 2019 - - Without Change, There Would Be No Butt...
SharePoint Saturday Cape Town 2019 - - Without Change, There Would Be No Butt...
 
PowerApps + Microsoft Graph
PowerApps + Microsoft GraphPowerApps + Microsoft Graph
PowerApps + Microsoft Graph
 
PowerApps + Microsoft Graph
PowerApps + Microsoft GraphPowerApps + Microsoft Graph
PowerApps + Microsoft Graph
 
Azure Functions and Microsoft Graph
Azure Functions and Microsoft GraphAzure Functions and Microsoft Graph
Azure Functions and Microsoft Graph
 
Azure Functions and Microsoft Graph
Azure Functions and Microsoft GraphAzure Functions and Microsoft Graph
Azure Functions and Microsoft Graph
 
Lviv PMDay 2016 S Олексій Просніцький: Нові продукти та “нове” в продуктах ві...
Lviv PMDay 2016 S Олексій Просніцький: Нові продукти та “нове” в продуктах ві...Lviv PMDay 2016 S Олексій Просніцький: Нові продукти та “нове” в продуктах ві...
Lviv PMDay 2016 S Олексій Просніцький: Нові продукти та “нове” в продуктах ві...
 
Microsoft Graph
Microsoft GraphMicrosoft Graph
Microsoft Graph
 
Project Management with SharePoint 2010
Project Management with SharePoint 2010Project Management with SharePoint 2010
Project Management with SharePoint 2010
 
Microsoft Graph community call - April, 2018
Microsoft Graph community call - April, 2018Microsoft Graph community call - April, 2018
Microsoft Graph community call - April, 2018
 
New Business Development Proposal - Adding Project Portfolio Management (PPM)...
New Business Development Proposal - Adding Project Portfolio Management (PPM)...New Business Development Proposal - Adding Project Portfolio Management (PPM)...
New Business Development Proposal - Adding Project Portfolio Management (PPM)...
 

More from André Vala

RGPD - Testemunho do Mundo Real
RGPD - Testemunho do Mundo RealRGPD - Testemunho do Mundo Real
RGPD - Testemunho do Mundo RealAndré Vala
 
Office Dev Day 2018 - Extending Microsoft Teams
Office Dev Day 2018 - Extending Microsoft TeamsOffice Dev Day 2018 - Extending Microsoft Teams
Office Dev Day 2018 - Extending Microsoft TeamsAndré Vala
 
From Event Receivers to SharePoint Webhooks (SPS Lisbon 2017)
From Event Receivers to SharePoint Webhooks (SPS Lisbon 2017)From Event Receivers to SharePoint Webhooks (SPS Lisbon 2017)
From Event Receivers to SharePoint Webhooks (SPS Lisbon 2017)André Vala
 
From Event Receivers to SharePoint Webhooks
From Event Receivers to SharePoint WebhooksFrom Event Receivers to SharePoint Webhooks
From Event Receivers to SharePoint WebhooksAndré Vala
 
From Event Receivers to SharePoint Webhooks
From Event Receivers to SharePoint WebhooksFrom Event Receivers to SharePoint Webhooks
From Event Receivers to SharePoint WebhooksAndré Vala
 
SharePoint - Presente e Futuro
SharePoint - Presente e FuturoSharePoint - Presente e Futuro
SharePoint - Presente e FuturoAndré Vala
 
Office 365 Groups Deep Dive
Office 365 Groups Deep DiveOffice 365 Groups Deep Dive
Office 365 Groups Deep DiveAndré Vala
 
Soluções com Office Graph
Soluções com Office GraphSoluções com Office Graph
Soluções com Office GraphAndré Vala
 
Host-Named Site Collections in SharePoint 2013
Host-Named Site Collections in SharePoint 2013Host-Named Site Collections in SharePoint 2013
Host-Named Site Collections in SharePoint 2013André Vala
 
User License Enforcement em SharePoint 2013
User License Enforcement em SharePoint 2013User License Enforcement em SharePoint 2013
User License Enforcement em SharePoint 2013André Vala
 
How To Use Host-Named Site Collections
How To Use Host-Named Site CollectionsHow To Use Host-Named Site Collections
How To Use Host-Named Site CollectionsAndré Vala
 
Novidades na pesquisa no SharePoint 2013
Novidades na pesquisa no SharePoint 2013Novidades na pesquisa no SharePoint 2013
Novidades na pesquisa no SharePoint 2013André Vala
 
Building Public Web Sites in SharePoint 2010
Building Public Web Sites in SharePoint 2010 Building Public Web Sites in SharePoint 2010
Building Public Web Sites in SharePoint 2010 André Vala
 
SharePoint + Azure = Better Together
SharePoint + Azure = Better TogetherSharePoint + Azure = Better Together
SharePoint + Azure = Better TogetherAndré Vala
 
Federated Authentication in SharePoint 2010
Federated Authentication in SharePoint 2010Federated Authentication in SharePoint 2010
Federated Authentication in SharePoint 2010André Vala
 
Using BCS to integrate Azure Services with SharePoint 2010
Using BCS to integrate Azure Services with SharePoint 2010Using BCS to integrate Azure Services with SharePoint 2010
Using BCS to integrate Azure Services with SharePoint 2010André Vala
 
LINQ to SharePoint
LINQ to SharePointLINQ to SharePoint
LINQ to SharePointAndré Vala
 
Solução de Negócio baseadas em Office 2010 e SharePoint 2010
Solução de Negócio baseadas em Office 2010 e SharePoint 2010Solução de Negócio baseadas em Office 2010 e SharePoint 2010
Solução de Negócio baseadas em Office 2010 e SharePoint 2010André Vala
 
SharePoint Deployment
SharePoint DeploymentSharePoint Deployment
SharePoint DeploymentAndré Vala
 
Office 365 Groups Deep Dive
Office 365 Groups Deep DiveOffice 365 Groups Deep Dive
Office 365 Groups Deep DiveAndré Vala
 

More from André Vala (20)

RGPD - Testemunho do Mundo Real
RGPD - Testemunho do Mundo RealRGPD - Testemunho do Mundo Real
RGPD - Testemunho do Mundo Real
 
Office Dev Day 2018 - Extending Microsoft Teams
Office Dev Day 2018 - Extending Microsoft TeamsOffice Dev Day 2018 - Extending Microsoft Teams
Office Dev Day 2018 - Extending Microsoft Teams
 
From Event Receivers to SharePoint Webhooks (SPS Lisbon 2017)
From Event Receivers to SharePoint Webhooks (SPS Lisbon 2017)From Event Receivers to SharePoint Webhooks (SPS Lisbon 2017)
From Event Receivers to SharePoint Webhooks (SPS Lisbon 2017)
 
From Event Receivers to SharePoint Webhooks
From Event Receivers to SharePoint WebhooksFrom Event Receivers to SharePoint Webhooks
From Event Receivers to SharePoint Webhooks
 
From Event Receivers to SharePoint Webhooks
From Event Receivers to SharePoint WebhooksFrom Event Receivers to SharePoint Webhooks
From Event Receivers to SharePoint Webhooks
 
SharePoint - Presente e Futuro
SharePoint - Presente e FuturoSharePoint - Presente e Futuro
SharePoint - Presente e Futuro
 
Office 365 Groups Deep Dive
Office 365 Groups Deep DiveOffice 365 Groups Deep Dive
Office 365 Groups Deep Dive
 
Soluções com Office Graph
Soluções com Office GraphSoluções com Office Graph
Soluções com Office Graph
 
Host-Named Site Collections in SharePoint 2013
Host-Named Site Collections in SharePoint 2013Host-Named Site Collections in SharePoint 2013
Host-Named Site Collections in SharePoint 2013
 
User License Enforcement em SharePoint 2013
User License Enforcement em SharePoint 2013User License Enforcement em SharePoint 2013
User License Enforcement em SharePoint 2013
 
How To Use Host-Named Site Collections
How To Use Host-Named Site CollectionsHow To Use Host-Named Site Collections
How To Use Host-Named Site Collections
 
Novidades na pesquisa no SharePoint 2013
Novidades na pesquisa no SharePoint 2013Novidades na pesquisa no SharePoint 2013
Novidades na pesquisa no SharePoint 2013
 
Building Public Web Sites in SharePoint 2010
Building Public Web Sites in SharePoint 2010 Building Public Web Sites in SharePoint 2010
Building Public Web Sites in SharePoint 2010
 
SharePoint + Azure = Better Together
SharePoint + Azure = Better TogetherSharePoint + Azure = Better Together
SharePoint + Azure = Better Together
 
Federated Authentication in SharePoint 2010
Federated Authentication in SharePoint 2010Federated Authentication in SharePoint 2010
Federated Authentication in SharePoint 2010
 
Using BCS to integrate Azure Services with SharePoint 2010
Using BCS to integrate Azure Services with SharePoint 2010Using BCS to integrate Azure Services with SharePoint 2010
Using BCS to integrate Azure Services with SharePoint 2010
 
LINQ to SharePoint
LINQ to SharePointLINQ to SharePoint
LINQ to SharePoint
 
Solução de Negócio baseadas em Office 2010 e SharePoint 2010
Solução de Negócio baseadas em Office 2010 e SharePoint 2010Solução de Negócio baseadas em Office 2010 e SharePoint 2010
Solução de Negócio baseadas em Office 2010 e SharePoint 2010
 
SharePoint Deployment
SharePoint DeploymentSharePoint Deployment
SharePoint Deployment
 
Office 365 Groups Deep Dive
Office 365 Groups Deep DiveOffice 365 Groups Deep Dive
Office 365 Groups Deep Dive
 

Recently uploaded

cse-csp batch4 review-1.1.pptx cyber security
cse-csp batch4 review-1.1.pptx cyber securitycse-csp batch4 review-1.1.pptx cyber security
cse-csp batch4 review-1.1.pptx cyber securitysandeepnani2260
 
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
 
Application of GIS in Landslide Disaster Response.pptx
Application of GIS in Landslide Disaster Response.pptxApplication of GIS in Landslide Disaster Response.pptx
Application of GIS in Landslide Disaster Response.pptxRoquia Salam
 
Internship Presentation | PPT | CSE | SE
Internship Presentation | PPT | CSE | SEInternship Presentation | PPT | CSE | SE
Internship Presentation | PPT | CSE | SESaleh Ibne Omar
 
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
 
A Guide to Choosing the Ideal Air Cooler
A Guide to Choosing the Ideal Air CoolerA Guide to Choosing the Ideal Air Cooler
A Guide to Choosing the Ideal Air Coolerenquirieskenstar
 
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
 
General Elections Final Press Noteas per M
General Elections Final Press Noteas per MGeneral Elections Final Press Noteas per M
General Elections Final Press Noteas per MVidyaAdsule1
 
Engaging Eid Ul Fitr Presentation for Kindergartners.pptx
Engaging Eid Ul Fitr Presentation for Kindergartners.pptxEngaging Eid Ul Fitr Presentation for Kindergartners.pptx
Engaging Eid Ul Fitr Presentation for Kindergartners.pptxAsifArshad8
 
proposal kumeneger edited.docx A kumeeger
proposal kumeneger edited.docx A kumeegerproposal kumeneger edited.docx A kumeeger
proposal kumeneger edited.docx A kumeegerkumenegertelayegrama
 
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...漢銘 謝
 
Testing and Development Challenges for Complex Cyber-Physical Systems: Insigh...
Testing and Development Challenges for Complex Cyber-Physical Systems: Insigh...Testing and Development Challenges for Complex Cyber-Physical Systems: Insigh...
Testing and Development Challenges for Complex Cyber-Physical Systems: Insigh...Sebastiano Panichella
 
Testing with Fewer Resources: Toward Adaptive Approaches for Cost-effective ...
Testing with Fewer Resources:  Toward Adaptive Approaches for Cost-effective ...Testing with Fewer Resources:  Toward Adaptive Approaches for Cost-effective ...
Testing with Fewer Resources: Toward Adaptive Approaches for Cost-effective ...Sebastiano Panichella
 
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
 
GESCO SE Press and Analyst Conference on Financial Results 2024
GESCO SE Press and Analyst Conference on Financial Results 2024GESCO SE Press and Analyst Conference on Financial Results 2024
GESCO SE Press and Analyst Conference on Financial Results 2024GESCO SE
 
Don't Miss Out: Strategies for Making the Most of the Ethena DigitalOpportunity
Don't Miss Out: Strategies for Making the Most of the Ethena DigitalOpportunityDon't Miss Out: Strategies for Making the Most of the Ethena DigitalOpportunity
Don't Miss Out: Strategies for Making the Most of the Ethena DigitalOpportunityApp Ethena
 
05.02 MMC - Assignment 4 - Image Attribution Lovepreet.pptx
05.02 MMC - Assignment 4 - Image Attribution Lovepreet.pptx05.02 MMC - Assignment 4 - Image Attribution Lovepreet.pptx
05.02 MMC - Assignment 4 - Image Attribution Lovepreet.pptxerickamwana1
 

Recently uploaded (17)

cse-csp batch4 review-1.1.pptx cyber security
cse-csp batch4 review-1.1.pptx cyber securitycse-csp batch4 review-1.1.pptx cyber security
cse-csp batch4 review-1.1.pptx cyber security
 
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
 
Application of GIS in Landslide Disaster Response.pptx
Application of GIS in Landslide Disaster Response.pptxApplication of GIS in Landslide Disaster Response.pptx
Application of GIS in Landslide Disaster Response.pptx
 
Internship Presentation | PPT | CSE | SE
Internship Presentation | PPT | CSE | SEInternship Presentation | PPT | CSE | SE
Internship Presentation | PPT | CSE | SE
 
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
 
A Guide to Choosing the Ideal Air Cooler
A Guide to Choosing the Ideal Air CoolerA Guide to Choosing the Ideal Air Cooler
A Guide to Choosing the Ideal Air Cooler
 
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
 
General Elections Final Press Noteas per M
General Elections Final Press Noteas per MGeneral Elections Final Press Noteas per M
General Elections Final Press Noteas per M
 
Engaging Eid Ul Fitr Presentation for Kindergartners.pptx
Engaging Eid Ul Fitr Presentation for Kindergartners.pptxEngaging Eid Ul Fitr Presentation for Kindergartners.pptx
Engaging Eid Ul Fitr Presentation for Kindergartners.pptx
 
proposal kumeneger edited.docx A kumeeger
proposal kumeneger edited.docx A kumeegerproposal kumeneger edited.docx A kumeeger
proposal kumeneger edited.docx A kumeeger
 
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...
 
Testing and Development Challenges for Complex Cyber-Physical Systems: Insigh...
Testing and Development Challenges for Complex Cyber-Physical Systems: Insigh...Testing and Development Challenges for Complex Cyber-Physical Systems: Insigh...
Testing and Development Challenges for Complex Cyber-Physical Systems: Insigh...
 
Testing with Fewer Resources: Toward Adaptive Approaches for Cost-effective ...
Testing with Fewer Resources:  Toward Adaptive Approaches for Cost-effective ...Testing with Fewer Resources:  Toward Adaptive Approaches for Cost-effective ...
Testing with Fewer Resources: Toward Adaptive Approaches for Cost-effective ...
 
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
 
GESCO SE Press and Analyst Conference on Financial Results 2024
GESCO SE Press and Analyst Conference on Financial Results 2024GESCO SE Press and Analyst Conference on Financial Results 2024
GESCO SE Press and Analyst Conference on Financial Results 2024
 
Don't Miss Out: Strategies for Making the Most of the Ethena DigitalOpportunity
Don't Miss Out: Strategies for Making the Most of the Ethena DigitalOpportunityDon't Miss Out: Strategies for Making the Most of the Ethena DigitalOpportunity
Don't Miss Out: Strategies for Making the Most of the Ethena DigitalOpportunity
 
05.02 MMC - Assignment 4 - Image Attribution Lovepreet.pptx
05.02 MMC - Assignment 4 - Image Attribution Lovepreet.pptx05.02 MMC - Assignment 4 - Image Attribution Lovepreet.pptx
05.02 MMC - Assignment 4 - Image Attribution Lovepreet.pptx
 

Microsoft Planner Deep Dive