-
Notifications
You must be signed in to change notification settings - Fork 23
/
graveyard.json
1714 lines (1714 loc) · 76.9 KB
/
graveyard.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
[
{
"dateClose": "2015-05-01",
"dateOpen": "2002-01-01",
"description": "Windows Media Center was a digital video recorder and media player for Windows.",
"link": "https://en.wikipedia.org/wiki/Windows_Media_Center",
"name": "Windows Media Center",
"type": "service"
},
{
"dateClose": "2017-10-25",
"dateOpen": "2010-11-04",
"description": "Kinect was a line of motion sensing input devices for Windows and Xbox consoles.",
"link": "https://en.wikipedia.org/wiki/Kinect",
"name": "Microsoft Kinect",
"type": "hardware"
},
{
"dateClose": "2011-01-31",
"dateOpen": "1991-10-02",
"description": "Microsoft Money was a personal finance management software program. It has capabilities for viewing bank account balances, creating budgets, and tracking expenses, among other features.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Money",
"name": "Microsoft Money",
"type": "service"
},
{
"dateClose": "2009-01-01",
"dateOpen": "1993-01-01",
"description": "Microsoft Encarta was a digital multimedia encyclopedia, originally sold on CD-ROM or DVD, then available on the internet via a subscription, and finally turned into free and supported by advertisements.",
"link": "https://en.wikipedia.org/wiki/Encarta",
"name": "Encarta",
"type": "app"
},
{
"dateClose": "2019-12-16",
"dateOpen": "2010-10-21",
"description": "Windows Phone was a family of mobile operating systems for smartphones as the replacement successor to Windows Mobile and Zune.",
"link": "https://en.wikipedia.org/wiki/Windows_Phone",
"links": [
"https://support.microsoft.com/en-us/help/4340298/support-options-for-nokia-lumia-and-feature-phone-devices"
],
"name": "Windows Phone",
"type": "os"
},
{
"dateClose": "2010-02-02",
"dateOpen": "2000-04-19",
"description": "Windows Mobile was a family of mobile operating systems developed by Microsoft for smartphones and Pocket PCs.",
"link": "https://en.wikipedia.org/wiki/Windows_Mobile",
"name": "Windows Mobile",
"type": "os"
},
{
"dateClose": "2011-08-01",
"dateOpen": "2010-05-14",
"description": "Kin was a short-lived mobile phone line from Microsoft designed for users of social networking.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Kin",
"name": "Kin",
"type": "hardware"
},
{
"dateClose": "2017-10-01",
"dateOpen": "2011-11-01",
"description": "Microsoft Lumia (previously the Nokia Lumia Series) was a line of mobile devices that was originally designed and marketed by Nokia and later by Microsoft Mobile.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Lumia",
"name": "Lumia",
"type": "hardware"
},
{
"dateClose": "2019-05-31",
"dateOpen": "2014-10-14",
"description": "Microsoft Band was a line of smart bands with smartwatch and activity tracker/fitness tracker features.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Band",
"name": "Microsoft Band",
"type": "hardware"
},
{
"dateClose": "2013-08-31",
"dateOpen": "1998-01-01",
"description": "Microsoft TechNet was a Microsoft web portal and web service for IT professionals, containing documentation for Microsoft products, discussion forums, an evaluation center for downloading trialware, blogs for Microsoft employees and much more.",
"link": "https://en.wikipedia.org/wiki/Microsoft_TechNet",
"name": "Microsoft TechNet",
"type": "service"
},
{
"dateClose": "2012-05-05",
"dateOpen": "2005-11-01",
"description": "Windows Live was a brand-name for a set of web services and software products from Microsoft as part of its software-as-a-service platform.",
"link": "https://en.wikipedia.org/wiki/Windows_Live",
"name": "Windows Live",
"type": "service"
},
{
"dateClose": "2013-12-31",
"dateOpen": "2007-11-04",
"description": "Windows Home Server was intended to be a solution for homes with multiple connected PCs to offer file sharing, automated backups, print server, and remote access.",
"link": "https://en.wikipedia.org/wiki/Windows_Home_Server",
"name": "Windows Home Server",
"type": "os"
},
{
"dateClose": "2009-10-01",
"dateOpen": "1988-01-01",
"description": "Microsoft Works was an intuitive and cheap alternative to Office. It included a word processor, a spreadsheet and a database management system. Later versions had a calendar application and a dictionary.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Works",
"name": "Microsoft Works",
"type": "app"
},
{
"dateClose": "2009-11-16",
"dateOpen": "2007-01-01",
"description": "Microsoft Office Accounting (formerly Small Business Accounting) was an accounting software application targeting small businesses that had between 1 and 25 employees.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Office_Accounting",
"name": "Microsoft Office Accounting",
"type": "app"
},
{
"dateClose": "1996-06-01",
"dateOpen": "1993-03-30",
"description": "Microsoft Anti-Virus (MSAV) was an antivirus program introduced for MS-DOS operating system, finally acquired and dismissed by Symantec.",
"link": "https://en.wikipedia.org/wiki/MSAV",
"name": "Microsoft Anti-Virus for Windows",
"type": "app"
},
{
"dateClose": "2001-10-01",
"dateOpen": "1994-10-01",
"description": "Microsoft BackOffice Server was a computer software package featuring Windows NT Server and other Microsoft server products that ran on NT Server.",
"link": "https://en.wikipedia.org/wiki/Microsoft_BackOffice_Server",
"name": "Microsoft BackOffice Server",
"type": "service"
},
{
"dateClose": "1996-01-01",
"dateOpen": "1995-03-10",
"description": "Microsoft Bob was a user-friendly interface for the Windows 3.1x, Windows 95 and Windows NT operating systems.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Bob",
"name": "Microsoft Bob",
"type": "service"
},
{
"dateClose": "1997-01-01",
"dateOpen": "1992-01-01",
"description": "Microsoft Cinemania was an application distributed on CD-ROMs that shown information about films such as images, sound clips, dialogues, sound tracks and some full motion video clips.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Cinemania",
"name": "Microsoft Cinemania",
"type": "app"
},
{
"dateClose": "1999-03-01",
"dateOpen": "1996-08-13",
"description": "Microsoft Comic Chat (later Microsoft Chat) was a graphical IRC client.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Comic_Chat",
"name": "Microsoft Comic Chat",
"type": "app"
},
{
"dateClose": "2000-01-01",
"dateOpen": "1998-01-01",
"description": "Microsoft Liquid Motion was an application to create Java animations to compete with Macromedia Flash.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Liquid_Motion",
"name": "Microsoft Liquid Motion",
"type": "app"
},
{
"dateClose": "2013-01-31",
"dateOpen": "2006-03-14",
"description": "Microsoft XNA was a freeware set of tools with a managed runtime environment provided by Microsoft that facilitates video game development and management, based on the .NET Framework, with versions that run on Windows NT, Windows Phone and the Xbox 360.",
"link": "https://en.wikipedia.org/wiki/Microsoft_XNA",
"name": "Microsoft XNA",
"type": "app"
},
{
"dateClose": "2025-10-14",
"dateOpen": "2007-10-27",
"description": "Skype for Business (formerly Microsoft Lync and Office Communicator) was an enterprise instant messaging software developed by Microsoft as part of the Microsoft Office suite.",
"link": "https://en.wikipedia.org/wiki/Skype_for_Business",
"name": "Skype for Business",
"type": "service"
},
{
"dateClose": "2014-12-31",
"dateOpen": "2000-01-01",
"description": "Microsoft MapPoint was a program and a service created by Microsoft that allows users to view, edit and integrate maps.",
"link": "https://en.wikipedia.org/wiki/Microsoft_MapPoint",
"name": "Microsoft MapPoint",
"type": "service"
},
{
"dateClose": "2018-01-31",
"dateOpen": "2016-04-01",
"description": "Microsoft Classroom was an online learning platform for schools that aimed to simplify grading assignments and student communication in a paperless way.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Classroom",
"name": "Microsoft Classroom",
"type": "service"
},
{
"dateClose": "2012-12-20",
"dateOpen": "2007-04-30",
"description": "Microsoft Expression Studio was a suite of tools for designing and building Web and Windows client applications and rich digital media content.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Expression_Studio",
"name": "Microsoft Expression Studio",
"type": "app"
},
{
"dateClose": "2006-12-01",
"dateOpen": "1995-11-01",
"description": "Microsoft Office FrontPage was a WYSIWYG HTML editor and website administration tool for Windows.",
"link": "https://en.wikipedia.org/wiki/Microsoft_FrontPage",
"name": "Microsoft Office FrontPage",
"type": "app"
},
{
"dateClose": "2001-01-01",
"dateOpen": "1997-01-01",
"description": "Microsoft Java Virtual Machine (MSJVM) was a proprietary Java virtual machine.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Java_Virtual_Machine",
"name": "Microsoft Java Virtual Machine",
"type": "service"
},
{
"dateClose": "2016-10-28",
"dateOpen": "2003-01-01",
"description": "Microsoft WebMatrix was a cloud-connected website builder and HTML editor for Windows, geared towards web development.",
"link": "https://en.wikipedia.org/wiki/Microsoft_WebMatrix",
"name": "Microsoft WebMatrix",
"type": "app"
},
{
"dateClose": "2004-06-30",
"dateOpen": "1999-01-01",
"description": "Microsoft PhotoDraw 2000 was a vector graphics and raster imaging software.",
"link": "https://en.wikipedia.org/wiki/Microsoft_PhotoDraw",
"name": "Microsoft PhotoDraw 2000",
"type": "app"
},
{
"dateClose": "2012-08-01",
"dateOpen": "2000-08-01",
"description": "Microsoft Reader was an application for reading e-books, specialized for .lit format.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Reader",
"name": "Microsoft Reader",
"type": "app"
},
{
"dateClose": "2018-02-16",
"dateOpen": "2011-12-07",
"description": "Microsoft Reader was an app to read PDF, XPS and TIFF files by Microsoft. It was killed in favour of Edge's implementation of PDF reading ability.",
"link": "https://www.windowslatest.com/2017/11/21/microsoft-to-discontinue-its-pdf-reader-app-in-february-2018/",
"name": "Microsoft Reader",
"type": "app",
"slug": "microsoft-reader-2"
},
{
"dateClose": "2014-07-07",
"dateOpen": "1988-01-01",
"description": "Microsoft Streets & Trips (Microsoft AutoRoute) was a mapping program targeting the average consumer to do a variety of map related tasks in the North American region, such as route planning.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Streets_%26_Trips",
"name": "Microsoft Streets & Trips",
"type": "app"
},
{
"dateClose": "2009-01-01",
"dateOpen": "2007-01-01",
"description": "Tafiti was an animated search engine launched by Microsoft and TrappsInteractive to showcase the Silverlight animation and video player.",
"link": "https://en.wikipedia.org/wiki/Tafiti",
"name": "Tafiti",
"type": "service"
},
{
"dateClose": "2008-01-01",
"dateOpen": "2001-01-01",
"description": "Windows Messenger was an instant messaging client included in Windows XP and designed for both corporate and home users.",
"link": "https://en.wikipedia.org/wiki/Windows_Messenger",
"name": "Windows Messenger",
"type": "app"
},
{
"dateClose": "2013-02-15",
"dateOpen": "1999-07-22",
"description": "MSN Messenger (later rebranded as Windows Live Messenger) was a cross-platform instant messaging client.",
"link": "https://en.wikipedia.org/wiki/Windows_Live_Messenger",
"name": "MSN Messenger",
"type": "app"
},
{
"dateClose": "2017-01-17",
"dateOpen": "2000-09-14",
"description": "Windows Movie Maker (later rebranded as Windows Live Movie Maker) was a video editing software program for home users.",
"link": "https://en.wikipedia.org/wiki/Windows_Movie_Maker",
"name": "Windows Movie Maker",
"type": "app"
},
{
"dateClose": "2020-07-22",
"dateOpen": "2016-01-05",
"description": "Mixer was a video game live streaming platform, originally named Beam before the acquisition by Microsoft.",
"link": "https://en.wikipedia.org/wiki/Mixer_(service)",
"name": "Mixer",
"type": "service"
},
{
"dateClose": "2020-01-10",
"dateOpen": "2016-10-26",
"description": "Remix 3D was a website for users to browse, distribute, and download 3D objects.",
"link": "https://en.wikipedia.org/wiki/Remix_3D",
"name": "Remix 3D",
"type": "service"
},
{
"dateClose": "2021-10-12",
"dateOpen": "2005-09-05",
"description": "Microsoft Silverlight (or simply Silverlight) was an application framework for writing and running rich Internet applications, similar to Adobe Flash.",
"link": "https://en.wikipedia.org/wiki/Silverlight",
"name": "Silverlight",
"type": "service"
},
{
"dateClose": "2012-06-01",
"dateOpen": "2006-11-14",
"description": "Zune was a line of digital media products and services.",
"link": "https://en.wikipedia.org/wiki/Zune",
"name": "Zune",
"type": "service"
},
{
"dateClose": "2013-11-22",
"dateOpen": "2006-11-14",
"description": "Zune Marketplace was an online store that offered music, podcasts, TV shows, movies, music videos, and mobile applications.",
"link": "https://en.wikipedia.org/wiki/Zune_software#Zune_Marketplace",
"links": [
"https://www.geeky-gadgets.com/microsoft-zune-marketplace-finally-closing-its-doors-14-11-2013/"
],
"name": "Zune Marketplace",
"type": "service"
},
{
"dateClose": "2022-01-01",
"dateOpen": "2015-07-06",
"description": "Groove Music was an audio player software application that was included with Windows 8 to Windows 11, inheriting the main features from Xbox Music and Zune Marketplace.",
"link": "https://en.wikipedia.org/wiki/Groove_Music",
"name": "Groove Music",
"type": "app"
},
{
"dateClose": "2012-10-16",
"dateOpen": "2006-01-01",
"description": "Zune (software) was a media management software that functions as a full media player application with a library, an interface to the Zune Marketplace, and as a media streaming server.",
"link": "https://en.wikipedia.org/wiki/Zune_software",
"name": "Zune (software)",
"type": "app"
},
{
"dateClose": "2017-12-31",
"dateOpen": "2006-11-14",
"description": "Groove Music Pass (formerly Xbox Music Pass and, before, Zune Music Pass) was a music subscription service, which allows subscribers to download an unlimited number of songs for as long as their subscription is active.",
"link": "https://en.wikipedia.org/wiki/Groove_Music",
"links": [
"https://www.thurrott.com/music-videos/groove-music/6033/microsoft-is-finally-retiring-zune-zune-music-pass"
],
"name": "Groove Music Pass",
"type": "service"
},
{
"dateClose": "2011-10-03",
"dateOpen": "2006-11-14",
"description": "Zune was a line of portable media players.",
"link": "https://en.wikipedia.org/wiki/Zune#Zune_devices",
"name": "Zune Media Player",
"type": "hardware"
},
{
"dateClose": "2008-08-31",
"dateOpen": "2002-02-18",
"description": "MSN Music was a store of music, music news, music videos, spotlights on new music, artist information, and live performances of artists.",
"link": "https://en.wikipedia.org/wiki/MSN_Music",
"name": "MSN Music",
"type": "service"
},
{
"dateClose": "2020-05-06",
"dateOpen": "2010-11-09",
"description": "Wunderlist was a cloud-based task management application, acquired by Microsoft in June 1, 2015.",
"link": "https://en.wikipedia.org/wiki/Wunderlist",
"name": "Wunderlist",
"type": "app"
},
{
"dateClose": "2008-04-01",
"dateOpen": "1991-01-01",
"description": "Classic Visual Basic (formerly only Visual Basic) was a third-generation event-driven programming language known for its Component Object Model (COM) programming model.",
"link": "https://en.wikipedia.org/wiki/Visual_Basic_(classic)",
"name": "Classic Visual Basic",
"type": "service"
},
{
"dateClose": "2018-04-30",
"dateOpen": "1997-02-27",
"description": "Microsoft Excel Viewer was a freeware program for viewing and printing spreadsheet documents created by Excel.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Excel#Microsoft_Excel_Viewer",
"links": [
"https://docs.microsoft.com/en-us/archive/blogs/office_sustained_engineering/end-of-support-for-the-excel-and-powerpoint-Viewers-and-the-office-compatibility-pack",
"http://ftpmirror.your.org/pub/misc/ftp.microsoft.com/Softlib/index.txt"
],
"name": "Office Excel Viewer",
"type": "app"
},
{
"dateClose": "2017-11-30",
"dateOpen": "1995-03-20",
"description": "Microsoft Word Viewer was a freeware program for Microsoft Windows to display and print Microsoft Word documents.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Word_Viewer",
"links": [
"https://docs.microsoft.com/en-us/archive/blogs/office_sustained_engineering/word-viewer-to-be-retired-in-november-2017",
"http://ftpmirror.your.org/pub/misc/ftp.microsoft.com/Softlib/index.txt"
],
"name": "Office Word Viewer",
"type": "app"
},
{
"dateClose": "2018-04-30",
"dateOpen": "1992-08-30",
"description": "PowerPoint Viewer was a free application to be used on computers without PowerPoint installed, to view, project, or print (but not create or edit) presentations.",
"link": "https://en.wikipedia.org/wiki/Microsoft_PowerPoint#PowerPoint_Viewer",
"links": [
"https://docs.microsoft.com/en-us/archive/blogs/office_sustained_engineering/end-of-support-for-the-excel-and-powerpoint-Viewers-and-the-office-compatibility-pack",
"https://en.wikipedia.org/wiki/Microsoft_Office_3.0"
],
"name": "Office PowerPoint Viewer",
"type": "app"
},
{
"dateClose": "2000-04-01",
"dateOpen": "1999-05-26",
"description": "Microsoft Vizact was a program that allowed creation of interactive documents using HTML+TIME (Timed Interactive Multimedia Extensions).",
"link": "https://en.wikipedia.org/wiki/Microsoft_Vizact",
"links": [
"https://news.microsoft.com/1999/05/26/microsoft-announces-vizact-2000-the-newest-application-from-office-free-preview-now-available-for-download-from-the-web/"
],
"name": "Microsoft Vizact",
"type": "app"
},
{
"dateClose": "2002-12-31",
"dateOpen": "2001-11-01",
"description": "Microsoft Data Analyzer was a program to analyze and visualize data and data trends, and was integrated with SQL Server Analysis Services.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Office_shared_tools#Data_Analyzer",
"links": [
"https://news.microsoft.com/2001/11/01/microsoft-announces-availability-of-data-analyzer/"
],
"name": "Microsoft Data Analyzer",
"type": "app"
},
{
"dateClose": "2015-12-01",
"dateOpen": "2007-01-01",
"description": "Microsoft Forefront was a family of line-of-business security software designed to help protect computer networks, network servers and individual devices, which underlying technology was acquired from Sybari in 2005.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Forefront",
"links": [
"https://www.microsoft.com/en-us/download/details.aspx?id=23256"
],
"name": "Microsoft Forefront",
"type": "app"
},
{
"dateClose": "2017-02-06",
"dateOpen": "2008-08-20",
"description": "Microsoft PhotoSynth was a program that generates a three-dimensional model and a point cloud from 2D photos.",
"link": "https://en.wikipedia.org/wiki/Photosynth",
"name": "Microsoft PhotoSynth",
"type": "app"
},
{
"dateClose": "2017-01-10",
"dateOpen": "2008-08-25",
"description": "Windows Essentials (formerly Windows Live Essentials and Windows Live Installer) is a discontinued suite of freeware applications that includes email, instant messaging, photo sharing, blogging, and parental control software and it was part of Live brand.",
"link": "https://en.wikipedia.org/wiki/Windows_Essentials",
"name": "Microsoft Essentials",
"type": "service"
},
{
"dateClose": "2016-08-09",
"dateOpen": "2002-01-01",
"description": "Windows Journal was an application to create and organize handwritten notes and drawing, included in Windows XP Tablet PC Edition as well as select editions of Windows Vista and later.",
"link": "https://en.wikipedia.org/wiki/Windows_Journal",
"links": [
"https://www.anandtech.com/show/1046/3"
],
"name": "Windows Journal",
"type": "app"
},
{
"dateClose": "2020-05-27",
"dateOpen": "2014-11-12",
"description": "EdgeHTML was a proprietary browser engine used in Microsoft Edge and in Universal Windows Platform (UWP) apps.",
"link": "https://en.wikipedia.org/wiki/EdgeHTML",
"name": "EdgeHTML",
"type": "service"
},
{
"dateClose": "2021-06-30",
"dateOpen": "2019-10-17",
"description": "Minecraft Earth was a Augmented Reality mobile game that allowed its players to collect blocks and build creations.",
"link": "https://www.minecraft.net/en-us/article/minecraft-earth-coming-end",
"name": "Minecraft Earth",
"type": "app"
},
{
"dateClose": "2020-11-10",
"dateOpen": "2016-08-02",
"description": "Windows 10 IoT Core was an embedded OS for smaller and lower-cost industry devices, it was also provided free of charge for use in devices like the Raspberry Pi for hobbyist use.",
"link": "https://en.wikipedia.org/wiki/Windows_IoT#Core",
"links": [
"https://docs.microsoft.com/en-us/lifecycle/products/windows-10-iot-core"
],
"name": "Windows 10 IoT Core",
"type": "os"
},
{
"dateClose": "2013-04-08",
"dateOpen": "2003-08-19",
"description": "Microsoft Office Picture Manager (formely Microsoft Picture Library) was a raster graphics editor included up to Office 2010 to organize and edit images.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Office_Picture_Manager",
"name": "Microsoft Office Picture Manager",
"type": "app"
},
{
"dateClose": "2006-01-27",
"dateOpen": "1994-01-01",
"description": "Microsoft Visual SourceSafe (VSS) was a source control program oriented towards small software development projects, originally created by One Tree Software prior to Microsoft acquisition in 1994.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Visual_SourceSafe",
"name": "Microsoft Visual SourceSafe",
"type": "app"
},
{
"dateClose": "2008-06-01",
"dateOpen": "2006-04-01",
"description": "Live Search Academic was a web search engine for scholarly literature that existed, part of Microsoft's Live Search services.",
"link": "https://en.wikipedia.org/wiki/Live_Search_Academic",
"name": "Live Search Academic",
"type": "service"
},
{
"dateClose": "2014-07-01",
"dateOpen": "2009-01-01",
"description": "Microsoft Academic Search was a research project and an academic search engine.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Academic_Search",
"name": "Microsoft Academic Search",
"type": "service"
},
{
"dateClose": "2021-12-31",
"dateOpen": "2016-02-22",
"description": "Microsoft Academic was a free public web search engine for academic publications and literature.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Academic",
"name": "Microsoft Academic",
"type": "service"
},
{
"dateClose": "2017-10-01",
"dateOpen": "2006-05-01",
"description": "CodePlex was a hosting platform for open-source software, offering features such as support to different VCS systems, wiki pages, statistics, and releases.",
"link": "https://en.wikipedia.org/wiki/CodePlex",
"name": "CodePlex",
"type": "service"
},
{
"dateClose": "2014-01-01",
"dateOpen": "2008-04-17",
"description": "PixelSense (formerly called Microsoft Surface) was an interactive surface computing platform that allows one or more people to interact with a tabletop screen.",
"link": "https://en.wikipedia.org/wiki/Microsoft_PixelSense",
"name": "PixelSense",
"type": "hardware"
},
{
"dateClose": "2003-05-13",
"dateOpen": "2003-04-30",
"description": "iLoo was a smart portable toilet integrating the complete equipment to surf the Internet from inside and outside the cabinet.",
"link": "https://en.wikipedia.org/wiki/ILoo",
"name": "ILoo",
"type": "hardware"
},
{
"dateClose": "2007-01-01",
"dateOpen": "1996-01-01",
"description": "Office Assistant was an intelligent user interface for Microsoft Office that assisted users by way of an interactive animated character which interfaced with the Office help content. The most famous avatar was Clippit (a.k.a. Clippy), a humanized paperclip.",
"link": "https://en.wikipedia.org/wiki/Office_Assistant",
"name": "Office Assistant",
"type": "service"
},
{
"dateClose": "2007-03-22",
"dateOpen": "1996-05-29",
"description": "Microsoft NetMeeting was VoIP and multi-point videoconferencing client and incorporated technology acquired from Data Connection Ltd and DataBeam Corporation.",
"link": "https://en.wikipedia.org/wiki/Microsoft_NetMeeting",
"name": "Microsoft NetMeeting",
"type": "app"
},
{
"dateClose": "2010-05-14",
"dateOpen": "2007-10-01",
"description": "Response Point was an advanced VoIP-based telephone system targeting small businesses.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Response_Point",
"name": "Response Point",
"type": "service"
},
{
"dateClose": "2010-02-01",
"dateOpen": "2006-02-25",
"description": "Project Origami was the code name for ultra-mobile PCs (also known as ultra-mobile personal computers or UMPCs), a class of laptops whose specifications were defined in collaboration with Intel.",
"link": "https://en.wikipedia.org/wiki/Ultra-mobile_PC",
"links": [
"https://www.engadget.com/2006-02-24-microsofts-origami-project.html"
],
"name": "Project Origami",
"type": "hardware"
},
{
"dateClose": "2007-01-30",
"dateOpen": "1996-01-01",
"description": "DirectSound3D was an extension to DirectSound to standardize real-time 3D audio, allowing games to use a single API instead of coding for each sound card manufacturer.",
"link": "https://en.wikipedia.org/wiki/DirectSound",
"links": [
"https://techreport.com/review/13874/remixed-audio-cards-in-windows-vista/"
],
"name": "DirectSound3D",
"type": "service"
},
{
"dateClose": "1997-01-01",
"dateOpen": "1993-12-07",
"description": "Creative Writer was a word processor designed for children.",
"link": "https://en.wikipedia.org/wiki/Creative_Writer",
"links": [
"https://en.wikipedia.org/wiki/Creative_Writer_2"
],
"name": "Creative Writer",
"type": "app"
},
{
"dateClose": "2008-04-21",
"dateOpen": "1996-07-13",
"description": "Outlook Express, formerly known as Microsoft Internet Mail and News, was an email and news client included with Internet Explorer versions 3.0 through to 6.0.",
"link": "https://en.wikipedia.org/wiki/Outlook_Express",
"name": "Outlook Express",
"type": "app"
},
{
"dateClose": "2019-01-01",
"dateOpen": "2015-10-02",
"description": "Home Team was a social app for Windows Phone that helps people find the best local service providers by sharing recommendations with friends and coworkers.",
"link": "https://mspoweruser.com/microsoft-home-team-app-makes-it-easy-to-find-trusted-local-service-providers/",
"name": "Home Team",
"type": "app"
},
{
"dateClose": "2010-01-12",
"dateOpen": "1995-06-01",
"description": "Visual FoxPro was data-centric procedural programming language with object-oriented programming (OOP) features.",
"link": "https://en.wikipedia.org/wiki/Visual_FoxPro",
"links": [
"http://www.foxprohistory.org/foxprotimeline.htm",
"https://docs.microsoft.com/en-us/lifecycle/products/microsoft-visual-foxpro-90"
],
"name": "Visual FoxPro",
"type": "app"
},
{
"dateClose": "2019-11-20",
"dateOpen": "2007-10-04",
"description": "HealthVault was a web-based personal health record to store and maintain health and fitness information.",
"link": "https://en.wikipedia.org/wiki/Microsoft_HealthVault",
"name": "HealthVault",
"type": "service"
},
{
"dateClose": "2019-11-20",
"dateOpen": "2007-10-04",
"description": "HealthVault Connection Center was a client-side tool to allow users to upload data from personal health devices to the HealthVault service.",
"link": "https://en.wikipedia.org/wiki/Microsoft_HealthVault",
"name": "HealthVault Connection Center",
"type": "app"
},
{
"dateClose": "2010-04-22",
"dateOpen": "2006-12-01",
"description": "Windows MultiPoint Mouse was a technology that enables the use of multiple pointing devices on the same computer.",
"link": "https://en.wikipedia.org/wiki/Windows_Multipoint_Mouse",
"links": [
"https://web.archive.org/web/20071117163139/http://blogs.msdn.com/multipoint/default.aspx"
],
"name": "Windows MultiPoint Mouse",
"type": "service"
},
{
"dateClose": "2018-10-09",
"dateOpen": "2010-05-13",
"description": "Windows MultiPoint Server was an operating system based on Microsoft Windows Server using Remote Desktop Services technology to host multiple simultaneous independent computing stations or terminals connected to a single computer (multiseat computing).",
"link": "https://en.wikipedia.org/wiki/Windows_MultiPoint_Server",
"links": [
"https://endoflife.software/operating-systems/windows/windows-multipoint-server"
],
"name": "Windows MultiPoint Server",
"type": "os"
},
{
"dateClose": "1997-01-01",
"dateOpen": "1996-01-01",
"description": "Microsoft GIF Animator was a computer software program to create simple animated GIFs.",
"link": "https://en.wikipedia.org/wiki/Microsoft_GIF_Animator",
"name": "Microsoft GIF Animator",
"type": "app"
},
{
"dateClose": "2021-01-30",
"dateOpen": "2008-12-03",
"description": "Image Composite Editor was an advanced panoramic image stitcher made by the Microsoft Research division.",
"link": "https://en.wikipedia.org/wiki/Image_Composite_Editor",
"name": "Microsoft Image Composite Editor",
"type": "app"
},
{
"dateClose": "2011-01-04",
"dateOpen": "2004-12-01",
"description": "Windows Live Spaces (previously MSN Spaces) was a highly customizable blogging and social networking platform that integrated closely with MSN Messenger.",
"link": "https://en.wikipedia.org/wiki/Windows_Live_Spaces",
"name": "Windows Live Spaces",
"type": "service"
},
{
"dateClose": "2009-08-24",
"dateOpen": "2007-05-18",
"description": "Microsoft Popfly was a website that allowed users to create web pages, program snippets, and mashups using the Microsoft Silverlight rich web applications runtime.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Popfly",
"name": "Microsoft Popfly",
"type": "service"
},
{
"dateClose": "2016-05-03",
"dateOpen": "2003-11-19",
"description": "Microsoft InfoPath was an application for designing, distributing, filling and submitting electronic forms containing structured data.",
"link": "https://en.wikipedia.org/wiki/Microsoft_InfoPath",
"name": "Microsoft InfoPath",
"type": "app"
},
{
"dateClose": "2008-08-01",
"dateOpen": "2004-03-15",
"description": "Onfolio was an online research tool to collect data from the web and make annotations such as inking and text highlighting.",
"link": "https://en.wikipedia.org/wiki/Windows_Live_Toolbar#Onfolio",
"links": [
"https://www.searchenginejournal.com/onfolio-web-tool-launches-turns-search-into-research/"
],
"name": "Onfolio",
"type": "service"
},
{
"dateClose": "2019-09-01",
"dateOpen": "2013-11-01",
"description": "Office Remote was an app to control Office products such as PowerPoint, Word and Excel from an Android or a Windows Phone.",
"link": "https://en.wikipedia.org/wiki/Microsoft_mobile_services#Office_Remote",
"links": [
"https://web.archive.org/web/20150421030104/https://play.google.com/store/apps/details?id=com.microsoft.office.officeremote",
"https://web.archive.org/web/20210516221455/https://support.microsoft.com/en-us/topic/office-remote-for-pc-7e3d9342-61c7-4bc2-8bc0-fa47542d1bce",
"https://www.microsoft.com/en-us/p/office-remote/9wzdncrfhx5h"
],
"name": "Office Remote",
"type": "app"
},
{
"dateClose": "2014-10-01",
"dateOpen": "1995-10-09",
"description": "SideWinder was the name given to a family of digital game controllers for PCs consisting of joysticks, driving wheels, game controllers, and voice chat devices.",
"link": "https://en.wikipedia.org/wiki/Microsoft_SideWinder",
"name": "Sidewinder",
"type": "hardware"
},
{
"dateClose": "2007-01-01",
"dateOpen": "2004-09-04",
"description": "Fingerprint Reader was an USB Fingerprint reader to unlock PC and apps.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Fingerprint_Reader",
"name": "Microsoft Fingerprint Reader",
"type": "hardware"
},
{
"dateClose": "2004-05-01",
"dateOpen": "2002-09-01",
"description": "Microsoft Broadband Networking was a series of computer networking hardware products ranging from Wi-Fi routers to network cards.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Broadband_Networking",
"name": "Microsoft Broadband Networking",
"type": "hardware"
},
{
"dateClose": "2009-06-30",
"dateOpen": "2006-05-31",
"description": "Windows Live OneCare (previously Windows OneCare Live) was a computer security and performance enhancement service developed for Windows based on multi-platform RAV (Reliable Anti-virus) technology.",
"link": "https://en.wikipedia.org/wiki/Windows_Live_OneCare",
"name": "Windows Live OneCare",
"type": "app"
},
{
"dateClose": "2012-01-01",
"dateOpen": "2004-01-01",
"description": "Smart Personal Objects Technology (SPOT) was a initiative to create intelligent and personal home appliances, consumer electronics, and other objects through new hardware capabilities and software features.",
"link": "https://en.wikipedia.org/wiki/Smart_Personal_Objects_Technology",
"name": "Smart Personal Objects Technology (SPOT)",
"type": "service"
},
{
"dateClose": "2013-09-30",
"dateOpen": "1996-09-18",
"description": "MSN TV (formerly WebTV by WebTV Networks, Inc.) was a web access product consisting of a thin client device which used a television for display and the online service that supported it.",
"link": "https://en.wikipedia.org/wiki/MSN_TV",
"name": "MSN TV",
"type": "service"
},
{
"dateClose": "2000-01-01",
"dateOpen": "1998-01-01",
"description": "The Digital Sound System 80 (DSS80) was a three-piece PC audio system co-developed with Philips.",
"link": "https://en.wikipedia.org/wiki/Digital_Sound_System_80",
"links": [
"http://www.verycomputer.com/1_2728ec20658b7257_1.htm"
],
"name": "Digital Sound System 80",
"type": "hardware"
},
{
"dateClose": "1999-01-01",
"dateOpen": "1998-01-01",
"description": "The Microsoft Cordless Phone System (also known as PC Phone System MP-900) was a cordless telephone featuring personal computer integration and it was the first Microsoft's first telephone of any kind.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Cordless_Phone_System",
"links": [
"https://www.arnnet.com.au/slideshow/439534/pictures-good-bad-ugly-history-microsoft-hardware/"
],
"name": "Microsoft Cordless Phone System",
"type": "hardware"
},
{
"dateClose": "2019-06-22",
"dateOpen": "2011-07-20",
"description": "TouchDevelop was an educational, touch-friendly and cross-platform app for teaching coding to kids.",
"link": "https://www.microsoft.com/en-us/research/project/touchdevelop/",
"links": [
"https://github.com/microsoft/TouchDevelop"
],
"name": "TouchDevelop",
"type": "app"
},
{
"dateClose": "2016-09-13",
"dateOpen": "2013-02-19",
"description": "Sunrise Calendar was a calendar application for web, mobile and desktop, featuring live aggregation of calendars from multiple sources.",
"link": "https://en.wikipedia.org/wiki/Sunrise_Calendar",
"name": "Sunrise Calendar",
"type": "app"
},
{
"dateClose": "2007-06-15",
"dateOpen": "1996-09-01",
"description": "Microsoft Digital Image (formerly Picture It!) was a photo editing application designed for casual users and initially inspired to the wizard user interface concepts of Microsoft Publisher.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Digital_Image",
"links": [
"https://en.wikipedia.org/wiki/Microsoft_Picture_It!"
],
"name": "Microsoft Digital Image",
"type": "app"
},
{
"dateClose": "2013-02-13",
"dateOpen": "2010-09-30",
"description": "Windows Live Mesh (formerly known as Windows Live FolderShare, Live Mesh, and Windows Live Sync) was a file synchronization application supporting both direct PC-to-PC and cloud-based synchronizazion and featuring Remote Desktop capability through the browser.",
"link": "https://en.wikipedia.org/wiki/Windows_Live_Mesh",
"name": "Windows Live Mesh",
"type": "app"
},
{
"dateClose": "2006-10-16",
"dateOpen": "1999-01-01",
"description": "MSN Chat was the Microsoft Network version of IRCX (Internet Relay Chat extensions), which replaced Microsoft Chat.",
"link": "https://en.wikipedia.org/wiki/MSN_Chat",
"links": [
"https://web.archive.org/web/20061009052049/http://groups.msn.com/Editorial/en-gb/Content/chat.htm",
"https://www.wintersnet.net/history.php"
],
"name": "MSN Chat",
"type": "service"
},
{
"dateClose": "2000-01-01",
"dateOpen": "1993-01-01",
"description": "DriveSpace (initially known as DoubleSpace) was an OS service to increase the amount of data the user could store on disks by transparently compressing and decompressing data on-the-fly.",
"link": "https://en.wikipedia.org/wiki/DriveSpace",
"name": "DriveSpace",
"type": "service"
},
{
"dateClose": "2000-01-01",
"dateOpen": "1991-01-01",
"description": "QBasic was an integrated development environment and interpreter for a variety of dialects of BASIC which are based on QuickBASIC.",
"link": "https://en.wikipedia.org/wiki/QBasic",
"name": "QBasic",
"type": "app"
},
{
"dateClose": "2014-07-01",
"dateOpen": "2007-05-29",
"description": "Games for Windows – Live (GFWL) was an online gaming service used by Games for Windows–branded PC titles that enables Windows PCs to connect to Microsoft's Live service.",
"link": "https://en.wikipedia.org/wiki/Games_for_Windows_%E2%80%93_Live",
"name": "Games for Windows – Live",
"type": "service"
},
{
"dateClose": "1996-01-01",
"dateOpen": "1995-01-01",
"description": "3D Movie Maker (3DMM) was a children's computer program to make films by placing 3D characters and props into pre-rendered environments, as well as adding actions, sound effects, music, text, speech and special effects.",
"link": "https://en.wikipedia.org/wiki/3D_Movie_Maker",
"name": "3D Movie Maker",
"type": "app"
},
{
"dateClose": "2015-04-14",
"dateOpen": "1997-01-01",
"description": "Microsoft Forefront Threat Management Gateway (Forefront TMG), formerly known as Microsoft Internet Security and Acceleration Server (ISA Server), and Microsoft Proxy Server, was a network router, firewall, antivirus program, VPN server and web cache for Windows Server.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Forefront_Threat_Management_Gateway",
"name": "Microsoft Forefront Threat Management Gateway",
"type": "app"
},
{
"dateClose": "2016-08-02",
"dateOpen": "2006-11-30",
"description": "Microsoft SharePoint Designer (SPD), formerly known as Microsoft Office SharePoint Designer, was an HTML editor freeware for creating or modifying Microsoft SharePoint sites, workflows and web pages.",
"link": "https://en.wikipedia.org/wiki/Microsoft_SharePoint_Designer",
"name": "Microsoft SharePoint Designer",
"type": "app"
},
{
"dateClose": "2007-05-18",
"dateOpen": "2002-07-01",
"description": "Visual J# was a programming language and development tooling which was meant to help Java developers move to the .NET ecosystem.",
"link": "https://en.wikipedia.org/wiki/Visual_J_Sharp",
"links": [
"https://news.microsoft.com/2002/07/01/microsoft-rounds-out-developer-languages-with-launch-of-visual-j-net/"
],
"name": "Visual J#",
"type": "app"
},
{
"dateClose": "2004-01-02",
"dateOpen": "1996-12-01",
"description": "Visual J++ (pronounced \"Jay Plus Plus\") was a Microsoft's implementation of Java which ran only on MSJVM, the proprietary JVM.",
"link": "https://en.wikipedia.org/wiki/Visual_J%2B%2B",
"name": "Visual J++",
"type": "app"
},
{
"dateClose": "2016-03-24",
"dateOpen": "2016-03-23",
"description": "Tay was a chatbot that was shutdown after only 16 hours since it began to post inflammatory and offensive tweets through its Twitter account.",
"link": "https://en.wikipedia.org/wiki/Tay_(bot)",
"name": "Tay",
"type": "service"
},
{
"dateClose": "2019-03-01",
"dateOpen": "2016-12-06",
"description": "Zo was an English chatbot for the principal social networks and messaging apps, born from the experience gained from previous chatbots such as Tay and Xiaoice.",
"link": "https://en.wikipedia.org/wiki/Zo_(bot)",
"links": [
"https://blogs.microsoft.com/blog/2016/12/13/microsoft-ai-introducing-social-chatbot-zo-cortana-takes-new-roles/"
],
"name": "Zo",
"type": "service"
},
{
"dateClose": "2000-01-01",
"dateOpen": "1997-09-01",
"description": "ActiMates was a family of interactive stuffed toys which can interact with many episodes of their respective TV shows or on special ActiMates-compatible VHSes and special PC games.",
"link": "https://en.wikipedia.org/wiki/ActiMates",
"name": "ActiMates",
"type": "hardware"
},
{
"dateClose": "2010-07-22",
"dateOpen": "1997-01-01",
"description": "Microsoft Amalga Hospital Information System (HIS), formerly Hospital 2000, was a fully integrated hospital information system designed for developing and emerging markets.",
"link": "https://en.wikipedia.org/wiki/Microsoft_Amalga#Amalga_HIS",
"links": [
"https://www.chilmarkresearch.com/microsoft-pulls-plug-on-amalga-his",
"https://news.microsoft.com/2008/02/13/microsoft-announces-the-amalga-family-of-health-enterprise-systems"
],
"name": "Microsoft Amalga",
"type": "service"
},
{
"dateClose": "2003-02-01",
"dateOpen": "2002-11-11",
"description": "Kakuto Chojin: Back Alley Brutal was a fighting game for the Xbox gaming console, retired after few months because its controversial content.",
"link": "https://en.wikipedia.org/wiki/Kakuto_Chojin:_Back_Alley_Brutal",