-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathEnumProgramsDlg.cpp
2205 lines (2066 loc) · 103 KB
/
EnumProgramsDlg.cpp
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
/* Copyright (C) 2012-2025 Stefan-Mihai MOGA
This file is part of IntelliTask application developed by Stefan-Mihai MOGA.
IntelliTask is an alternative Windows version to the famous Task Manager!
IntelliTask is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Open
Source Initiative, either version 3 of the License, or any later version.
IntelliTask is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
IntelliTask. If not, see <http://www.opensource.org/licenses/gpl-3.0.html>*/
// EnumProgramsDlg.cpp : implementation file
//
#include "stdafx.h"
#include "IntelliTask.h"
#include "afxdialogex.h"
#include "EnumProgramsDlg.h"
#include <afxcoll.h>
#define IS_KEY _T("Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall")
#define IS_KEY_LEN 256
#define IS_DISPLAY _T("DisplayName")
#include "Dtwinver.h"
#if defined(COSVERSION_WIN16_OR_DOS)
#define _tcscat strcat
#define _stprintf sprintf
#endif //#if defined(COSVERSION_WIN16_OR_DOS)
#ifndef _In_
#define _In_
#endif //#ifndef _In_
#ifndef _In_opt_
#define _In_opt_
#endif //#ifndef _In_opt_
#ifndef DEVICEFAMILYINFOENUM_WINDOWS_8X
#define DEVICEFAMILYINFOENUM_WINDOWS_8X 0x00000001
#endif //#ifndef DEVICEFAMILYINFOENUM_WINDOWS_8X
#ifndef DEVICEFAMILYINFOENUM_WINDOWS_PHONE_8X
#define DEVICEFAMILYINFOENUM_WINDOWS_PHONE_8X 0x00000002
#endif //#ifndef DEVICEFAMILYINFOENUM_WINDOWS_PHONE_8X
#ifndef DEVICEFAMILYINFOENUM_DESKTOP
#define DEVICEFAMILYINFOENUM_DESKTOP 0x00000003
#endif //#ifndef DEVICEFAMILYINFOENUM_DESKTOP
#ifndef DEVICEFAMILYINFOENUM_MOBILE
#define DEVICEFAMILYINFOENUM_MOBILE 0x00000004
#endif //#ifndef DEVICEFAMILYINFOENUM_MOBILE
#ifndef DEVICEFAMILYINFOENUM_XBOX
#define DEVICEFAMILYINFOENUM_XBOX 0x00000005
#endif //#ifndef DEVICEFAMILYINFOENUM_XBOX
#ifndef DEVICEFAMILYINFOENUM_TEAM
#define DEVICEFAMILYINFOENUM_TEAM 0x00000006
#endif //#ifndef DEVICEFAMILYINFOENUM_TEAM
#ifndef DEVICEFAMILYINFOENUM_IOT
#define DEVICEFAMILYINFOENUM_IOT 0x00000007
#endif //#ifndef DEVICEFAMILYINFOENUM_IOT
#ifndef DEVICEFAMILYINFOENUM_IOT_HEADLESS
#define DEVICEFAMILYINFOENUM_IOT_HEADLESS 0x00000008
#endif //#ifndef DEVICEFAMILYINFOENUM_IOT_HEADLESS
#ifndef DEVICEFAMILYINFOENUM_SERVER
#define DEVICEFAMILYINFOENUM_SERVER 0x00000009
#endif //#ifndef DEVICEFAMILYINFOENUM_SERVER
#ifndef DEVICEFAMILYINFOENUM_HOLOGRAPHIC
#define DEVICEFAMILYINFOENUM_HOLOGRAPHIC 0x0000000A
#endif //#ifndef DEVICEFAMILYINFOENUM_HOLOGRAPHIC
#ifndef DEVICEFAMILYINFOENUM_XBOXSRA
#define DEVICEFAMILYINFOENUM_XBOXSRA 0x0000000B
#endif //#ifndef DEVICEFAMILYINFOENUM_XBOXSRA
#ifndef DEVICEFAMILYINFOENUM_XBOXERA
#define DEVICEFAMILYINFOENUM_XBOXERA 0x0000000C
#endif //#ifndef DEVICEFAMILYINFOENUM_XBOXERA
#ifndef DEVICEFAMILYINFOENUM_SERVER_NANO
#define DEVICEFAMILYINFOENUM_SERVER_NANO 0x0000000D
#endif //#ifndef DEVICEFAMILYINFOENUM_SERVER_NANO
#ifndef DEVICEFAMILYINFOENUM_8828080
#define DEVICEFAMILYINFOENUM_8828080 0x0000000E
#endif //#ifndef DEVICEFAMILYINFOENUM_8828080
#ifndef DEVICEFAMILYINFOENUM_7067329
#define DEVICEFAMILYINFOENUM_7067329 0x0000000F
#endif //#ifndef DEVICEFAMILYINFOENUM_7067329
#ifndef DEVICEFAMILYINFOENUM_WINDOWS_CORE
#define DEVICEFAMILYINFOENUM_WINDOWS_CORE 0x00000010
#endif //#ifndef DEVICEFAMILYINFOENUM_WINDOWS_CORE
#ifndef DEVICEFAMILYINFOENUM_WINDOWS_CORE_HEADLESS
#define DEVICEFAMILYINFOENUM_WINDOWS_CORE_HEADLESS 0x00000011
#endif //#ifndef DEVICEFAMILYINFOENUM_WINDOWS_CORE_HEADLESS
#ifndef DEVICEFAMILYDEVICEFORM_PHONE
#define DEVICEFAMILYDEVICEFORM_PHONE 0x00000001
#endif //#ifndef DEVICEFAMILYDEVICEFORM_PHONE
#ifndef DEVICEFAMILYDEVICEFORM_TABLET
#define DEVICEFAMILYDEVICEFORM_TABLET 0x00000002
#endif //#ifndef DEVICEFAMILYDEVICEFORM_TABLET
#ifndef DEVICEFAMILYDEVICEFORM_DESKTOP
#define DEVICEFAMILYDEVICEFORM_DESKTOP 0x00000003
#endif //#ifndef DEVICEFAMILYDEVICEFORM_DESKTOP
#ifndef DEVICEFAMILYDEVICEFORM_NOTEBOOK
#define DEVICEFAMILYDEVICEFORM_NOTEBOOK 0x00000004
#endif //#ifndef DEVICEFAMILYDEVICEFORM_NOTEBOOK
#ifndef DEVICEFAMILYDEVICEFORM_CONVERTIBLE
#define DEVICEFAMILYDEVICEFORM_CONVERTIBLE 0x00000005
#endif //#ifndef DEVICEFAMILYDEVICEFORM_CONVERTIBLE
#ifndef DEVICEFAMILYDEVICEFORM_DETACHABLE
#define DEVICEFAMILYDEVICEFORM_DETACHABLE 0x00000006
#endif //#ifndef DEVICEFAMILYDEVICEFORM_DETACHABLE
#ifndef DEVICEFAMILYDEVICEFORM_ALLINONE
#define DEVICEFAMILYDEVICEFORM_ALLINONE 0x00000007
#endif //#ifndef DEVICEFAMILYDEVICEFORM_ALLINONE
#ifndef DEVICEFAMILYDEVICEFORM_STICKPC
#define DEVICEFAMILYDEVICEFORM_STICKPC 0x00000008
#endif //#ifndef DEVICEFAMILYDEVICEFORM_STICKPC
#ifndef DEVICEFAMILYDEVICEFORM_PUCK
#define DEVICEFAMILYDEVICEFORM_PUCK 0x00000009
#endif //#ifndef DEVICEFAMILYDEVICEFORM_PUCK
#ifndef DEVICEFAMILYDEVICEFORM_LARGESCREEN
#define DEVICEFAMILYDEVICEFORM_LARGESCREEN 0x0000000A
#endif //#ifndef DEVICEFAMILYDEVICEFORM_LARGESCREEN
#ifndef DEVICEFAMILYDEVICEFORM_HMD
#define DEVICEFAMILYDEVICEFORM_HMD 0x0000000B
#endif //#ifndef DEVICEFAMILYDEVICEFORM_HMD
#ifndef DEVICEFAMILYDEVICEFORM_INDUSTRY_HANDHELD
#define DEVICEFAMILYDEVICEFORM_INDUSTRY_HANDHELD 0x0000000C
#endif //#ifndef DEVICEFAMILYDEVICEFORM_INDUSTRY_HANDHELD
#ifndef DEVICEFAMILYDEVICEFORM_INDUSTRY_TABLET
#define DEVICEFAMILYDEVICEFORM_INDUSTRY_TABLET 0x0000000D
#endif //#ifndef DEVICEFAMILYDEVICEFORM_INDUSTRY_TABLET
#ifndef DEVICEFAMILYDEVICEFORM_BANKING
#define DEVICEFAMILYDEVICEFORM_BANKING 0x0000000E
#endif //#ifndef DEVICEFAMILYDEVICEFORM_BANKING
#ifndef DEVICEFAMILYDEVICEFORM_BUILDING_AUTOMATION
#define DEVICEFAMILYDEVICEFORM_BUILDING_AUTOMATION 0x0000000F
#endif //#ifndef DEVICEFAMILYDEVICEFORM_BUILDING_AUTOMATION
#ifndef DEVICEFAMILYDEVICEFORM_DIGITAL_SIGNAGE
#define DEVICEFAMILYDEVICEFORM_DIGITAL_SIGNAGE 0x00000010
#endif //#ifndef DEVICEFAMILYDEVICEFORM_DIGITAL_SIGNAGE
#ifndef DEVICEFAMILYDEVICEFORM_GAMING
#define DEVICEFAMILYDEVICEFORM_GAMING 0x00000011
#endif //#ifndef DEVICEFAMILYDEVICEFORM_GAMING
#ifndef DEVICEFAMILYDEVICEFORM_HOME_AUTOMATION
#define DEVICEFAMILYDEVICEFORM_HOME_AUTOMATION 0x00000012
#endif //#ifndef DEVICEFAMILYDEVICEFORM_HOME_AUTOMATION
#ifndef DEVICEFAMILYDEVICEFORM_INDUSTRIAL_AUTOMATION
#define DEVICEFAMILYDEVICEFORM_INDUSTRIAL_AUTOMATION 0x00000013
#endif //#ifndef DEVICEFAMILYDEVICEFORM_INDUSTRIAL_AUTOMATION
#ifndef DEVICEFAMILYDEVICEFORM_KIOSK
#define DEVICEFAMILYDEVICEFORM_KIOSK 0x00000014
#endif //#ifndef DEVICEFAMILYDEVICEFORM_KIOSK
#ifndef DEVICEFAMILYDEVICEFORM_MAKER_BOARD
#define DEVICEFAMILYDEVICEFORM_MAKER_BOARD 0x00000015
#endif //#ifndef DEVICEFAMILYDEVICEFORM_MAKER_BOARD
#ifndef DEVICEFAMILYDEVICEFORM_MEDICAL
#define DEVICEFAMILYDEVICEFORM_MEDICAL 0x00000016
#endif //#ifndef DEVICEFAMILYDEVICEFORM_MEDICAL
#ifndef DEVICEFAMILYDEVICEFORM_NETWORKING
#define DEVICEFAMILYDEVICEFORM_NETWORKING 0x00000017
#endif //#ifndef DEVICEFAMILYDEVICEFORM_NETWORKING
#ifndef DEVICEFAMILYDEVICEFORM_POINT_OF_SERVICE
#define DEVICEFAMILYDEVICEFORM_POINT_OF_SERVICE 0x00000018
#endif //#ifndef DEVICEFAMILYDEVICEFORM_POINT_OF_SERVICE
#ifndef DEVICEFAMILYDEVICEFORM_PRINTING
#define DEVICEFAMILYDEVICEFORM_PRINTING 0x00000019
#endif //#ifndef DEVICEFAMILYDEVICEFORM_PRINTING
#ifndef DEVICEFAMILYDEVICEFORM_THIN_CLIENT
#define DEVICEFAMILYDEVICEFORM_THIN_CLIENT 0x0000001A
#endif //#ifndef DEVICEFAMILYDEVICEFORM_THIN_CLIENT
#ifndef DEVICEFAMILYDEVICEFORM_TOY
#define DEVICEFAMILYDEVICEFORM_TOY 0x0000001B
#endif //#ifndef DEVICEFAMILYDEVICEFORM_TOY
#ifndef DEVICEFAMILYDEVICEFORM_VENDING
#define DEVICEFAMILYDEVICEFORM_VENDING 0x0000001C
#endif //#ifndef DEVICEFAMILYDEVICEFORM_VENDING
#ifndef DEVICEFAMILYDEVICEFORM_INDUSTRY_OTHER
#define DEVICEFAMILYDEVICEFORM_INDUSTRY_OTHER 0x0000001D
#endif //#ifndef DEVICEFAMILYDEVICEFORM_INDUSTRY_OTHER
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_ONE
#define DEVICEFAMILYDEVICEFORM_XBOX_ONE 0x0000001E
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_ONE
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_ONE_S
#define DEVICEFAMILYDEVICEFORM_XBOX_ONE_S 0x0000001F
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_ONE_S
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_ONE_X
#define DEVICEFAMILYDEVICEFORM_XBOX_ONE_X 0x00000020
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_ONE_X
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_ONE_X_DEVKIT
#define DEVICEFAMILYDEVICEFORM_XBOX_ONE_X_DEVKIT 0x00000021
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_ONE_X_DEVKIT
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_SERIES_X
#define DEVICEFAMILYDEVICEFORM_XBOX_SERIES_X 0x00000022
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_SERIES_X
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_SERIES_X_DEVKIT
#define DEVICEFAMILYDEVICEFORM_XBOX_SERIES_X_DEVKIT 0x00000023
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_SERIES_X_DEVKIT
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_SERIES_S
#define DEVICEFAMILYDEVICEFORM_XBOX_SERIES_S 0x00000024
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_SERIES_S
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_01
#define DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_01 0x00000025
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_01
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_02
#define DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_02 0x00000026
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_02
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_03
#define DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_03 0x00000027
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_03
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_04
#define DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_04 0x00000028
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_04
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_05
#define DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_05 0x00000029
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_05
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_06
#define DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_06 0x0000002A
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_06
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_07
#define DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_07 0x0000002B
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_07
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_08
#define DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_08 0x0000002C
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_08
#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_09
#define DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_09 0x0000002D
#endif //#ifndef DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_09
// CEnumProgramsDlg dialog
IMPLEMENT_DYNAMIC(CEnumProgramsDlg, CDialogEx)
CEnumProgramsDlg::CEnumProgramsDlg(CWnd* pParent /*=nullptr*/)
: CDialogEx(IDD_ENUMPROGRAMS_DIALOG, pParent)
{
}
CEnumProgramsDlg::~CEnumProgramsDlg()
{
}
void CEnumProgramsDlg::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
DDX_Control(pDX, IDC_PROGRAMS, m_ctrlPrograms);
}
BEGIN_MESSAGE_MAP(CEnumProgramsDlg, CDialogEx)
ON_WM_DESTROY()
ON_BN_CLICKED(IDC_OS_VERSION, &CEnumProgramsDlg::OnBnClickedVersion)
ON_BN_CLICKED(IDC_REFRESH, &CEnumProgramsDlg::OnClickedRefresh)
END_MESSAGE_MAP()
// CEnumProgramsDlg message handlers
BOOL CEnumProgramsDlg::OnInitDialog()
{
CDialogEx::OnInitDialog();
OnClickedRefresh();
VERIFY(m_pWindowResizer.Hook(this));
VERIFY(m_pWindowResizer.SetAnchor(IDC_PROGRAMS, ANCHOR_LEFT | ANCHOR_RIGHT | ANCHOR_TOP | ANCHOR_BOTTOM));
VERIFY(m_pWindowResizer.SetAnchor(IDC_OS_VERSION, ANCHOR_LEFT | ANCHOR_BOTTOM));
VERIFY(m_pWindowResizer.SetAnchor(IDC_REFRESH, ANCHOR_LEFT | ANCHOR_BOTTOM));
VERIFY(m_pWindowResizer.SetAnchor(IDCANCEL, ANCHOR_RIGHT | ANCHOR_BOTTOM));
const int nWidth = theApp.GetInt(_T("Width"), -1);
const int nHeight = theApp.GetInt(_T("Height"), -1);
if ((-1 != nWidth) && (-1 != nHeight))
{
CRect pWndRect(0, 0, nWidth, nHeight);
MoveWindow(pWndRect, FALSE);
CenterWindow();
UpdateWindow();
}
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
void CEnumProgramsDlg::OnDestroy()
{
CDialogEx::OnDestroy();
RECT pWndRect;
GetWindowRect(&pWndRect);
const int nWidth = pWndRect.right - pWndRect.left;
const int nHeight = pWndRect.bottom - pWndRect.top;
theApp.WriteInt(_T("Width"), nWidth);
theApp.WriteInt(_T("Height"), nHeight);
}
void CSortStringArray::Sort()
{
BOOL bNotDone = TRUE;
while (bNotDone)
{
bNotDone = FALSE;
for (int pos = 0; pos < GetUpperBound(); pos++)
bNotDone |= CompareAndSwap(pos);
}
}
BOOL CSortStringArray::CompareAndSwap(int pos)
{
CString temp;
int posFirst = pos;
int posNext = pos + 1;
if (GetAt(posFirst).CompareNoCase(GetAt(posNext)) > 0)
{
temp = GetAt(posFirst);
SetAt(posFirst, GetAt(posNext));
SetAt(posNext, temp);
return TRUE;
}
return FALSE;
}
void CEnumProgramsDlg::OnClickedRefresh()
{
CWaitCursor pWaitCursor;
m_ctrlPrograms.SetRedraw(FALSE);
m_arrPrograms.RemoveAll();
m_ctrlPrograms.DeleteAllItems();
// Build a list of installed applications by enumerating
// HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall
// and fetching "DisplayName" entry
HKEY hKey;
if (::RegOpenKeyEx(HKEY_LOCAL_MACHINE, IS_KEY, 0, KEY_READ, &hKey) != ERROR_SUCCESS)
return;
DWORD dwIndex = 0;
LONG lRet;
DWORD cbName = IS_KEY_LEN;
TCHAR szSubKeyName[IS_KEY_LEN];
while ((lRet = ::RegEnumKeyEx(hKey, dwIndex, szSubKeyName, &cbName, NULL,
NULL, NULL, NULL)) != ERROR_NO_MORE_ITEMS)
{
// Do we have a key to open?
if (lRet == ERROR_SUCCESS)
{
// Open the key and get the value
HKEY hItem;
if (::RegOpenKeyEx(hKey, szSubKeyName, 0, KEY_READ, &hItem) != ERROR_SUCCESS)
continue;
// Opened - look for "DisplayName"
TCHAR szDisplayName[IS_KEY_LEN];
DWORD dwSize = sizeof(szDisplayName);
DWORD dwType;
if (::RegQueryValueEx(hItem, IS_DISPLAY, NULL, &dwType,
(LPBYTE)&szDisplayName, &dwSize) == ERROR_SUCCESS)
{
// Add to the main array
m_arrPrograms.Add(szDisplayName);
}
::RegCloseKey(hItem);
}
dwIndex++;
cbName = IS_KEY_LEN;
}
::RegCloseKey(hKey);
m_arrPrograms.Sort();
for (int nIndex = 0; nIndex <= m_arrPrograms.GetUpperBound(); nIndex++)
m_ctrlPrograms.InsertItem(m_ctrlPrograms.GetItemCount(), m_arrPrograms[nIndex], 0);
m_ctrlPrograms.SetRedraw(TRUE);
m_ctrlPrograms.UpdateWindow();
}
void CEnumProgramsDlg::OnBnClickedVersion()
{
COSVersion::OS_VERSION_INFO osvi;
memset(&osvi, 0, sizeof(osvi));
#ifdef _WIN32
TCHAR sText[2048]; //NOLINT(modernize-avoid-c-arrays)
sText[0] = _T('\0');
TCHAR sBuf[100]; //NOLINT(modernize-avoid-c-arrays)
sBuf[0] = _T('\0');
#else
char sText[2048];
char sBuf[100];
#endif //#ifdef _WIN32
COSVersion os;
if (os.GetVersion(&osvi))
{
#ifndef UNDER_CE
_stprintf(sText, _T("Emulated OS: "));
switch (osvi.EmulatedPlatform)
{
case COSVersion::Dos:
{
_tcscat(sText, _T("DOS")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::Windows3x:
{
_tcscat(sText, _T("Windows")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::WindowsCE:
{
//This code will never really be executed, but for the same of completeness include it here
if (os.IsWindowsEmbeddedCompact(&osvi, FALSE))
_tcscat(sText, _T("Windows Embedded Compact")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindowsCENET(&osvi, FALSE))
_tcscat(sText, _T("Windows CE .NET")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows CE")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::Windows9x:
{
if (os.IsWindows95(&osvi, FALSE))
_stprintf(sBuf, _T("Windows 95"));
else if (os.IsWindows95SP1(&osvi, FALSE))
_stprintf(sBuf, _T("Windows 95 SP1"));
else if (os.IsWindows95B(&osvi, FALSE))
_stprintf(sBuf, _T("Windows 95 B [aka OSR2]"));
else if (os.IsWindows95C(&osvi, FALSE))
_stprintf(sBuf, _T("Windows 95 C [aka OSR2.5]"));
else if (os.IsWindows98(&osvi, FALSE))
_stprintf(sBuf, _T("Windows 98"));
else if (os.IsWindows98SP1(&osvi, FALSE))
_stprintf(sBuf, _T("Windows 98 SP1"));
else if (os.IsWindows98SE(&osvi, FALSE))
_stprintf(sBuf, _T("Windows 98 Second Edition"));
else if (os.IsWindowsME(&osvi, FALSE))
_stprintf(sBuf, _T("Windows Millenium Edition"));
else
_stprintf(sBuf, _T("Windows \?\?"));
_tcscat(sText, sBuf); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::WindowsNT:
{
if (os.IsNTPreWin2k(&osvi, FALSE))
{
_tcscat(sText, _T("Windows NT")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsNTWorkstation(&osvi, FALSE))
_tcscat(sText, _T(" (Workstation)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsNTStandAloneServer(&osvi, FALSE))
_tcscat(sText, _T(" (Server)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsNTPDC(&osvi, FALSE))
_tcscat(sText, _T(" (Primary Domain Controller)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsNTBDC(&osvi, FALSE))
_tcscat(sText, _T(" (Backup Domain Controller)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsNTDatacenterServer(&osvi, FALSE))
_tcscat(sText, _T(", (Datacenter)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsNTEnterpriseServer(&osvi, FALSE))
_tcscat(sText, _T(", (Enterprise)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else if (os.IsWindows2000(&osvi, FALSE))
{
if (os.IsProfessional(&osvi))
_tcscat(sText, _T("Windows 2000 (Professional)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows2000Server(&osvi, FALSE))
_tcscat(sText, _T("Windows 2000 Server")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows2000DomainController(&osvi, FALSE))
_tcscat(sText, _T("Windows 2000 (Domain Controller)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows 2000")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsWindows2000DatacenterServer(&osvi, FALSE))
_tcscat(sText, _T(", (Datacenter)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows2000AdvancedServer(&osvi, FALSE))
_tcscat(sText, _T(", (Advanced Server)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else if (os.IsWindowsXPOrWindowsServer2003(&osvi, FALSE))
{
if (os.IsStarterEdition(&osvi))
_tcscat(sText, _T("Windows XP (Starter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsPersonal(&osvi))
_tcscat(sText, _T("Windows XP (Personal)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsProfessional(&osvi))
_tcscat(sText, _T("Windows XP (Professional)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindowsServer2003(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2003")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsDomainControllerWindowsServer2003(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2003 (Domain Controller)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindowsServer2003R2(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2003 R2")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsDomainControllerWindowsServer2003R2(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2003 R2 (Domain Controller)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows XP")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsDatacenterWindowsServer2003(&osvi, FALSE) || os.IsDatacenterWindowsServer2003R2(&osvi, FALSE))
_tcscat(sText, _T(", (Datacenter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsEnterpriseWindowsServer2003(&osvi, FALSE) || os.IsEnterpriseWindowsServer2003R2(&osvi, FALSE))
_tcscat(sText, _T(", (Enterprise Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWebWindowsServer2003(&osvi, FALSE) || os.IsWebWindowsServer2003R2(&osvi, FALSE))
_tcscat(sText, _T(", (Web Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsStandardWindowsServer2003(&osvi, FALSE) || os.IsStandardWindowsServer2003R2(&osvi, FALSE))
_tcscat(sText, _T(", (Standard Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else if (os.IsWindowsVistaOrWindowsServer2008(&osvi, FALSE))
{
if (os.IsWindowsVista(&osvi, FALSE))
{
if (os.IsStarterEdition(&osvi))
_tcscat(sText, _T("Windows Vista (Starter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsHomeBasic(&osvi))
_tcscat(sText, _T("Windows Vista (Home Basic)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsHomeBasicPremium(&osvi))
_tcscat(sText, _T("Windows Vista (Home Premium)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsBusiness(&osvi))
_tcscat(sText, _T("Windows Vista (Business)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsEnterprise(&osvi))
_tcscat(sText, _T("Windows Vista (Enterprise)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsUltimate(&osvi))
_tcscat(sText, _T("Windows Vista (Ultimate)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows Vista")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else
{
if (os.IsWindowsServer2008(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2008")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsDomainControllerWindowsServer2008(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2008 (Domain Controller)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows Server 2008")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
if (os.IsDatacenterWindowsServer2008(&osvi, FALSE))
_tcscat(sText, _T(", (Datacenter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsEnterpriseWindowsServer2008(&osvi, FALSE))
_tcscat(sText, _T(", (Enterprise Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWebWindowsServer2008(&osvi, FALSE))
_tcscat(sText, _T(", (Web Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsStandardWindowsServer2008(&osvi, FALSE))
_tcscat(sText, _T(", (Standard Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else if (os.IsWindows7OrWindowsServer2008R2(&osvi, FALSE))
{
if (os.IsWindows7(&osvi, FALSE))
{
if (os.IsThinPC(&osvi))
_tcscat(sText, _T("Windows 7 Thin PC")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsStarterEdition(&osvi))
_tcscat(sText, _T("Windows 7 (Starter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsHomeBasic(&osvi))
_tcscat(sText, _T("Windows 7 (Home Basic)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsHomeBasicPremium(&osvi))
_tcscat(sText, _T("Windows 7 (Home Premium)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsProfessional(&osvi))
_tcscat(sText, _T("Windows 7 (Professional)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsEnterprise(&osvi))
_tcscat(sText, _T("Windows 7 (Enterprise)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsUltimate(&osvi))
_tcscat(sText, _T("Windows 7 (Ultimate)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows 7")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else
{
if (os.IsWindowsServer2008R2(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2008 R2")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsDomainControllerWindowsServer2008R2(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2008 R2 (Domain Controller)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows Server 2008")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
if (os.IsDatacenterWindowsServer2008R2(&osvi, FALSE))
_tcscat(sText, _T(", (Datacenter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsEnterpriseWindowsServer2008R2(&osvi, FALSE))
_tcscat(sText, _T(", (Enterprise Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWebWindowsServer2008R2(&osvi, FALSE))
_tcscat(sText, _T(", (Web Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsStandardWindowsServer2008R2(&osvi, FALSE))
_tcscat(sText, _T(", (Standard Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else if (os.IsWindows8OrWindowsServer2012(&osvi, FALSE))
{
if (os.IsWindows8(&osvi, FALSE))
{
if (os.IsThinPC(&osvi))
_tcscat(sText, _T("Windows 8 Thin PC")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindowsRT(&osvi, FALSE))
_tcscat(sText, _T("Windows 8 RT")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsStarterEdition(&osvi))
_tcscat(sText, _T("Windows 8 (Starter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsProfessional(&osvi))
_tcscat(sText, _T("Windows 8 (Pro)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsEnterprise(&osvi))
_tcscat(sText, _T("Windows 8 (Enterprise)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows 8")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else
{
if (os.IsWindowsServer2012(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2012")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsDomainControllerWindowsServer2012(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2012 (Domain Controller)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows Server 2012")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
if (os.IsDatacenterWindowsServer2012(&osvi, FALSE))
_tcscat(sText, _T(", (Datacenter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsEnterpriseWindowsServer2012(&osvi, FALSE))
_tcscat(sText, _T(", (Enterprise Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWebWindowsServer2012(&osvi, FALSE))
_tcscat(sText, _T(", (Web Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsStandardWindowsServer2012(&osvi, FALSE))
_tcscat(sText, _T(", (Standard Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else if (os.IsWindows8Point1OrWindowsServer2012R2(&osvi, FALSE))
{
if (os.IsWindows8Point1(&osvi, FALSE))
{
if (os.IsThinPC(&osvi))
_tcscat(sText, _T("Windows 8.1 Thin PC")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindowsRT(&osvi, FALSE))
_tcscat(sText, _T("Windows 8.1 RT")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsStarterEdition(&osvi))
_tcscat(sText, _T("Windows 8.1 (Starter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsProfessional(&osvi))
_tcscat(sText, _T("Windows 8.1 (Pro)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsEnterprise(&osvi))
_tcscat(sText, _T("Windows 8.1 (Enterprise)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows 8.1")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else
{
if (os.IsWindowsServer2012R2(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2012 R2")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsDomainControllerWindowsServer2012R2(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2012 R2 (Domain Controller)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows Server 2012 R2")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
if (os.IsCoreConnected(&osvi))
_tcscat(sText, _T(", (with Bing / CoreConnected)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsWindows8Point1Or2012R2Update(&osvi))
_tcscat(sText, _T(", (Update)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsDatacenterWindowsServer2012R2(&osvi, FALSE))
_tcscat(sText, _T(", (Datacenter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsEnterpriseWindowsServer2012R2(&osvi, FALSE))
_tcscat(sText, _T(", (Enterprise Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWebWindowsServer2012R2(&osvi, FALSE))
_tcscat(sText, _T(", (Web Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsStandardWindowsServer2012R2(&osvi, FALSE))
_tcscat(sText, _T(", (Standard Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else if (os.IsWindows10OrWindowsServer2016(&osvi, FALSE))
{
if (os.IsWindows10(&osvi, FALSE))
{
if (os.IsThinPC(&osvi))
_tcscat(sText, _T("Windows 10 Thin PC")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindowsRT(&osvi, FALSE))
_tcscat(sText, _T("Windows 10 RT")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsStarterEdition(&osvi))
_tcscat(sText, _T("Windows 10 (Starter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsCore(&osvi))
_tcscat(sText, _T("Windows 10 (Home)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsProfessional(&osvi))
_tcscat(sText, _T("Windows 10 (Pro)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsProWorkstations(&osvi))
_tcscat(sText, _T("Windows 10 (Pro for Workstations)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsEnterprise(&osvi))
_tcscat(sText, _T("Windows 10 (Enterprise)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsSEdition(&osvi))
_tcscat(sText, _T("Windows 10 S")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows10X(&osvi))
_tcscat(sText, _T("Windows 10X")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows 10")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else
{
if (os.IsNanoServer(&osvi))
_tcscat(sText, _T("Windows Server 2016 Nano Server")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsARM64Server(&osvi))
_tcscat(sText, _T("Windows Server 2016 ARM64 Server")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsDomainControllerWindowsServer2016(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2016 (Domain Controller)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows Server 2016")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsWindowsServerVersion1709(&osvi, FALSE))
_tcscat(sText, _T(", (version 1709)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindowsServerVersion1803(&osvi, FALSE))
_tcscat(sText, _T(", (version 1803)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
if (os.IsWindows10Version1507(&osvi, FALSE))
_tcscat(sText, _T(", (version 1507)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows10Version1511(&osvi, FALSE))
_tcscat(sText, _T(", (version 1511)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows10Version1607(&osvi, FALSE))
_tcscat(sText, _T(", (version 1607)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows10Version1703(&osvi, FALSE))
_tcscat(sText, _T(", (version 1703)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows10Version1709(&osvi, FALSE))
_tcscat(sText, _T(", (version 1709)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows10Version1803(&osvi, FALSE))
_tcscat(sText, _T(", (version 1803)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows10Version1809(&osvi, FALSE))
_tcscat(sText, _T(", (version 1809)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows10Version1903(&osvi, FALSE))
_tcscat(sText, _T(", (version 1903)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows10Version1909(&osvi, FALSE))
_tcscat(sText, _T(", (version 1909)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows10Version2004(&osvi, FALSE))
_tcscat(sText, _T(", (version 2004)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows10Version20H2(&osvi, FALSE))
_tcscat(sText, _T(", (version 20H2)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows10Version21H1(&osvi, FALSE))
_tcscat(sText, _T(", (version 21H1)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows10Version21H2(&osvi, FALSE))
_tcscat(sText, _T(", (version 21H2)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows10Version22H2(&osvi, FALSE))
_tcscat(sText, _T(", (version 22H2)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows10ActiveDevelopmentBranch(&osvi, FALSE))
_tcscat(sText, _T(", (Active Development Branch)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsCoreConnected(&osvi))
_tcscat(sText, _T(", (with Bing / CoreConnected)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsDatacenterWindowsServer2016(&osvi, FALSE))
_tcscat(sText, _T(", (Datacenter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsEnterpriseWindowsServer2016(&osvi, FALSE))
_tcscat(sText, _T(", (Enterprise Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWebWindowsServer2016(&osvi, FALSE))
_tcscat(sText, _T(", (Web Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsStandardWindowsServer2016(&osvi, FALSE))
_tcscat(sText, _T(", (Standard Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else if (os.IsWindows11(&osvi, FALSE))
{
if (os.IsStarterEdition(&osvi))
_tcscat(sText, _T("Windows 11 (Starter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsCore(&osvi))
_tcscat(sText, _T("Windows 11 (Home)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsProfessional(&osvi))
_tcscat(sText, _T("Windows 11 (Pro)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsProWorkstations(&osvi))
_tcscat(sText, _T("Windows 11 (Pro for Workstations)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsEnterprise(&osvi))
_tcscat(sText, _T("Windows 11 (Enterprise)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsSEdition(&osvi))
_tcscat(sText, _T("Windows 11 S")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows 11")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsWindows11Version21H2(&osvi, FALSE))
_tcscat(sText, _T(", (version 21H2)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows11Version22H2(&osvi, FALSE))
_tcscat(sText, _T(", (version 22H2)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows11Version23H2(&osvi, FALSE))
_tcscat(sText, _T(", (version 23H2)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows11Version24H2(&osvi, FALSE))
_tcscat(sText, _T(", (version 24H2)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindows11ActiveDevelopmentBranch(&osvi, FALSE))
_tcscat(sText, _T(", (Active Development Branch)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else if (os.IsWindowsServer2019(&osvi, FALSE))
{
if (os.IsNanoServer(&osvi))
_tcscat(sText, _T("Windows Server 2019 Nano Server")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsARM64Server(&osvi))
_tcscat(sText, _T("Windows Server 2019 ARM64 Server")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsDomainControllerWindowsServer2019(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2019 (Domain Controller)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows Server 2019")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsWindowsServerVersion1809(&osvi, FALSE))
_tcscat(sText, _T(", (version 1809)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindowsServerVersion1903(&osvi, FALSE))
_tcscat(sText, _T(", (version 1903)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindowsServerVersion1909(&osvi, FALSE))
_tcscat(sText, _T(", (version 1909)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindowsServerVersion2004(&osvi, FALSE))
_tcscat(sText, _T(", (version 2004)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindowsServerVersion20H2(&osvi, FALSE))
_tcscat(sText, _T(", (version 20H2)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindowsServer2019ActiveDevelopmentBranch(&osvi, FALSE))
_tcscat(sText, _T(", (vNext aka Active Development Branch)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsDatacenterWindowsServer2019(&osvi, FALSE))
_tcscat(sText, _T(", (Datacenter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsEnterpriseWindowsServer2019(&osvi, FALSE))
_tcscat(sText, _T(", (Enterprise Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWebWindowsServer2019(&osvi, FALSE))
_tcscat(sText, _T(", (Web Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsStandardWindowsServer2019(&osvi, FALSE))
_tcscat(sText, _T(", (Standard Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else if (os.IsWindowsServer2022(&osvi, FALSE))
{
if (os.IsNanoServer(&osvi))
_tcscat(sText, _T("Windows Server 2022 Nano Server")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsARM64Server(&osvi))
_tcscat(sText, _T("Windows Server 2022 ARM64 Server")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsDomainControllerWindowsServer2022(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2022 (Domain Controller)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows Server 2022")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsWindowsServerVersion23H2(&osvi, FALSE))
_tcscat(sText, _T(", (version 23H2)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindowsServer2022ActiveDevelopmentBranch(&osvi, FALSE))
_tcscat(sText, _T(", (vNext aka Active Development Branch)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsDatacenterWindowsServer2022(&osvi, FALSE))
_tcscat(sText, _T(", (Datacenter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsEnterpriseWindowsServer2022(&osvi, FALSE))
_tcscat(sText, _T(", (Enterprise Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWebWindowsServer2022(&osvi, FALSE))
_tcscat(sText, _T(", (Web Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsStandardWindowsServer2022(&osvi, FALSE))
_tcscat(sText, _T(", (Standard Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
else if (os.IsWindowsServer2025(&osvi, FALSE))
{
if (os.IsNanoServer(&osvi))
_tcscat(sText, _T("Windows Server 2025 Nano Server")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsARM64Server(&osvi))
_tcscat(sText, _T("Windows Server 2025 ARM64 Server")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsDomainControllerWindowsServer2025(&osvi, FALSE))
_tcscat(sText, _T("Windows Server 2025 (Domain Controller)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else
_tcscat(sText, _T("Windows Server 2025")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsWindowsServerVersion24H2(&osvi, FALSE))
_tcscat(sText, _T(", (version 24H2)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWindowsServer2025ActiveDevelopmentBranch(&osvi, FALSE))
_tcscat(sText, _T(", (vNext aka Active Development Branch)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
if (os.IsDatacenterWindowsServer2025(&osvi, FALSE))
_tcscat(sText, _T(", (Datacenter Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsEnterpriseWindowsServer2025(&osvi, FALSE))
_tcscat(sText, _T(", (Enterprise Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsWebWindowsServer2025(&osvi, FALSE))
_tcscat(sText, _T(", (Web Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
else if (os.IsStandardWindowsServer2025(&osvi, FALSE))
_tcscat(sText, _T(", (Standard Edition)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
}
break;
}
default:
{
_tcscat(sText, _T("Unknown OS")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
}
#ifndef UNDER_CE
switch (osvi.EmulatedProcessorType)
{
case COSVersion::X86_PROCESSOR:
{
_tcscat(sText, _T(", (x86 Processor)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::MIPS_PROCESSOR:
{
_tcscat(sText, _T(", (MIPS Processor)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::ALPHA_PROCESSOR:
{
_tcscat(sText, _T(", (Alpha Processor)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::PPC_PROCESSOR:
{
_tcscat(sText, _T(", (PPC Processor)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::IA64_PROCESSOR:
{
_tcscat(sText, _T(", (IA64 Itanium[2] Processor)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::AMD64_PROCESSOR:
{
_tcscat(sText, _T(", (x64 Processor)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::ALPHA64_PROCESSOR:
{
_tcscat(sText, _T(", (Alpha64 Processor)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::MSIL_PROCESSOR:
{
_tcscat(sText, _T(", (MSIL Processor)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::ARM_PROCESSOR:
{
_tcscat(sText, _T(", (ARM Processor)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::SHX_PROCESSOR:
{
_tcscat(sText, _T(", (SHX Processor)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::IA32_ON_WIN64_PROCESSOR:
{
_tcscat(sText, _T(", (IA32 on Win64 Processor)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::NEUTRAL_PROCESSOR:
{
_tcscat(sText, _T(", (Neutral Processor)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::ARM64_PROCESSOR:
{
_tcscat(sText, _T(", (ARM64 Processor)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::ARM32_ON_WIN64_PROCESSOR:
{
_tcscat(sText, _T(", (ARM32 on Win64 Processor)")); //NOLINT(clang-analyzer-security.insecureAPI.strcpy)
break;
}
case COSVersion::IA32_ON_ARM64_PROCESSOR:
{