-
Notifications
You must be signed in to change notification settings - Fork 0
/
dataMicrosoft.json
2447 lines (2447 loc) · 150 KB
/
dataMicrosoft.json
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
[ { EventId: [32m'44837'[39m,
Type: [32m'Live'[39m,
Title: [32m'Up Your Marketing Game: Social Media Secrets'[39m,
URL: [32m'https://resources.office.com/registration-small-business-academy-webcast.html'[39m,
Description: [32m'Get the tips, tricks and expert advice you need to jumpstart your marketing plan. On this month’s episode of Office Small Business Academy, we sit down with social media experts to discuss tips every entrepreneur needs for a smart social media strategy. Register now for the September episode of Office Small Business Academy, “Up Your Marketing Game: Social Media Secrets,” airing 9/27 9 AM PST / 12 PM ET.'[39m,
StartDate: [32m'2016-09-27T09:00:00'[39m,
EndDate: [32m'2016-09-27T10:00:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'Pacific Time (US & Canada) (GMT-08:00)'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Business Professionals'[39m, [32m'IT Professionals'[39m, [length]: [33m2[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product:
[ [32m'Cloud Platform'[39m,
[32m'Microsoft Dynamics'[39m,
[32m'Office'[39m,
[32m'Skype'[39m,
[32m'Small Business solutions'[39m,
[length]: [33m5[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://content.inxpo.com/FileLibrary/2431/22/SBA_NewLogo_236x144.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'47200'[39m,
Type: [32m'Live'[39m,
Title: [32m'Partner Conecta'[39m,
URL: [32m'https://vts.inxpo.com/Launch/QReg.htm?ShowKey=34855'[39m,
Description: [32m'Partner Conecta 2016, Conecta tu negocio al éxito. En este evento usted tendrá la oportunidad de acceder a nuevas oportunidades de negocios que le permitirán transformarse y crecer. '[39m,
StartDate: [32m'2016-10-18T10:30:00'[39m,
EndDate: [32m'2016-10-19T17:30:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'Eastern Time (US & Canada) (GMT-05:00)'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'Español'[39m, [length]: [33m1[39m ],
Product:
[ [32m'Cloud Platform'[39m,
[32m'Office'[39m,
[32m'Enterprise solutions'[39m,
[32m'Microsoft Azure'[39m,
[32m'Server & Management'[39m,
[32m'Small Business Solutions'[39m,
[32m'Windows'[39m,
[length]: [33m7[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://content.inxpo.com/FileLibrary/1952/24/MicrosoftLogo_150x150.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'es'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'45447'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'CSP Onboarding Workshop Series'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x6163990001'[39m,
Description: [32m'CSP Onboarding Workshop: This is an end-to-end training session for newly authorized Cloud Service Provider (CSP) Partners designed to cover an overview of Partner Center, invoicing and billing, and demystify the support systems Microsoft has in place for CSP.'[39m,
StartDate: [32m'2016-10-19T14:00:00'[39m,
EndDate: [32m'2017-06-21T16:00:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'(GMT-04:00) Eastern Time (US & Canada)'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product:
[ [32m'Cloud Platform'[39m,
[32m'Microsoft Azure'[39m,
[32m'Server and Management'[39m,
[32m'Microsoft Dynamics'[39m,
[32m'Windows'[39m,
[length]: [33m5[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/EventMultipleProducts.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'50785'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Novedades Mensuales Dynamics 365'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x8212950001'[39m,
Description: [32m'Los Partners de Microsoft necesitan una opción para mantenerse al día sobre las novedades en el entorno de Microsoft Dynamics CRM. El equipo Partner Technical Services presenta en esta serie de webcasts mensuales todas las noticias, artículos y documentos relevantes que se publiquen durante el último mes. Usted recibirá los detalles relacionados con Marketing y Ventas, así como también información sobre las noticias y la documentación técnica recientemente publicada.'[39m,
StartDate: [32m'2016-10-20T10:00:00'[39m,
EndDate: [32m'2017-06-08T11:00:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'(GMT+02:00) Brussels, Copenhagen, Madrid, Paris'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'Español'[39m, [length]: [33m1[39m ],
Product: [ [32m'Microsoft Dynamics'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/MicrosoftDynamics.png'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'es'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'44836'[39m,
Type: [32m'Live'[39m,
Title: [32m'How to Keep Your Business Safe from Cyber Attacks'[39m,
URL: [32m'https://resources.office.com/registration-small-business-academy-webcast.html'[39m,
Description: [32m'Office Small Business Academy is a monthly educational and thought leadership webcast series created for small business owners as a source of ideas, inspiration, and smarter ways of running a business.'[39m,
StartDate: [32m'2016-10-25T09:00:00'[39m,
EndDate: [32m'2016-10-25T10:00:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'Pacific Time (US & Canada) (GMT-08:00)'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Business Professionals'[39m, [32m'IT Professionals'[39m, [length]: [33m2[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product:
[ [32m'Cloud Platform'[39m,
[32m'Microsoft Dynamics'[39m,
[32m'Office'[39m,
[32m'Skype'[39m,
[32m'Small Business solutions'[39m,
[length]: [33m5[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://content.inxpo.com/FileLibrary/2431/22/SBA_NewLogo_236x144.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'44770'[39m,
Type: [32m'Live'[39m,
Title: [32m'SBA December 2016 Episode'[39m,
URL: [32m'https://resources.office.com/registration-small-business-academy-webcast.html'[39m,
Description: [32m'Office Small Business Academy is a monthly educational and thought leadership webcast series created for small business owners as a source of ideas, inspiration, and smarter ways of running a business.'[39m,
StartDate: [32m'2016-12-27T09:00:00'[39m,
EndDate: [32m'2016-12-27T10:00:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'Pacific Time (US & Canada) (GMT-08:00)'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Business Professionals'[39m, [32m'IT Professionals'[39m, [length]: [33m2[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product:
[ [32m'Cloud Platform'[39m,
[32m'Microsoft Dynamics'[39m,
[32m'Office'[39m,
[32m'Skype'[39m,
[32m'Small Business solutions'[39m,
[length]: [33m5[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://content.inxpo.com/FileLibrary/2431/22/SBA_NewLogo_236x144.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'51775'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'What’s new and highlights from Microsoft Dynamics 365'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x10564770001'[39m,
Description: [32m'L’évènement «What’s new and highlights from Microsoft Dynamics 365» est un événement mensuel où vous pourrez échanger avec le spécialiste Microsoft Dynamics. Nous aborderons lors de chaque événement une nouveauté et un sujet technique autour de Dynamics 365. Nous vous donnerons la parole pour interroger notre expert qui répondra en direct à vos questions. '[39m,
StartDate: [32m'2017-01-05T13:00:00'[39m,
EndDate: [32m'2017-07-06T14:00:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'(GMT+02:00) Brussels, Copenhagen, Madrid, Paris'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'Français'[39m, [length]: [33m1[39m ],
Product: [ [32m'Microsoft Dynamics'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/MicrosoftDynamics.png'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'fr'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'52087'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Technical Deep Dive - Dynamics 365'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x10768830001'[39m,
Description: [32m'Technical Deep Dive - Dynamics 365 est un webcat où vous pourrez échanger avec le spécialiste Microsoft Dynamics. Nous aborderons lors de chaque événement un sujet technique autour de l\'offre Dynamic 365. Nous vous donnerons la parole pour interroger notre expert qui r é pondra en direct à vos questions.'[39m,
StartDate: [32m'2017-01-19T13:00:00'[39m,
EndDate: [32m'2017-06-22T14:00:00'[39m,
City: [32m'United States'[39m,
Category: [32m'Online'[39m,
LocationName: [32m'Online Skype for Business'[39m,
TimeZone: [32m'(GMT+02:00) Brussels, Copenhagen, Madrid, Paris'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'Français'[39m, [length]: [33m1[39m ],
Product: [ [32m'Microsoft Dynamics'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/MicrosoftDynamics.png'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'40.22017'[39m,
Longitude: [32m'-79.49426'[39m,
LanguageCode: [32m'fr'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'44772'[39m,
Type: [32m'Live'[39m,
Title: [32m'SBA January 2017 Episode'[39m,
URL: [32m'https://resources.office.com/registration-small-business-academy-webcast.html'[39m,
Description: [32m'Office Small Business Academy is a monthly educational and thought leadership webcast series created for small business owners as a source of ideas, inspiration, and smarter ways of running a business.'[39m,
StartDate: [32m'2017-01-24T09:00:00'[39m,
EndDate: [32m'2017-01-24T10:00:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'Pacific Time (US & Canada) (GMT-08:00)'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Business Professionals'[39m, [32m'IT Professionals'[39m, [length]: [33m2[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product:
[ [32m'Cloud Platform'[39m,
[32m'Microsoft Dynamics'[39m,
[32m'Office'[39m,
[32m'Skype'[39m,
[32m'Small Business solutions'[39m,
[length]: [33m5[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://content.inxpo.com/FileLibrary/2431/22/SBA_NewLogo_236x144.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'44776'[39m,
Type: [32m'Live'[39m,
Title: [32m'Small Business Academy Webinar Series'[39m,
URL: [32m'https://resources.office.com/registration-small-business-academy-webcast.html'[39m,
Description: [32m'Office Small Business Academy is a monthly educational and thought leadership webcast series created for small business owners as a source of ideas, inspiration, and smarter ways of running a business.'[39m,
StartDate: [32m'2017-01-24T09:00:00'[39m,
EndDate: [32m'2017-01-24T10:00:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'Pacific Time (US & Canada) (GMT-08:00)'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Business Professionals'[39m, [32m'IT Professionals'[39m, [length]: [33m2[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product:
[ [32m'Cloud Platform'[39m,
[32m'Microsoft Dynamics'[39m,
[32m'Office'[39m,
[32m'Skype'[39m,
[32m'Small Business solutions'[39m,
[length]: [33m5[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://content.inxpo.com/FileLibrary/2431/22/SBA_NewLogo_236x144.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'66995'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Business Continuity & Disaster Recovery Hands on Workshop Series'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x14514680001'[39m,
Description: [32m'Many businesses don\'t have a second site to use for businesscontinuity and disaster recovery to mitigate service incidents like hardwarefailure/power outage, fire, natural disaster or even theft. With the launch ofthe new European Datacentres the Azure public cloud is the obvious choice. Today’s businesses have demanding SLAs and complex BCDRstrategies, this combined with cloud migration, many organizations are nowconsidering a Hybrid cloud approach. This approach enables them to leverage theenormous scale and performance of the public cloud combined with their chosenbusiness continuity software. We are hosting a series ofexclusive workshops that will give you the opportunity to get hands on with topBCDR solutions built on Azure that are offered by our partners. During thistime you will have the opportunity to work with technical leads from bothMicrosoft and our partner to learn more how their solution can help yourbusiness. '[39m,
StartDate: [32m'2017-02-07T00:00:00'[39m,
EndDate: [32m'2017-05-15T00:00:00'[39m,
City: [32m'Schiphol'[39m,
Category: [32m'In Person'[39m,
LocationName: [32m'Microsoft Nederland'[39m,
TimeZone: [32m'(GMT+02:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna'[39m,
Country: [32m'Netherlands'[39m,
EventsFor: [ [32m'Developers'[39m, [32m'IT Professionals'[39m, [length]: [33m2[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Cloud Platform'[39m, [32m'Developer Tools'[39m, [length]: [33m2[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/EventMultipleProducts.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'52.3037'[39m,
Longitude: [32m'4.7502'[39m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'51852'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Introduction to Dynamics 365 - Technical Onboarding for SMB Partners'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x10553750001'[39m,
Description: [32m'L’évènement Introduction à Dynamics 365 est un webcast où nous vous présenterons les nouvelles fonctionnalités de Dynamics 365, son modèle de licensing et de vente, la Roadmap produit réaliserons des démonstrations pour vous aider à intégrer cette nouvelle application pas à pas. Nous vous donnerons la parole pour interroger nos experts qui répondront en direct à vos questions.'[39m,
StartDate: [32m'2017-02-07T13:00:00'[39m,
EndDate: [32m'2017-05-23T14:00:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'(GMT+02:00) Brussels, Copenhagen, Madrid, Paris'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'Français'[39m, [length]: [33m1[39m ],
Product: [ [32m'Microsoft Dynamics'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/MicrosoftDynamics.png'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'fr'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'47199'[39m,
Type: [32m'Live'[39m,
Title: [32m'Microsoft Level Up%21 Sessions – Knacken Sie den Highscore und werden Sie Top-Player Ihrer Company%21'[39m,
URL: [32m'https://vts.inxpo.com/Launch/QReg.htm?ShowKey=34798'[39m,
Description: [32m'Bereit für die Siegerstraße? Dann bist du hier genau richtig: Mit der „Level Up! Controller“ App und den „Level Up!“-Sessions machst du dich zum wertvollsten Mitarbeiter deiner Company und tankst eine Extra-Portion Schubkraft für deine Karriere. Erfahre nicht nur alles über die Vorzüge einer Partnerschaft deines Unternehmens mit Microsoft, sondern punkte bei deinen Kollegen und deinem Chef mit umfangreichem Wissen über die neuesten Microsoft-Technologien und wie man mit der richtigen Strategie sowie erfolgreichen Marketing- und Vertriebsmaßnahmen dein Unternehmen zum Erfolg führt. Aber wir liefern dir noch mehr Argumente für dein nächstes Jahresgespräch mit dem Chef: Wie wäre es, wenn auf deiner Punkteliste Aktionen, Maßnahmen und Veranstaltungen stünden, die du für dein Unternehmen errei'[39m,
StartDate: [32m'2017-02-24T13:30:00'[39m,
EndDate: [32m'2017-02-24T14:30:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna (GMT+01:00)'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'Deutsch'[39m, [length]: [33m1[39m ],
Product:
[ [32m'Cloud Platform'[39m,
[32m'Microsoft Azure'[39m,
[32m'Office'[39m,
[32m'Small Business solutions'[39m,
[32m'Surface'[39m,
[32m'Windows'[39m,
[length]: [33m6[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://content.inxpo.com/FileLibrary/1952/24/MSFT-Logo_236x144.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'de'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'44771'[39m,
Type: [32m'Live'[39m,
Title: [32m'SBA February 2017 Episode'[39m,
URL: [32m'https://resources.office.com/registration-small-business-academy-webcast.html'[39m,
Description: [32m'Office Small Business Academy is a monthly educational and thought leadership webcast series created for small business owners as a source of ideas, inspiration, and smarter ways of running a business.'[39m,
StartDate: [32m'2017-02-28T09:00:00'[39m,
EndDate: [32m'2017-02-28T10:30:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'Pacific Time (US & Canada) (GMT-08:00)'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Business Professionals'[39m, [32m'IT Professionals'[39m, [length]: [33m2[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product:
[ [32m'Cloud Platform'[39m,
[32m'Microsoft Dynamics'[39m,
[32m'Office'[39m,
[32m'Skype'[39m,
[32m'Small Business solutions'[39m,
[length]: [33m5[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://content.inxpo.com/FileLibrary/2431/22/SBA_NewLogo_236x144.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'44835'[39m,
Type: [32m'Live'[39m,
Title: [32m'Modern Workplace Series'[39m,
URL: [32m'https://products.office.com/en-us/business/modern-workplace'[39m,
Description: [32m'Modern Workplace is a monthly thought-leadership webcast series that gives you access to entrepreneurs and thought leaders who are changing the future, brought to you by Microsoft.'[39m,
StartDate: [32m'2017-03-14T08:00:00'[39m,
EndDate: [32m'2017-03-14T08:30:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'Pacific Time (US & Canada) (GMT-08:00)'[39m,
Country: [1mnull[22m,
EventsFor:
[ [32m'Business Professionals'[39m,
[32m'IT Professionals'[39m,
[32m'Government'[39m,
[length]: [33m3[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product:
[ [32m'Office'[39m,
[32m'Skype'[39m,
[32m'Enterprise solutions'[39m,
[32m'Microsoft Azure'[39m,
[32m'Cloud Platform'[39m,
[32m'Server and Management'[39m,
[32m'Windows'[39m,
[length]: [33m7[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://content.inxpo.com/FileLibrary/1952/24/MicrosoftLogo_150x150.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'44774'[39m,
Type: [32m'Live'[39m,
Title: [32m'SBA March 2017 Episode'[39m,
URL: [32m'https://resources.office.com/registration-small-business-academy-webcast.html'[39m,
Description: [32m'Office Small Business Academy is a monthly educational and thought leadership webcast series created for small business owners as a source of ideas, inspiration, and smarter ways of running a business.'[39m,
StartDate: [32m'2017-03-28T09:00:00'[39m,
EndDate: [32m'2017-03-28T10:00:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'Pacific Time (US & Canada) (GMT-08:00)'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Business Professionals'[39m, [32m'IT Professionals'[39m, [length]: [33m2[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product:
[ [32m'Cloud Platform'[39m,
[32m'Microsoft Dynamics'[39m,
[32m'Office'[39m,
[32m'Skype'[39m,
[32m'Small Business solutions'[39m,
[length]: [33m5[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://content.inxpo.com/FileLibrary/2431/22/SBA_NewLogo_236x144.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'51822'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Enhance your business with Dynamics 365 and Azure'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x10404220001'[39m,
Description: [32m'Enhance your business with Dynamics 365 and Azure est un webcat où vous pourrez échanger avec les spécialistes Microsoft Dynamics 365 et Azure.'[39m,
StartDate: [32m'2017-03-30T13:00:00'[39m,
EndDate: [32m'2017-06-29T14:00:00'[39m,
City: [32m''[39m,
Category: [32m'Online'[39m,
LocationName: [32m'Online Skype for Business'[39m,
TimeZone: [32m'(GMT+02:00) Brussels, Copenhagen, Madrid, Paris'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'Français'[39m, [length]: [33m1[39m ],
Product: [ [32m'Microsoft Azure'[39m, [32m'Microsoft Dynamics'[39m, [length]: [33m2[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/EventMultipleProducts.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'fr'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'85077'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Maratona Xamarin em Português'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x18291880001'[39m,
Description: [32m'Mlaratona oficial para desenvolvimento de aplicativos mobile com Xamarin A Microsoft Brasil tem o prazer de convidá-lo para a Maratona Xamarin. Este treinamento não possui custo e todos os participantes que concluírem os módulos e se qualificarem para o exame final de forma satisfatória, receberão um certificado expedido pela Microsoft. Este treinamento está divido em 5 semanas de conteúdo no formato de e-learning. Ao finalizar, o participante poderá desenvolver aplicativos mobile para iOS e Android com Xamarin Studio e aplicações multiplataforma com Visual Studio (Android, iOS e Windows) usando o C# como linguagem de programação. Se você tem conhecimento em C# e quer começar aplicativos mobile multiplataforma, esta Maratona foi feita para você! Registre-se agora!'[39m,
StartDate: [32m'2017-04-17T00:01:00'[39m,
EndDate: [32m'2017-06-09T23:59:00'[39m,
City: [32m'Brazil'[39m,
Category: [32m'In Person'[39m,
LocationName: [32m'Ti Capacitación'[39m,
TimeZone: [32m'(GMT-03:00) Brasilia'[39m,
Country: [32m'Brazil'[39m,
EventsFor: [ [32m'Developers'[39m, [32m'Students'[39m, [length]: [33m2[39m ],
PrimaryLanguage: [ [32m'Português'[39m, [length]: [33m1[39m ],
Product:
[ [32m'Cloud Platform'[39m,
[32m'Microsoft Azure'[39m,
[32m'Developer Tools'[39m,
[length]: [33m3[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/EventMultipleProducts.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'-10.81045'[39m,
Longitude: [32m'-52.97312'[39m,
LanguageCode: [32m'pt'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'44769'[39m,
Type: [32m'Live'[39m,
Title: [32m'SBA April 2017 Episode'[39m,
URL: [32m'https://resources.office.com/registration-small-business-academy-webcast.html'[39m,
Description: [32m'Office Small Business Academy is a monthly educational and thought leadership webcast series created for small business owners as a source of ideas, inspiration, and smarter ways of running a business.'[39m,
StartDate: [32m'2017-04-25T09:00:00'[39m,
EndDate: [32m'2017-04-25T10:00:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'Pacific Time (US & Canada) (GMT-08:00)'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Business Professionals'[39m, [32m'IT Professionals'[39m, [length]: [33m2[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product:
[ [32m'Cloud Platform'[39m,
[32m'Microsoft Dynamics'[39m,
[32m'Office'[39m,
[32m'Skype'[39m,
[32m'Small Business solutions'[39m,
[length]: [33m5[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://content.inxpo.com/FileLibrary/2431/22/SBA_NewLogo_236x144.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'85510'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Migração de aplicativos para o Azure'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x19807130001'[39m,
Description: [32m'Aprenda a otimizar seus processos para implantação de aplicativos usando as cargas de trabalho do Microsoft Azure da web. Migrando existentes ambientes de negócios de aplicativos de teste Azure, ative seus direitos de benefícios para uso interno (IUR). Descubra como fazer máquinas virtuais de Azure, Microsoft, serviço de serviços de nuvem Azure App e banco de dados do SQL Azure para agilizar os processos de implementação e responder rapidamente às necessidades dos seus clientes.'[39m,
StartDate: [32m'2017-05-03T14:00:00'[39m,
EndDate: [32m'2017-05-10T16:00:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'(GMT-03:00) Brasilia'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Developers'[39m, [32m'IT Professionals'[39m, [32m'Partners'[39m, [length]: [33m3[39m ],
PrimaryLanguage: [ [32m'Português'[39m, [length]: [33m1[39m ],
Product: [ [32m'Microsoft Azure'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/Azure.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'pt'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'70796'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Hybrid Cloud Smart Lab Sessions'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x15292540001'[39m,
Description: [32m'With the new speed and agility brought to the datacentre by the cloud comes challenges around visibility, protection, monitoring, and streamlining workflows. To resolve these issues and to unify management across infrastructure and services, many are turning to Microsoft Hybrid IT Management solutions, powered by the Operations Management Suite and System Center.'[39m,
StartDate: [32m'2017-05-04T08:30:00'[39m,
EndDate: [32m'2017-05-25T15:00:00'[39m,
City: [32m'Johannesburg'[39m,
Category: [32m'In Person'[39m,
LocationName: [32m'Microsoft Technology Center - South Africa'[39m,
TimeZone: [32m'(GMT+02:00) Cairo'[39m,
Country: [32m'South Africa'[39m,
EventsFor: [ [32m'Business Professionals'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Cloud Platform'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/CloudPlatForm.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'-26.0463'[39m,
Longitude: [32m'28.0199'[39m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'67312'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Containers for Developers and IT Pros'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x15928850001'[39m,
Description: [32m'Container technology can help developers and IT professionals deploy faster and scale apps in the cloud. Containers can improve your organization’s development lifecycle for scalable, agile release cadence and high availability.'[39m,
StartDate: [32m'2017-05-04T09:00:00'[39m,
EndDate: [32m'2017-05-04T15:30:00'[39m,
City: [32m'San Francisco'[39m,
Category: [32m'In Person'[39m,
LocationName: [32m'Microsoft Technology Center - San Francisco'[39m,
TimeZone: [32m'(GMT-07:00) Pacific Time (US & Canada)'[39m,
Country: [32m'United States'[39m,
EventsFor:
[ [32m'Developers'[39m,
[32m'IT Professionals'[39m,
[32m'Business Professionals'[39m,
[length]: [33m3[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Cloud Platform'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/CloudPlatForm.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'37.79226'[39m,
Longitude: [32m'-122.4035'[39m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'71396'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Containers for Developers and IT Pros'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x19316930001'[39m,
Description: [32m'Container technology can help developers and IT professionals deploy faster and scale apps in the cloud. Containers can improve your organization’s development lifecycle for scalable, agile release cadence and high availability.'[39m,
StartDate: [32m'2017-05-04T09:00:00'[39m,
EndDate: [32m'2017-05-04T15:30:00'[39m,
City: [32m'Burlington'[39m,
Category: [32m'In Person'[39m,
LocationName: [32m'Microsoft Technology Center - Burlington'[39m,
TimeZone: [32m'(GMT-04:00) Eastern Time (US & Canada)'[39m,
Country: [32m'United States'[39m,
EventsFor:
[ [32m'Developers'[39m,
[32m'IT Professionals'[39m,
[32m'Business Professionals'[39m,
[length]: [33m3[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Cloud Platform'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/CloudPlatForm.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'42.48426'[39m,
Longitude: [32m'-71.19079'[39m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'71101'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Technical Deep Dive on Deploying Skype for Business Module 1: Defining Requirements for a Skype for Business Deployment'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x18933510001'[39m,
Description: [32m'We are going to work in a Contoso scenario with a defined topology. Then we will go through the process to define implementation requirements, everything you need to know to deploy SfB.'[39m,
StartDate: [32m'2017-05-04T11:00:00'[39m,
EndDate: [32m'2017-05-04T12:30:00'[39m,
City: [32m'United States'[39m,
Category: [32m'Online'[39m,
LocationName: [32m'Online Skype for Business'[39m,
TimeZone: [32m'(GMT-05:00) Central Time (US & Canada)'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'IT Professionals'[39m, [32m'Partners'[39m, [length]: [33m2[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Office'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/Office.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'40.22017'[39m,
Longitude: [32m'-79.49426'[39m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'85508'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Introdução ao Microsoft Azure Site Recovery e Azure Backup'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x19799340001'[39m,
Description: [32m'Azul de Backup e recuperação de sites oferecem um excelente ponto de partida para a venda de serviços na nuvem para as PME. Com o apoio de Azure, você pode ajudar os clientes a proteger os dados contra perda e corrupção de servidores, permitindo uma forma de segurança de armazenamento escalável, seguro fora do local. No Azure - Site - recovery (ASR) é um poderoso serviço que fornece recursos de recuperação de desastres para replicação, failover e recuperação de máquinas virtuais. Após esta sessão, você será capaz de identificar as diferenças entre o desastre de recuperação e backup, e como funcionam essas tecnologias; incluindo a criação de um plano e orquestrar uma recuperação.'[39m,
StartDate: [32m'2017-05-04T14:00:00'[39m,
EndDate: [32m'2017-05-04T18:00:00'[39m,
City: [1mnull[22m,
Category: [32m'Online'[39m,
LocationName: [1mnull[22m,
TimeZone: [32m'(GMT-03:00) Brasilia'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'IT Professionals'[39m, [32m'Partners'[39m, [length]: [33m2[39m ],
PrimaryLanguage: [ [32m'Português'[39m, [length]: [33m1[39m ],
Product: [ [32m'Microsoft Azure'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/Azure.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'pt'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'54065'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'EMS - Gestione dei dispositivi mobili e delle applicazioni tramite Mirosoft Intune'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x12433040001'[39m,
Description: [32m'Una delle più grandi sfide odierne è la protezione dei dati aziendali sui dispositivi mobili. La sessione ha lo scopo di approfondire i vantaggi dell\'adozione dei servizi inclusi in Microsoft Enterprise Mobility Suite, in particolare di Microsoft Intune, che permette la gestione dei dispositivi client e mobili, sia di proprietà dell\'azienda che dell\'utente, supportando quindi scenari di BYOD. Tipologia e livello: 300 - Livello avanzato: approfondimenti tecnici, demo avanzate e guide passo-passo'[39m,
StartDate: [32m'2017-05-04T14:30:00'[39m,
EndDate: [32m'2017-05-04T16:30:00'[39m,
City: [32m''[39m,
Category: [32m'Online'[39m,
LocationName: [32m'online skype for business'[39m,
TimeZone: [32m'(GMT+02:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'Italiano'[39m, [length]: [33m1[39m ],
Product: [ [32m'Enterprise solutions'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/EnterpriseSolutions.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'it'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'70908'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Partner Practice Enablement Training: Azure Machine Learning'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x18754340001'[39m,
Description: [32m'Attend this one-day bootcamp to learn how to use Azure Machine Learning, a fully managed cloud service that enables data scientists and developers to efficiently embed predictive analytics into their applications. With this capability, organizations can better benefit from massive data sets.'[39m,
StartDate: [32m'2017-05-05T09:30:00'[39m,
EndDate: [32m'2017-05-05T17:30:00'[39m,
City: [32m'Kowloon'[39m,
Category: [32m'In Person'[39m,
LocationName: [32m'Infocan Training Center'[39m,
TimeZone: [32m'(GMT+08:00) Beijing, Chongqing, Hong Kong, Urumqi'[39m,
Country: [32m'Hong Kong'[39m,
EventsFor: [ [32m'IT Professionals'[39m, [32m'Partners'[39m, [length]: [33m2[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Microsoft Azure'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/Azure.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'22.31089'[39m,
Longitude: [32m'114.2254'[39m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'66109'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Technical Deep Dive on Protecting your data in SharePoint Online and OneDrive for Business'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x14575480001'[39m,
Description: [32m'Technical Deep Dive on Protecting your data in SharePoint Online and OneDrive for Business'[39m,
StartDate: [32m'2017-05-05T10:00:00'[39m,
EndDate: [32m'2017-05-05T12:00:00'[39m,
City: [32m''[39m,
Category: [32m'Online'[39m,
LocationName: [32m'Online Skype for Business'[39m,
TimeZone: [32m'(GMT+08:00) Beijing, Chongqing, Hong Kong, Urumqi'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Office'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/Office.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'67598'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Understanding Web Apps in Azure'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x16003330001'[39m,
Description: [32m'In this course we will look into the development of web apps in the azure. Below are the points we will be covering.'[39m,
StartDate: [32m'2017-05-05T10:30:00'[39m,
EndDate: [32m'2017-05-05T12:30:00'[39m,
City: [32m'United States'[39m,
Category: [32m'Online'[39m,
LocationName: [32m'Online Skype for Business'[39m,
TimeZone: [32m'(GMT+05:30) Chennai, Kolkata, Mumbai, New Delhi'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Microsoft Azure'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/Azure.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'40.22017'[39m,
Longitude: [32m'-79.49426'[39m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'67486'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Introduction To Skype for Business Tech Series: Reference architecture'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x15758230001'[39m,
Description: [32m'Skype for Business Tech Series: Reference architecture'[39m,
StartDate: [32m'2017-05-05T10:30:00'[39m,
EndDate: [32m'2017-05-05T12:30:00'[39m,
City: [32m'United States'[39m,
Category: [32m'Online'[39m,
LocationName: [32m'Online Skype for Business'[39m,
TimeZone: [32m'(GMT+05:30) Chennai, Kolkata, Mumbai, New Delhi'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Office'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/Office.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'40.22017'[39m,
Longitude: [32m'-79.49426'[39m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'69541'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Introduction to Power BI'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x17713900001'[39m,
Description: [32m'Get technically equipped to grow and build your Power BI (Business Intelligence) practice, enabling you to offer new solutions and services to customers. With Power BI, you can transform your customers’ data into rich visuals they can collect and organize, helping them focus on what matters most to their businesses. During this three-hour session, we’ll introduce you to both Power BI and Cortana Intelligence Suite, dive deeper in the capabilities of Power BI, and discuss planning to set up Power BI Desktop and Power BI Service. Help your customers collect and organize actionable data, allowing them to make better business decisions, focus on the right opportunities, and to win more business.'[39m,
StartDate: [32m'2017-05-05T11:00:00'[39m,
EndDate: [32m'2017-05-05T14:00:00'[39m,
City: [32m'United States'[39m,
Category: [32m'Online'[39m,
LocationName: [32m'Online Skype for Business'[39m,
TimeZone: [32m'(GMT-05:00) Central Time (US & Canada)'[39m,
Country: [1mnull[22m,
EventsFor:
[ [32m'IT Professionals'[39m,
[32m'Business Professionals'[39m,
[32m'Partners'[39m,
[length]: [33m3[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Microsoft Azure'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/Azure.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'40.22017'[39m,
Longitude: [32m'-79.49426'[39m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'69398'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'深入研究如何在SharePoint Online以及OneDrive for Business中保护您的数据'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x17399450001'[39m,
Description: [32m'深入研究如何在SharePoint Online以及OneDrive for Business中保护您的数据 '[39m,
StartDate: [32m'2017-05-05T14:00:00'[39m,
EndDate: [32m'2017-05-05T16:00:00'[39m,
City: [32m'China'[39m,
Category: [32m'Online'[39m,
LocationName: [32m'China - Online Skype for Business'[39m,
TimeZone: [32m'(GMT+08:00) Beijing, Chongqing, Hong Kong, Urumqi'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'简体中文'[39m, [length]: [33m1[39m ],
Product: [ [32m'Office'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/Office.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'zh'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'63982'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Approfondimento Tecnico: Scopriamo le funzionalità di Data Lake Store & Analytics'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x13380190001'[39m,
Description: [32m'Questa sessione è dedicata ad apprforndire le funzionalità di Azure Data Lake Storage e come usare le funzioni di Azure Data Lake Analytics per produrre nuovi dati e tabelle.'[39m,
StartDate: [32m'2017-05-05T14:30:00'[39m,
EndDate: [32m'2017-05-05T16:30:00'[39m,
City: [32m''[39m,
Category: [32m'Online'[39m,
LocationName: [32m'Online Skype for Business'[39m,
TimeZone: [32m'(GMT+02:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'Italiano'[39m, [length]: [33m1[39m ],
Product: [ [32m'Microsoft Azure'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/Azure.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [1mnull[22m,
Longitude: [1mnull[22m,
LanguageCode: [32m'it'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'66960'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Drumbeat Grow Office 365 Partner Workshop'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x14164320001'[39m,
Description: [32m'Join us for an exclusive Drumbeat Grow Level 200 partner sales training event to help you take your Office 365 sales to an entirely new level! Event focus \tImprove the usage of the Office 365 Adoption Tools and conduct a Success Plan conversation with a Business Decision Maker. \tPlan a logical platform adoption path for a customer and thereby identify the next several purchases. \tIncrease your skills and develop a plan to gain access to Business Decision Makers. \tStrengthen your ability to create and execute an effective discovery conversation with a Business Decision Maker. '[39m,
StartDate: [32m'2017-05-08T08:30:00'[39m,
EndDate: [32m'2017-05-08T17:00:00'[39m,
City: [32m'Maryland'[39m,
Category: [32m'In Person'[39m,
LocationName: [32m'Microsoft Office - Chevy Chase'[39m,
TimeZone: [32m'(GMT-04:00) Eastern Time (US & Canada)'[39m,
Country: [32m'United States'[39m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Office'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/Office.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'38.96129'[39m,
Longitude: [32m'-77.08607'[39m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'71643'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Microsoft Azure IoT Partner Training'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x19336310001'[39m,
Description: [32m'The Microsoft Azure Advanced IoT Laboratory is a 2-day training course that explores the following topics through a series of hands-on labs using Microsoft Azure IoT Services.'[39m,
StartDate: [32m'2017-05-08T09:00:00'[39m,
EndDate: [32m'2017-05-09T17:00:00'[39m,
City: [32m'Cape Town'[39m,
Category: [32m'In Person'[39m,
LocationName: [32m'Microsoft Cape Town'[39m,
TimeZone: [32m'(GMT+02:00) Harare, Pretoria'[39m,
Country: [32m'South Africa'[39m,
EventsFor: [ [32m'Developers'[39m, [32m'Partners'[39m, [length]: [33m2[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Cloud Platform'[39m, [32m'Microsoft Azure'[39m, [length]: [33m2[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/EventMultipleProducts.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'-33.9472'[39m,
Longitude: [32m'18.4907'[39m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'71355'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Azure Infrastructure and Architecture Course'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x18878980001'[39m,
Description: [32m'This is our most popular course! This five-day training explores Microsoft Azure Infrastructure Services (IaaS) and several PaaS technologies such as Azure Web Apps and Cloud Services from the perspective of an IT Professional. This training provides an in-depth examination of Microsoft Azure Infrastructure Services (IaaS); covering Virtual Machines and Virtual Networks starting from introductory concepts through advanced capabilities of the platform.'[39m,
StartDate: [32m'2017-05-08T09:00:00'[39m,
EndDate: [32m'2017-05-12T17:00:00'[39m,
City: [32m'Sydney'[39m,
Category: [32m'In Person'[39m,
LocationName: [32m'Cliftons Sydney'[39m,
TimeZone: [32m'(GMT+10:00) Brisbane'[39m,
Country: [32m'Australia'[39m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Microsoft Azure'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/Azure.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'-33.8648'[39m,
Longitude: [32m'151.2068'[39m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [32m'AUD - Australian Dollar'[39m },
{ EventId: [32m'71356'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Azure Infrastructure and Architecture Course'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x18883920001'[39m,
Description: [32m'This is our most popular course! This five-day training explores Microsoft Azure Infrastructure Services (IaaS) and several PaaS technologies such as Azure Web Apps and Cloud Services from the perspective of an IT Professional. This training provides an in-depth examination of Microsoft Azure Infrastructure Services (IaaS); covering Virtual Machines and Virtual Networks starting from introductory concepts through advanced capabilities of the platform.'[39m,
StartDate: [32m'2017-05-08T09:00:00'[39m,
EndDate: [32m'2017-05-12T17:00:00'[39m,
City: [32m'Melbourne'[39m,
Category: [32m'In Person'[39m,
LocationName: [32m'Cliftons Melbourne'[39m,
TimeZone: [32m'(GMT+10:00) Brisbane'[39m,
Country: [32m'Australia'[39m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Microsoft Azure'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/Azure.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'-37.817'[39m,
Longitude: [32m'144.9598'[39m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [32m'AUD - Australian Dollar'[39m },
{ EventId: [32m'52466'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Enhance Your Business with Skype for Business Online Academy'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x11281260001'[39m,
Description: [32m'Skype for Business Online Academy is an online webcast series for partners providing in-depth technical training on the next release of Skype for Business Online. Here are the topics to be covered in this session: Cloud PBX + PSTN Calling, PSTN Conferencing and Express route, Hybrid Voice, Enterprise Voice Foundations, Skype Meeting Broadcast.'[39m,
StartDate: [32m'2017-05-08T10:00:00'[39m,
EndDate: [32m'2017-05-09T14:00:00'[39m,
City: [32m'United States'[39m,
Category: [32m'Online'[39m,
LocationName: [32m'Online Skype for Business'[39m,
TimeZone: [32m'(GMT+01:00) Greenwich Mean Time : Dublin, Edinburgh, Lisbon, London'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Office'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/Office.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'40.22017'[39m,
Longitude: [32m'-79.49426'[39m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'69537'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'Introduction to Cortana Intelligence Suite'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x17588880001'[39m,
Description: [32m'Cortana Intelligence Suite is a fully managed Big Data and Advanced Analytics suite to transform data into intelligent action. It is a collection of technologies, all part of the Microsoft Azure cloud offering. On this session, we will review the basics of Cortana Intelligence suite reflected in an end to end scenario and the BI components in azure.'[39m,
StartDate: [32m'2017-05-08T11:00:00'[39m,
EndDate: [32m'2017-05-08T12:30:00'[39m,
City: [32m'United States'[39m,
Category: [32m'Online'[39m,
LocationName: [32m'Online Skype for Business'[39m,
TimeZone: [32m'(GMT-05:00) Central Time (US & Canada)'[39m,
Country: [1mnull[22m,
EventsFor: [ [32m'Partners'[39m, [length]: [33m1[39m ],
PrimaryLanguage: [ [32m'English'[39m, [length]: [33m1[39m ],
Product: [ [32m'Microsoft Azure'[39m, [length]: [33m1[39m ],
IsPublishable: [33mtrue[39m,
Icon: [32m'https://moderneventsimages.azureedge.net/images/Azure.jpg'[39m,
DescriptionHighlights: [ [length]: [33m0[39m ],
TitleHighlights: [ [length]: [33m0[39m ],
Latitude: [32m'40.22017'[39m,
Longitude: [32m'-79.49426'[39m,
LanguageCode: [32m'en'[39m,
RegistrationFees: [1mnull[22m },
{ EventId: [32m'71367'[39m,
Type: [32m'InPerson'[39m,
Title: [32m'7WC16 Das Windows 10 Creators Update aus technischer Sicht'[39m,
URL: [32m'https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x19165500001'[39m,
Description: [32m'Zur Einwahl in das Meeting nutzen Sie bitte den Link aus Ihrer Registrierungsbestätigung.'[39m,
StartDate: [32m'2017-05-08T11:00:00'[39m,