-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIgnite2019SessionCatalog.csv
We can't make this file beautiful and searchable because it's too large.
14627 lines (14613 loc) · 601 KB
/
Ignite2019SessionCatalog.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"sessionCode","title","topic","format","level","Products","SpeakerNames","SpeakerCompanies","Description"
"THR3091","Gain Efficiencies in Security Response with ServiceNow and Azure Sentinel Integration powered by Microsoft Graph","Development","Session","Advanced (300)","","Mandana Javaheri
Deepak Kolingivadi
","Microsoft
ServiceNow
","gain efficiencies in security response with servicenow and azure sentinel integration powered by microsoft graph"
"MTG10","Get the most out of meetings with Microsoft Teams","Productivity","Session","Intermediate (200)","Microsoft 365 Meetings and Voice
Microsoft 365
","James Skay
Pauli Kongas
","Microsoft
KONE
","get the most out of meetings with microsoft teams"
"MTG50","Host large scale town halls, webinars, and meetings with up to 10,000 attendees with Microsoft Teams live events","Productivity","Session","Advanced (300)","Microsoft 365 Meetings and Voice
Microsoft 365
","Ashwin Appiah
Amit Rajput
","Microsoft
Microsoft
","host large scale town halls, webinars, and meetings with up to 10,000 attendees with microsoft teams live events"
"","Improving reliability through modern operations practices","Infrastructure","Session","Foundational (100)","","","","improving reliability through modern operations practices"
"BRK1117","Driving demand for digital process automation with Nintex and Microsoft, a GM Financial success story","Productivity","Partner Led Session","Foundational (100)","Microsoft 365 Security Management
Microsoft 365
Microsoft 365 Advanced Analytics
Microsoft 365 Task Management
Microsoft 365 Information Protection
Microsoft 365 Advanced Compliance
Microsoft 365 Social and Intranet
Microsoft 365 Email and Calendar
Microsoft 365 Meetings and Voice
Microsoft 365 Operating System
Microsoft 365 Device and Application Management
Microsoft 365 Files and Content
Microsoft 365 Applications
Microsoft 365 Identity and Access Management
Microsoft 365 Threat Protection
","William Knowles
Abby Martins
Jarrett Robinson
","NINTEX
GM Financial
GM Financial
","driving demand for digital process automation with nintex and microsoft, a gm financial success story"
"THR1097","Microsoft Teams for government workers","Productivity","Session","Foundational (100)","Microsoft 365 Information Protection
Microsoft 365
Microsoft 365 Meetings and Voice
","Sankalp Jain
Rima Reyes
","Microsoft
Microsoft
","microsoft teams for government workers"
"BRK1056","Breaking the mold: The tech career journey guide","Diversity and Inclusion","Diversity and Inclusion","Foundational (100)","Not Product Specific
","Phoummala Schmitt
","Microsoft
","breaking the mold: the tech career journey guide"
"BRK3207","Microsoft Power BI: Roadmap for enterprise information management – data lineage and impact analysis, data protection, and data discovery","Fundamentals","Session","Advanced (300)","Power Platform Power BI
Power Platform
","Adi Regev
Anton Fritz
Alex Esibov
Denis Mizetski
","Microsoft
Microsoft
Microsoft
Microsoft
","microsoft power bi: roadmap for enterprise information management – data lineage and impact analysis, data protection, and data discovery"
"BRK3268","Common Data Model (CDM): All you need to know about CDM","Data","Session","Advanced (300)","Power Platform Power BI
Power Platform
","Oleg Ovanesyan
Robert Bruckner
","Microsoft
Microsoft
","common data model (cdm): all you need to know about cdm"
"BRK1062","#DreamCrazier in the world of tech: In conversation with Nike","Diversity and Inclusion","Diversity and Inclusion","Foundational (100)","Not Product Specific
","Jarvis Sam
Dr. Mona-Lisa Pinkney
Nivine Zakhari
","Nike
Nike, Inc.
Microsoft
","#dreamcrazier in the world of tech: in conversation with nike"
"BRK1096","Future Generations: It Takes a Village: Nonprofit + Community Partners","Diversity and Inclusion","Diversity and Inclusion","Foundational (100)","Not Product Specific
","Chantale Ninah
Rachael Sera
Jeffron Smalls
Amy Cliett
Trisha McDonald
Fatou N'diaye
Ouafa Benterki
Emmie Louis
","Microsoft
University of Central Florida
HBCU Travelers
TechGirlz/Women in Tech Summit, Creating IT Futures
Microsoft
The Great Village
MTY Intelligent Software
Black Girls Code
","future generations: it takes a village: nonprofit + community partners"
"THR2120","Deploy an app in Azure Kubernetes and App Services with MySQL","Data","Session","Intermediate (200)","Azure Databases
Azure
","Manish Kumar
","Microsoft Corp.
","deploy an app in azure kubernetes and app services with mysql"
"THR2123","Why enterprises are moving from Oracle to Azure Postgres","Data","Session","Intermediate (200)","Azure Databases
Azure
","Saurabh Modi
","Microsoft
","why enterprises are moving from oracle to azure postgres"
"THR2124","Running Postgres at scale on-premises and in the cloud","Data","Session","Intermediate (200)","Azure Databases
Azure
","Lukas Fittl
","Microsoft
","running postgres at scale on-premises and in the cloud"
"THR1124","Everywhere, yet still out of reach: How improving access to technology strengthens social capital and drives your bottom line","Diversity and Inclusion","Diversity and Inclusion","Foundational (100)","Not Product Specific
","Keiloni Mitchell
","Microsoft
","everywhere, yet still out of reach: how improving access to technology strengthens social capital and drives your bottom line"
"THR2130","Raising Visibility and Trust in Apps on Teams","Productivity","Session","Intermediate (200)","Microsoft 365 Meetings and Voice
Microsoft 365
","Bill Bliss
","Microsoft
","raising visibility and trust in apps on teams"
"UNC1049","Balancing family and career: Can you have it all?","Diversity and Inclusion","Diversity and Inclusion","Foundational (100)","Not Product Specific
","Anne Michels
Phoummala Schmitt
Mark Rackley
Stephanie Donahue
Paul Warren
Eric Overfield
Angela Donohue
","Microsoft
Microsoft
PAIT Group
PAIT Group
Deptive
PixelMill Inc
Microsoft
","balancing family and career: can you have it all?"
"WRK2008","Running WordPress applications on Azure App Service","Development","Hands-on Lab","Intermediate (200)","Azure Web
Azure
","Byron Tardif
Sisira Panchagnula
","Microsoft
Microsoft
","running wordpress applications on azure app service"
"THR1098R","Learn how to navigate and leverage Microsoft AppSource to extend Microsoft Dynamics 365 and Microsoft 365 (Repeat)","Management","Session","Foundational (100)","Dynamics 365 Finance and Operations
Dynamics 365
Dynamics 365 Field Service
Dynamics 365 Customer Engagement
Dynamics 365 Business Central
Dynamics 365 Talent
Dynamics 365 Project Service Automation
Dynamics 365 Supply Chain Management
Dynamics 365 Product Visualize
Dynamics 365 Customer Service Insights
Dynamics 365 Customer Insights
Dynamics 365 Virtual Agent for Customer Service
Dynamics 365 Sales Insights
Dynamics 365 Market Insights
Dynamics 365 Fraud Protection
Dynamics 365 Remote Assist
Dynamics 365 Guides
Dynamics 365 Portals
Dynamics 365 Layout
Dynamics 365 Sales
Dynamics 365 Marketing
Dynamics 365 Customer Service
Dynamics 365 Retail and Commerce
","Kelley Roshka
Felipe Ospina
","Microsoft
Microsoft
","learn how to navigate and leverage microsoft appsource to extend microsoft dynamics 365 and microsoft 365 (repeat)"
"THR3112","Integrated support for Linux on Azure workloads overview","Infrastructure","Session","Advanced (300)","Azure Migration
Azure
","Abirami Iyer
","Microsoft
","integrated support for linux on azure workloads overview"
"WRK4000","Build solutions powered by real-time analytics using Azure Stream Analytics and Azure Data Explorer","Data","Hands-on Session","Expert (400)","Azure Databases
Azure
","Siddarth Ramadoss
Tzvia Gitlin Troyna
","Microsoft
Microsoft
","build solutions powered by real-time analytics using azure stream analytics and azure data explorer"
"THR1083","Share big data easily and securely with other organizations leveraging Azure Data Share","Data","Session","Foundational (100)","Azure Databases
Azure
","Jie Feng
","Microsoft
","share big data easily and securely with other organizations leveraging azure data share"
"THR2151","Azure encryption and key management for enterprise scale","Infrastructure","Session","Intermediate (200)","Azure Security
Azure
","Jack Richins
","Microsoft
","azure encryption and key management for enterprise scale"
"THR2218","Extend and connect hybrid landscapes with the power of SAP Cloud Platform","Infrastructure","Session","Intermediate (200)","Azure Compute
Azure
","Matthew Otto
","SAP
","extend and connect hybrid landscapes with the power of sap cloud platform"
"THR3129","Unlocking AI insights from your video using Video Indexer","Development","Session","Advanced (300)","","Anika Zaman
","Microsoft/Video Indexer
","unlocking ai insights from your video using video indexer"
"THR2168","Lifecycle of a Java app from initial deployment to running in production using Terraform and Ansible","Development","Session","Intermediate (200)","Tooling & Languages Other
Tooling & Languages
","Pui Chee Chan
Mark Gray
","Microsoft Corp.
Microsoft
","lifecycle of a java app from initial deployment to running in production using terraform and ansible"
"BRK3327","Azure Arc: Extend Management and Governance to any Infrastructure","Infrastructure","Session","Advanced (300)","Azure Management and Governance
Azure
","Jian Yan
Chris Sanders
","Microsoft
Microsoft
","azure arc: extend management and governance to any infrastructure"
"THR1106","Updated Developer experience for Finance and Operations","Fundamentals","Session","Foundational (100)","Dynamics 365 Finance and Operations
Dynamics 365
","Joris de Gruyter
","Microsoft
","updated developer experience for finance and operations"
"BRK3270","Experimentation for personalized engagement","Fundamentals","Session","Advanced (300)","Dynamics 365 Marketing
Dynamics 365
","Shailesh Jain
Preeti Rana
","Microsoft
Microsoft
","experimentation for personalized engagement"
"THR2162","Get more from your data with cognitive search and Microsoft Azure","Infrastructure","Customer Showcase","Intermediate (200)","","Jamie Burgess
Craig Susen
","Microsoft
Unify Consulting
","get more from your data with cognitive search and microsoft azure"
"WRK3034","A day in the life of a Microsoft Teams admin","Productivity","Hands-on Labs","Advanced (300)","Microsoft 365 Applications
Microsoft 365
Microsoft 365 Files and Content
Microsoft 365 Meetings and Voice
","Connie Welsh
Nick Elniff
","Microsoft
Microsoft
","a day in the life of a microsoft teams admin"
"WRK3034R4","A day in the life of a Microsoft Teams admin (Repeat)","Productivity","Hands-on Lab","Advanced (300)","Microsoft 365 Applications
Microsoft 365
Microsoft 365 Files and Content
Microsoft 365 Meetings and Voice
","Jeff Beckham
","Microsoft
","a day in the life of a microsoft teams admin (repeat)"
"THR2230","StorSimple end of support: What you need to know","Infrastructure","Session","Intermediate (200)","Azure Microsoft Azure Stack
Azure
","STEVEN GODDARD
","Microsoft Corporation
","storsimple end of support: what you need to know"
"THR1085","Get the help you need with Azure support plans","Management","Session","Foundational (100)","","Sharon Loh
","Microsoft
","get the help you need with azure support plans"
"WRK1004","Hands-on with Microsoft Power Apps and Azure","Fundamentals","Hands-on Session","Foundational (100)","Power Platform PowerApps
Power Platform
Azure Web
Azure
","Pratap Ladhani
","Microsoft
","hands-on with microsoft power apps and azure"
"WRK1012","Microsoft Power Automate: Automate your legacy applications with RPA (Robotic Process Automation).","Fundamentals","Hands-on Session","Foundational (100)","Power Platform Microsoft Flow
Power Platform
","John Dundon
Quentin Sele Barancy
Lan Li
","Microsoft
Microsoft
Microsoft
","microsoft power automate: automate your legacy applications with rpa (robotic process automation)."
"THR2181","Get the most out of Microsoft Azure with Azure Advisor","Management","Session","Intermediate (200)","","Saket Gupta
Dante Rasera
","Microsoft
Microsoft
","get the most out of microsoft azure with azure advisor"
"THR1107","Propelling your career with Microsoft Azure and Pluralsight","Thought Leadership","Partner Led Session","Foundational (100)","Azure Databases
Azure
Azure Security
","Michael Bender
","Pluralsight
","propelling your career with microsoft azure and pluralsight"
"WRK3027R","Meeting security and governance requirements with Microsoft Teams (Repeat)","Compliance","Hands-on Lab","Advanced (300)","Microsoft 365 Applications
Microsoft 365
Microsoft 365 Files and Content
Microsoft 365 Information Protection
Microsoft 365 Meetings and Voice
Microsoft 365 Security Management
","Jeff Beckham
Chris L'Hommedieu
","Microsoft
Microsoft
","meeting security and governance requirements with microsoft teams (repeat)"
"THR3158","BEC: The inner-workings of West African cybercriminal gangs","Identity","Partner Led Session","Advanced (300)","Microsoft 365 Threat Protection
Microsoft 365
Azure Identity
Azure
Microsoft 365 Email and Calendar
","Crane Hassold
","Agari
","bec: the inner-workings of west african cybercriminal gangs"
"WRK1006","Connected Field Service and IoT Central","Fundamentals","Hands-on Session","Foundational (100)","Dynamics 365 Field Service
Dynamics 365
","Derik Bormann
","Myrium Technology Solutions
","connected field service and iot central"
"WRK3029R3","Secure and manage your identities with Azure Active Directory (Repeat)","Security","Hands-on Lab","Advanced (300)","Microsoft 365 Identity and Access Management
Microsoft 365
","Adam Harbour
","Microsoft
","secure and manage your identities with azure active directory (repeat)"
"WRK3029R4","Secure and manage your identities with Azure Active Directory (Repeat)","Security","Hands-on Lab","Advanced (300)","Microsoft 365 Identity and Access Management
Microsoft 365
","Adam Harbour
","Microsoft
","secure and manage your identities with azure active directory (repeat)"
"THR3139","Identifying and remediating critical insider risks and policy violations","Compliance","","Advanced (300)","","Talhah Mir
Christophe Fiessinger
","Microsoft
Microsoft
","identifying and remediating critical insider risks and policy violations"
"THR2226","On-premises to Azure in three steps","Management","Partner Led Session","Intermediate (200)","Azure Management and Governance
Azure
Azure Migration
","Steve Blow
","Zerto
","on-premises to azure in three steps"
"THR1104","Keep it reel with Microsoft’s phishing team","How Microsoft transforms IT internally","Session","Foundational (100)","","Homa Hayatyfar
Blythe Price
","Microsoft/DSRE
Microsoft
","keep it reel with microsoft’s phishing team"
"THR2253","Help your users find content and information they need using SharePoint and Microsoft Search","How Microsoft transforms IT internally","Session","Intermediate (200)","Microsoft 365 Social and Intranet
Microsoft 365
","Sam Crewdson
","Microsoft
","help your users find content and information they need using sharepoint and microsoft search"
"THR2265","Brad Anderson presents unifying device management and taking it to the next level","Management","Session","Intermediate (200)","Microsoft 365 Device and Application Management
Microsoft 365
","Jeremy Chapman
Brad Anderson
","Microsoft
Microsoft Corporation
","brad anderson presents unifying device management and taking it to the next level"
"THR2266","The three things you wish you knew about, when moving to the cloud","Infrastructure","Session","Intermediate (200)","Azure Compute
Azure
","Erin Chapple
Matt McSpirit
","Microsoft Corporation
Microsoft
","the three things you wish you knew about, when moving to the cloud"
"BRK1091","From order takers to innovators: IT of the future","Thought Leadership","Session","Foundational (100)","","John Jendrezak
","Microsoft Corporation
","from order takers to innovators: it of the future"
"THR2284","Jeffrey Snover goes inside Microsoft 365 internals with the Microsoft Graph and substrate","Management","Session","Intermediate (200)","Not Product Specific
","Jeffrey Snover
Jeremy Chapman
","Microsoft
Microsoft
","jeffrey snover goes inside microsoft 365 internals with the microsoft graph and substrate"
"THR2286","Networking and hybrid connectivity in Azure and beyond with CVP Yousef Khalidi","Infrastructure","Session","Intermediate (200)","Azure Networking
Azure
","Yousef Khalidi
Matt McSpirit
","
Microsoft
","networking and hybrid connectivity in azure and beyond with cvp yousef khalidi"
"THR1116","Cyber AI in action: Real-world threat stories and live demo","Security","Partner Led Session","Foundational (100)","Azure AI + Machine Learning
Azure
Azure Internet of Things
Azure Security
Microsoft 365 Security Management
Microsoft 365
Microsoft 365 Threat Protection
","Nabil Zoldjalali
","Darktrace
","cyber ai in action: real-world threat stories and live demo"
"THR3147","Secure architecting (for Azure) 2.0: CSPM with ML and predictive analytics ","Security","Partner Led Session","Advanced (300)","Azure
Azure Databases
Azure Compute
Azure AI + Machine Learning
Azure Management and Governance
Azure Integration
Azure Internet of Things
Azure DevOps
Azure Developer Tools
Azure Containers
Azure Media
Azure Blockchain
Azure Analytics
Azure Identity
Azure Mobile
Azure Migration
Azure Mixed Reality
Azure Security
Azure Web
Azure Storage
Azure Networking
Azure Microsoft Azure Stack
","Jorn Lutters
","Sophos Inc.
","secure architecting (for azure) 2.0: cspm with ml and predictive analytics"
"THR2307","Supercharge your desktop app DevOps pipeline with Azure DevOps and App Center","Development","Session","Intermediate (200)","","Winnie Li
Daniel Jacobson
","Microsoft
Microsoft
","supercharge your desktop app devops pipeline with azure devops and app center"
"THR2310","Customizing Visual Studio to be more productive","Development","Session","Intermediate (200)","Tooling & Languages Visual Studio
Tooling & Languages
","Misty Hays
","Microsoft/DevDiv
","customizing visual studio to be more productive"
"THR2320","Craft stunning mobile apps with the Xamarin Visual design system","Development","Session","Intermediate (200)","Tooling & Languages Xamarin
Tooling & Languages
","David Ortinau
","MIcrosoft
","craft stunning mobile apps with the xamarin visual design system"
"THR2298","Data collection at scale powered by Adobe Sign web forms integration in SharePoint","Productivity","Partner Led Session","Intermediate (200)","Power Platform PowerApps
Power Platform
Microsoft 365 Files and Content
Microsoft 365
Microsoft 365 Task Management
Power Platform Microsoft Flow
Microsoft 365 Applications
","Hien Nguyen
","Adobe
","data collection at scale powered by adobe sign web forms integration in sharepoint"
"THR3151","#CYaaS and STOP Ransomware! Make Your Microsoft-Powered Multi-Cloud Strategy Bulletproof","Compliance","Partner Led Session","Advanced (300)","Azure AI + Machine Learning
Azure
Azure Media
Azure Databases
Azure Integration
Azure DevOps
Azure Analytics
Azure Internet of Things
Azure Compute
Azure Containers
Azure Identity
Azure Blockchain
Azure Management and Governance
Azure Developer Tools
Azure Migration
Azure Security
Azure Web
Azure Mobile
Azure Microsoft Azure Stack
Azure Storage
Azure Mixed Reality
Azure Networking
","Jonathan Brown
","Veritas Technologies LLC
","#cyaas and stop ransomware! make your microsoft-powered multi-cloud strategy bulletproof"
"BRK3288","Define the guardrails for success with Azure Blueprints","Management","Session","Advanced (300)","Azure Management and Governance
Azure
","Rhett Krulla
","Microsoft
","define the guardrails for success with azure blueprints"
"BRK3296R","Power Platform management: Tips and tools to start your rollout (Repeat)","Management","Session","Advanced (300)","Power Platform PowerApps
Power Platform
","James Stento
","Microsoft
","power platform management: tips and tools to start your rollout (repeat)"
"BRK2276","Authorize and automate Teams guest access with surgical precision (Part 1)","Security","Session","Intermediate (200)","Microsoft 365 Identity and Access Management
Microsoft 365
","Michael Mukalian
","Microsoft
","authorize and automate teams guest access with surgical precision (part 1)"
"BRK2277","Authorize and automate Teams guest access with surgical precision (Part 2)","Security","Session","Intermediate (200)","Microsoft 365 Identity and Access Management
Microsoft 365
","Michael Mukalian
","Microsoft
","authorize and automate teams guest access with surgical precision (part 2)"
"HOL2033","Build your first solution on the Microsoft Teams platform","Productivity","Hands-on Labs","Intermediate (200)","Microsoft 365 Applications
Microsoft 365
","","","build your first solution on the microsoft teams platform"
"BRK3308R","Intelligent collaboration across Microsoft 365: Roundtable topics (Repeat)","Intelligence","Hands-on Session","Advanced (300)","Microsoft 365 Applications
Microsoft 365
","Sheila Anderson
Cuong Pham
David Huang
Joe McDaid
Zhang Li
Nina Williams
Sammy Chiu
Theo Lorrain-Hale
Shiva Naidu
Vishal Mathur
Kyle von Haden
Catherine Pidgeon
","Microsoft
Microsoft
Microsoft
Microsoft Excel
Microsoft
Microsoft
Microsoft
Microsoft
Microsoft
Microsoft
Microsoft
Microsoft
","intelligent collaboration across microsoft 365: roundtable topics (repeat)"
"BRK3307R","Developing on the Microsoft 365 platform: Roundtable topics (Repeat)","Productivity","Hands-on Session","Advanced (300)","Microsoft 365 Operating System
Microsoft 365
","John Westworth
Filip Nicolaisen
Jenny Cook
Darrel Miller
Nikola Metulev
Kevin Bellinger
Arnaud Montembault
Ryan Demopoulos
Juan Balmori Labra
","microsoft
Microsoft Development Center Norway
Microsoft
Microsoft
Microsoft
Microsoft Corporation
Microsoft
Microsoft
Microsoft
","developing on the microsoft 365 platform: roundtable topics (repeat)"
"BRK3310R","Microsoft Teams: Roundtable topics (Repeat)","Productivity","Hands-on Session","Advanced (300)","Microsoft 365 Meetings and Voice
Microsoft 365
","Kent Lowry
Pete Daderko
Zakiullah Khan Mohammed
Kaushal Mehta
Karuana Gatimu
Tosin Bosede
David Groom
","Microsoft
Microsoft
Microsoft
Microsoft Corp
Microsoft Teams Engineering
Microsoft Corporation
Microsoft
","microsoft teams: roundtable topics (repeat)"
"BRK2366","How to extend Dynamics 365 Commerce","Development","Session","Intermediate (200)","Dynamics 365 Retail and Commerce
Dynamics 365
","Sam Jarawan
","Microsoft Corp.
","how to extend dynamics 365 commerce"
"BRK2364","AI driven recommendations and discovery in Dynamics 365 Commerce","Fundamentals","Session","Intermediate (200)","Dynamics 365 Retail and Commerce
Dynamics 365
","Boris Sokolov
","Microsoft
","ai driven recommendations and discovery in dynamics 365 commerce"
"BRK2368","Safeguard your digital commerce with Dynamics 365 Fraud Protection","Fundamentals","Session","Intermediate (200)","Dynamics 365 Fraud Protection
Dynamics 365
","Anand Oka
Jay Nanduri
","Microsoft
Microsoft
","safeguard your digital commerce with dynamics 365 fraud protection"
"BRK2371","Radically reduce your security and compliance workload","Security","Partner Led Session","Intermediate (200)","Azure Security
Azure
Azure Migration
Azure Networking
","Chaz Spahn
Josef Wahby-Brehmer
","Adaptiva
Accenture Technology Solutions GmbH
","radically reduce your security and compliance workload"
"THR2353","SecOps Quiz Show: Test your endpoint health and security knowledge","Security","Partner Led Session","Intermediate (200)","Azure Security
Azure
Azure Networking
Microsoft 365 Security Management
Microsoft 365
","Chaz Spahn
","Adaptiva
","secops quiz show: test your endpoint health and security knowledge"
"THR1138","Out of the sandbox and into the Circuit Playground","Development","Session","Foundational (100)","Tooling & Languages Visual Studio
Tooling & Languages
Tooling & Languages Other
","Brian Clark
","Microsoft
","out of the sandbox and into the circuit playground"
"THR2362R","The top three questions customers ask about hybrid cloud adoption (Extended Session)","Deployment","Partner Led Session","Intermediate (200)","Azure
Azure AI + Machine Learning
Azure Analytics
Azure Blockchain
Azure Compute
Azure Containers
Azure Databases
Azure Developer Tools
Azure DevOps
Azure Identity
Azure Integration
Azure Internet of Things
Azure Management and Governance
Azure Media
Azure Microsoft Azure Stack
Azure Migration
Azure Mixed Reality
Azure Mobile
Azure Networking
Azure Security
Azure Storage
Azure Web
","Anthony Delli Colli
","HPE
","the top three questions customers ask about hybrid cloud adoption (extended session)"
"WRK2015R2","Teamwork Immersion Workshop by Phoenix UK.","Productivity","Hands-On Learning","Intermediate (200)","Microsoft 365 Files and Content
Microsoft 365
Microsoft 365 Meetings and Voice
","","","teamwork immersion workshop by phoenix uk."
"WRK2017R","Teamwork Immersion Workshop by Vitalyst.","Productivity","Hands-On Learning","Intermediate (200)","Microsoft 365 Files and Content
Microsoft 365
Microsoft 365 Meetings and Voice
","","","teamwork immersion workshop by vitalyst."
"WRK2019R2","Security Immersion Workshop by Synergy Technical","Security","Hands-On Learning","Intermediate (200)","Microsoft 365 Security Management
Microsoft 365
Microsoft 365 Threat Protection
","","","security immersion workshop by synergy technical"
"WRK2023","Security Immersion Workshop by Softchoice","Security","Hands-On Learning","Intermediate (200)","Microsoft 365 Security Management
Microsoft 365
Microsoft 365 Threat Protection
","","","security immersion workshop by softchoice"
"WRK2024R4","Compliance Immersion Workshop by Valorem","Compliance","Hands-On Learning","Intermediate (200)","Microsoft 365 Advanced Compliance
Microsoft 365
","","","compliance immersion workshop by valorem"
"WRK2025R5","Compliance Immersion Workshop by Microsoft","Compliance","Hands-On Learning","Intermediate (200)","Microsoft 365 Advanced Compliance
Microsoft 365
","","","compliance immersion workshop by microsoft"
"WRK2024R7","Compliance Immersion Workshop by Valorem","Compliance","Hands-On Learning","Intermediate (200)","Microsoft 365 Advanced Compliance
Microsoft 365
","","","compliance immersion workshop by valorem"
"WRK2025R6","Compliance Immersion Workshop by Microsoft","Compliance","Hands-On Learning","Intermediate (200)","Microsoft 365 Advanced Compliance
Microsoft 365
","","","compliance immersion workshop by microsoft"
"WRK2019R11","Security Immersion Workshop by Synergy Technical","Security","Hands-On Learning","Intermediate (200)","Microsoft 365 Security Management
Microsoft 365
Microsoft 365 Threat Protection
","","","security immersion workshop by synergy technical"
"WRK2019R13","Security Immersion Workshop by Synergy Technical","Security","Hands-On Learning","Intermediate (200)","Microsoft 365 Security Management
Microsoft 365
Microsoft 365 Threat Protection
","","","security immersion workshop by synergy technical"
"WRK2026R3","Security Immersion Workshop by Microsoft","Security","Hands-On Learning","Intermediate (200)","Microsoft 365 Security Management
Microsoft 365
Microsoft 365 Threat Protection
","","","security immersion workshop by microsoft"
"WRK2028R8","Teamwork Immersion Workshop by Catapult","Productivity","Hands-On Learning","Intermediate (200)","Microsoft 365 Files and Content
Microsoft 365
Microsoft 365 Meetings and Voice
","","","teamwork immersion workshop by catapult"
"WRK2030R","Teamwork Immersion Workshop by Softchoice","Productivity","Hands-On Learning","Intermediate (200)","Microsoft 365 Files and Content
Microsoft 365
Microsoft 365 Meetings and Voice
","","","teamwork immersion workshop by softchoice"
"THR3168","Intel IoT Intelligent Edge: Smart retail use case","Customer Success","Partner Led Session","Advanced (300)","Azure AI + Machine Learning
Azure
Azure Compute
Azure Internet of Things
","Philip van de Mortel
","Intel
","intel iot intelligent edge: smart retail use case"
"THR2375","Insight into edge to core data management and analytics","Infrastructure","Partner Led Session","Intermediate (200)","Azure Media
Azure
Azure Analytics
Azure DevOps
Azure Management and Governance
Azure Compute
Azure Microsoft Azure Stack
Azure Networking
Azure AI + Machine Learning
Azure Developer Tools
Azure Containers
Azure Mobile
Azure Integration
Azure Blockchain
Azure Migration
Azure Mixed Reality
Azure Storage
Azure Security
Azure Databases
Azure Identity
Azure Internet of Things
Azure Web
","Prasad Venkatachar
","Lenovo
","insight into edge to core data management and analytics"
"THR2373","Adding interactivity to your apps with SignalR","Development","Session","Intermediate (200)","Tooling & Languages Other
Tooling & Languages
","Brady Gaster
","Microsoft
","adding interactivity to your apps with signalr"
"PRE21","Managing and mitigating risk: Understanding and assessing the risks you face so that you can more effectively meet growing compliance requirements","","","","","Atle Skjekkeland
Charisma Starr
Gary Danoys
Sean Sweeney
Rudra Mitra
Malli Vangala
Nomi Nazeer
Hye Jun
Ann Johnson
James Ringold
Dan Menicucci
Joseph Davis
Matthew Stoodley
Steve Vandenberg
Joseph Stumpf
Matt Littleton
Chad Ergun
","Infonate
Exelon Corp
Microsoft
Microsoft
M365 Security and Compliance
Microsoft
Microsoft
Microsoft
CVP, Cybersecurity
Microsoft
Microsoft
Microsoft
Microsoft
Microsoft
Microsoft Corporation
Microsoft
Davis Graham
","managing and mitigating risk: understanding and assessing the risks you face so that you can more effectively meet growing compliance requirements"
"PRE22","Getting started with Microsoft 365","","","","","Tracy Van der Schyff
","The Guid Stuff
","getting started with microsoft 365"
"PRE28","Microsoft Cybersecurity Summit","","","","","Valecia Maclin
Ken Sexsmith
Blythe Price
Homa Hayatyfar
Andrew Harris
Jonathan Trull
Amber Boehm
Jeremiah Grossman
Alex Stamos
Keren Elazari
Betsy Cooper
","Microsoft
Microsoft
Microsoft
Microsoft/DSRE
Microsoft
Microsoft
Microsoft
Bit Discovery and CSS SentinelOne
Adjunct Professor at Stanford’s Freeman-Spogli Institute
k3r3n3.com
Aspen Tech Policy Hub
","microsoft cybersecurity summit"
"BRK1047","EXAM PREP: AZ-900 | Microsoft Azure Fundamentals","Fundamentals","Exam Prep","Foundational (100)","","Tim Warner
","Pluralsight
","exam prep: az-900 | microsoft azure fundamentals"
"THR3034","Twenty minutes to a secure environment","","","Advanced (300)","Microsoft 365 Email and Calendar
Microsoft 365
Microsoft 365 Security Management
","Jeff Guillet
","MVP | MCSM | EXPTA Consulting
","twenty minutes to a secure environment"
"THR1013","Dave Kawula's notes from the field on Azure Stack HCI","","","Foundational (100)","Azure Storage
Azure
Azure Microsoft Azure Stack
","Dave Kawula
","Checkyourlogs.net
","dave kawula's notes from the field on azure stack hci"
"UNC1002","Power Platform for the CRM person","","","Foundational (100)","Power Platform Microsoft Flow
Power Platform
Power Platform PowerApps
","Joel Lindstrom
Shawn Tabor
Marco Amoedo Martinez
Elaiza Benitez
","Hitachi Solutions
Hitachi Solutions
KPMG
Independent Consultant
","power platform for the crm person"
"THR3037","Moving corporate user data to OneDrive for Business: How hard can it be?","","","Advanced (300)","Microsoft 365 Files and Content
Microsoft 365
Microsoft 365 Device and Application Management
","Raymond Comvalius
","NEXTXPERT
","moving corporate user data to onedrive for business: how hard can it be?"
"THR3001","Applied deep learning: New kind of multimedia content","","","Advanced (300)","Azure AI + Machine Learning
Azure
Azure Media
","Gianni Rosa Gallina
","Deltatre
","applied deep learning: new kind of multimedia content"
"BRK3222","Tackle your modern work challenges with AI, natural language, and more in Microsoft Excel","Productivity","Session","Advanced (300)","Microsoft 365 Files and Content
Microsoft 365
Microsoft 365 Information Protection
Microsoft 365 Identity and Access Management
Microsoft 365 Email and Calendar
Microsoft 365 Threat Protection
Microsoft 365 Meetings and Voice
Microsoft 365 Operating System
Microsoft 365 Device and Application Management
Microsoft 365 Applications
Microsoft 365 Task Management
Microsoft 365 Social and Intranet
Microsoft 365 Security Management
Microsoft 365 Advanced Compliance
Microsoft 365 Advanced Analytics
","Yunling Wang
","Microsoft
","tackle your modern work challenges with ai, natural language, and more in microsoft excel"
"BRK3093","How the Office app on Windows, web, and mobile can simplify employees’ lives","Productivity","Session","Advanced (300)","Microsoft 365 Files and Content
Microsoft 365
Microsoft 365 Applications
","Kevin Stratvert
Nithya Sampathkumar
William Doll
","Microsoft
Microsoft
Microsoft
","how the office app on windows, web, and mobile can simplify employees’ lives"
"UNC1010","Achieving zero downtime deployments with Azure DevOps and Kubernetes","","","Foundational (100)","Azure Containers
Azure
Azure DevOps
","Scott Hoag
","@msclouditpro @ciphertxt
","achieving zero downtime deployments with azure devops and kubernetes"
"BRK3149","Managing a virtual workplace using Windows Virtual Desktop and Microsoft 365","","","Advanced (300)","Microsoft 365 Operating System
Microsoft 365
Microsoft 365 Device and Application Management
","Simon Binder
","Truesec
","managing a virtual workplace using windows virtual desktop and microsoft 365"
"BRK4016","Real detection stories! See how Microsoft Threat Protection defeated actual attacks and adheres to the MITRE framework","Security","Session","Expert (400)","Microsoft 365 Threat Protection
Microsoft 365
","Elia Florio
David Fantham
","Microsoft
Microsoft Threat Protection
","real detection stories! see how microsoft threat protection defeated actual attacks and adheres to the mitre framework"
"BRK2104","Your users are under attack! Strengthen your anti-phishing defense with these O365 ATP best practices","Security","Session","Intermediate (200)","Microsoft 365 Threat Protection
Microsoft 365
","Girish Chander
","Microsoft
","your users are under attack! strengthen your anti-phishing defense with these o365 atp best practices"
"THR2058","Discover shadow IT across all your SaaS, IaaS, and PaaS resources","Security","Session","Intermediate (200)","Microsoft 365 Operating System
Microsoft 365
Microsoft 365 Applications
Microsoft 365 Information Protection
","Alex Esibov
","Microsoft
","discover shadow it across all your saas, iaas, and paas resources"
"BRK3317","Microsoft Surface Hub 2S IT pro deep dive","Devices","Session","Advanced (300)","Microsoft 365 Device and Application Management
Microsoft 365
","Yoav Barzilay
Peter Lurie
","Microsoft
Microsoft
","microsoft surface hub 2s it pro deep dive"
"THR1060","Meet Microsoft Surface ","Devices","Session","Foundational (100)","Microsoft 365 Device and Application Management
Microsoft 365
","Frank Buchholz
","Microsoft
","meet microsoft surface"
"TK03","Microsoft's roadmap for security, compliance, and identity","Customer Success","Thought Leadership","Intermediate (200)","","Kirk Koenigsbauer
Ann Johnson
Bret Arsenault
","Microsoft
CVP, Cybersecurity
Microsoft Corportation
","microsoft's roadmap for security, compliance, and identity"
"THR2008","You do meetings? So do we! Come see new meeting features in Outlook on the web!","Productivity","Session","Intermediate (200)","Microsoft 365 Operating System
Microsoft 365
Microsoft 365 Task Management
Microsoft 365 Meetings and Voice
Microsoft 365 Device and Application Management
Microsoft 365 Threat Protection
Microsoft 365 Applications
Microsoft 365 Identity and Access Management
Microsoft 365 Security Management
Microsoft 365 Email and Calendar
Microsoft 365 Social and Intranet
Microsoft 365 Information Protection
Microsoft 365 Files and Content
Microsoft 365 Advanced Compliance
Microsoft 365 Advanced Analytics
","Will Holmes
","Microsoft Corp/Outlook Calendar
","you do meetings? so do we! come see new meeting features in outlook on the web!"
"BRK3014","Understanding the latest updates in Azure Cosmos DB API for Mongo DB and best practices","Data","Session","Advanced (300)","Azure Databases
Azure
","Sri Chintala
","Microsoft
","understanding the latest updates in azure cosmos db api for mongo db and best practices"
"THR2064","Five Microsoft PowerPoint tricks you wished you knew","","","Intermediate (200)","Microsoft 365 Applications
Microsoft 365
","Boris Hristov
","356labs
","five microsoft powerpoint tricks you wished you knew"
"THR1026","Five reasons to integrate Yammer into Microsoft Teams","","","Foundational (100)","Microsoft 365 Social and Intranet
Microsoft 365
","Amy Dolzine
","Ernst & Young, LLP
","five reasons to integrate yammer into microsoft teams"
"THR1028","Organizing an IT community conference: Tips and tricks","","","Foundational (100)","Not Product Specific
","Dzmitry Durasau
","EPAM Systems
","organizing an it community conference: tips and tricks"
"BRK2157","Exam Prep | MS-100: Microsoft 365 Identity and Services","Fundamentals","Exam Prep","Intermediate (200)","Microsoft 365 Threat Protection
Microsoft 365
Microsoft 365 Security Management
","Ed Baker
","Excalibur Services
","exam prep | ms-100: microsoft 365 identity and services"
"THR1031","Office 365 and Microsoft Teams adoption from the real world","","","Foundational (100)","Microsoft 365 Meetings and Voice
Microsoft 365
Microsoft 365 Files and Content
","John Peluso
","AvePoint Public Sector Inc.
","office 365 and microsoft teams adoption from the real world"
"UNC1022","Sharing experiences: In the end, how do we put our stuff in production?","","","Foundational (100)","Azure DevOps
Azure
","Ernesto Cardenas Cangahuala
","Interbank
","sharing experiences: in the end, how do we put our stuff in production?"
"UNC1033","IoT loves Azure Functions! What is your experience with serverless and IoT?","","","Foundational (100)","Azure Web
Azure
Azure Internet of Things
","Jorge Maia
Armando Lacerda
","CrazyTechLabs
MC Tech
","iot loves azure functions! what is your experience with serverless and iot?"
"THR2014","Automating Azure Cognitive Services with PowerShell","","","Intermediate (200)","Azure AI + Machine Learning
Azure
","Aleksandar Nikolic
","M.O.3.A.K. IT Consulting
","automating azure cognitive services with powershell"
"BRK4000","Multi-master and global distribution with Azure Cosmos DB","Data","Session","Expert (400)","Azure Databases
Azure
","Mark Brown
","Azure Cosmos DB
","multi-master and global distribution with azure cosmos db"
"BRK2003","Get ahead with Outlook mobile: Intelligent technology that helps you stay on top of your day","Productivity","Session","Intermediate (200)","Microsoft 365 Task Management
Microsoft 365
Microsoft 365 Threat Protection
Microsoft 365 Operating System
Microsoft 365 Email and Calendar
Microsoft 365 Information Protection
Microsoft 365 Identity and Access Management
Microsoft 365 Device and Application Management
Microsoft 365 Files and Content
Microsoft 365 Social and Intranet
Microsoft 365 Security Management
Microsoft 365 Applications
Microsoft 365 Advanced Compliance
Microsoft 365 Meetings and Voice
Microsoft 365 Advanced Analytics
","Tali Roth
Michael Palermiti
","Microsoft
Microsoft
","get ahead with outlook mobile: intelligent technology that helps you stay on top of your day"
"BRK3023","Machine learning and AI with SQL Server 2019 big data clusters","Data","Session","Advanced (300)","Azure Databases
Azure
","Buck Woody
Nellie Gustafsson
","Microsoft
Microsoft
","machine learning and ai with sql server 2019 big data clusters"
"BRK3024","SQL Server 2019 on containers and Kubernetes","Data","Session","Advanced (300)","Azure Databases
Azure
","Vin Yu
","Microsoft
","sql server 2019 on containers and kubernetes"
"BRK2013","Raising the bar again for Azure SQL Database with Centrally Managed Encryption","Data","Session","Intermediate (200)","Azure Databases
Azure
Azure Security
","Joachim Hammer
Jakub Szymaszek
","Microsoft
Microsoft
","raising the bar again for azure sql database with centrally managed encryption"
"THR2018","Creating enterprise conversational user experiences with virtual assistants","Intelligence","Session","Intermediate (200)","Azure AI + Machine Learning
Azure
","Dewain Robinson
","Microsoft
","creating enterprise conversational user experiences with virtual assistants"
"BRK3031","How key industries are getting changed by computer vision on edge and on cloud","Intelligence","Customer Showcase","Advanced (300)","Azure AI + Machine Learning
Azure
","Cornelia Carapcea
Petra Tant
","Microsoft
Aprimo
","how key industries are getting changed by computer vision on edge and on cloud"
"UNC1027","Starting (and sustaining) a user group","","","Foundational (100)","Not Product Specific
","Greg Ramsey
","Dell Technologies
","starting (and sustaining) a user group"