-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEntryPoint.cs
1330 lines (1241 loc) · 78.8 KB
/
EntryPoint.cs
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
using System;
using System.Collections.Generic;
using System.Text;
using System.Management;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Text.RegularExpressions;
using Microsoft.Win32;
using MsiRcw = MyCompany.Ops.Utils.Products.MsiRcw;
using System.Diagnostics;
namespace Products
{
/// <summary>
/// Summary description for Installer.
/// </summary>
/// <remarks>see readme1.htm/readme2.htm for the details on why this is needed</remarks>
[ComImport, Guid("000C1090-0000-0000-C000-000000000046")]
public class Installer { }
/// <summary>
/// Summary description for EntryPoint.
/// </summary>
public class EntryPoint
{
private const string Status = "in progress";
private const string Version = "28sep21";
private const string RegExKbPattern = "(KB\\d{7})|(KB\\d{6})|(KB\\d{5})";
private static Regex RegExKb = new Regex(RegExKbPattern, RegexOptions.IgnoreCase | RegexOptions.Compiled);
private const string DateTimeFormatString = "yyyyMMdd h:MM:ss";
[Flags]
public enum ArgsSupported
{
None = 0x1,
ShowUsage = 0x2,
ProductType = 0x4,
ListProducts = 0x8 ,
SearchProducts = 0x10,
SearchProductsByVersion = 0x20,
SearchProductsBySource = 0x40,
RemoveProducts = 0x80,
Verbose = 0x100,
SingleLine = 0x200,
VerboseSingleLine = Verbose | SingleLine
}
public enum ProductTypes
{
None,
All,
Msi,
NonMsi,
Mu,
Wu
}
public enum SearchType
{
None,
Name,
Source,
Version
}
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
private static void Main(string[] args)
{
//String[] argsTest = Environment.GetCommandLineArgs();
ArgsSupported argsFound = ArgsSupported.None;
ProductTypes productType = ProductTypes.Msi; // default setting | None | All | NonMsi
string productName = String.Empty;
string productSource = String.Empty;
string productVersion = String.Empty;
//foreach (string arg in args)
for (int i = 0; (argsFound & ArgsSupported.ShowUsage) != ArgsSupported.ShowUsage && i < args.Length; i++)
{
//switch (args.GetValue(i).ToString().ToLower())
switch (args[i].ToLower())
{
case "/l":
argsFound |= ArgsSupported.ListProducts;
break;
case "/s":
if (args.Length > ++i)
{
productName = args.GetValue(i).ToString();
argsFound |= ArgsSupported.SearchProducts;
}
else // switch value not provided
{
argsFound |= ArgsSupported.ShowUsage;
}
break;
case "/ss":
if (args.Length > ++i)
{
productSource = args.GetValue(i).ToString();
argsFound |= ArgsSupported.SearchProductsBySource;
}
else // switch value not provided
{
argsFound |= ArgsSupported.ShowUsage;
}
break;
case "/sv":
if (args.Length > ++i)
{
productVersion = args.GetValue(i).ToString();
argsFound |= ArgsSupported.SearchProductsByVersion;
}
else // switch value not provided
{
argsFound |= ArgsSupported.ShowUsage;
}
break;
case "/r":
if (args.Length > ++i)
{
productName = args.GetValue(i).ToString();
argsFound |= ArgsSupported.SearchProducts;
argsFound |= ArgsSupported.RemoveProducts;
}
else // switch value not provided
{
argsFound |= ArgsSupported.ShowUsage;
}
break;
case "/rs":
if (args.Length > ++i)
{
productSource = args.GetValue(i).ToString();
argsFound |= ArgsSupported.SearchProductsBySource;
argsFound |= ArgsSupported.RemoveProducts;
}
else // switch value not provided
{
argsFound |= ArgsSupported.ShowUsage;
}
break;
case "/rv":
if (args.Length > ++i)
{
productVersion = args.GetValue(i).ToString();
argsFound |= ArgsSupported.SearchProductsByVersion;
argsFound |= ArgsSupported.RemoveProducts;
}
else // switch value not provided
{
argsFound |= ArgsSupported.ShowUsage;
}
break;
case "/t":
if (args.Length > ++i)
{
string productTypeValue = args.GetValue(i).ToString();
if (Regex.IsMatch(productTypeValue, @"(all)|(msi)|(nonmsi)|(mu)|(wu)") == true)
{
switch (productTypeValue)
{
case "all":
productType = ProductTypes.All;
break;
case "msi":
productType = ProductTypes.Msi;
break;
case "nonmsi":
productType = ProductTypes.NonMsi;
break;
case "mu":
productType = ProductTypes.Mu;
break;
case "wu":
productType = ProductTypes.Wu;
break;
default:
productType = ProductTypes.None;
break;
}
argsFound |= ArgsSupported.ProductType;
}
else // unsupported switchParam provided
{
argsFound |= ArgsSupported.ShowUsage;
}
}
else // switch value not provided
{
argsFound |= ArgsSupported.ShowUsage;
}
break;
case "/v":
//if (args.Length > ++i)
//{
// productName = args.GetValue(i).ToString();
// argsFound |= ArgsSupported.GetProductVersion;
argsFound |= ArgsSupported.Verbose;
//}
//else // switch value not provided
//{
// argsFound |= ArgsSupported.ShowUsage;
//}
break;
case "/vsl":
//if (args.Length > ++i)
//{
// productName = args.GetValue(i).ToString();
// argsFound |= ArgsSupported.GetProductVersion;
argsFound |= ArgsSupported.VerboseSingleLine;
//}
//else // switch value not provided
//{
// argsFound |= ArgsSupported.ShowUsage;
//}
break;
default: // /? | /h | <unsupportedArg>
argsFound |= ArgsSupported.ShowUsage;
break;
}
}
if (argsFound == ArgsSupported.None || (argsFound & ArgsSupported.ShowUsage) == ArgsSupported.ShowUsage)
{
ShowUsage();
}
else
{
if ((argsFound & ArgsSupported.ListProducts) == ArgsSupported.ListProducts)
{
ListProducts(productType, argsFound);
}
else if ((argsFound & ArgsSupported.SearchProducts) == ArgsSupported.SearchProducts)
{
SearchProducts(productType, productName, SearchType.Name, argsFound);
}
else if ((argsFound & ArgsSupported.SearchProductsBySource) == ArgsSupported.SearchProductsBySource)
{
SearchProducts(productType, productSource, SearchType.Source, argsFound);
}
else if ((argsFound & ArgsSupported.SearchProductsByVersion) == ArgsSupported.SearchProductsByVersion)
{
SearchProducts(productType, productVersion, SearchType.Version, argsFound);
}
}
}
private static void ShowUsage()
{
Assembly asm = Assembly.GetExecutingAssembly();
string asmVersion = asm.GetName().Version.ToString();
string asmExe = Regex.Match(Environment.CommandLine, @"[^\\]+\.exe", RegexOptions.None).Value;
Console.WriteLine("\nstatus = " + Status + ", version = " + Version + "\n");
// or Console.WriteLine("\nversion = " + Version + "\n");
Console.WriteLine("description");
Console.WriteLine(" list and search for installed products from a command line interface\n");
Console.WriteLine("usage");
Console.WriteLine(" " + asmExe + " [/l | /s <searchText>] [/t <all | msi | nonmsi | mu | wu>] [/v]\n");
//Console.WriteLine(" " + asmExe + " [/l | /s|r[sv] <searchText>] [/t <all | msi | nonmsi | mu | wu>] [/v]\n");
Console.WriteLine("where");
Console.WriteLine(" /l = list products");
//Console.WriteLine(" /c = check if product is installed");
Console.WriteLine(" /s = search product names containing search text");
Console.WriteLine(" /ss = search product install source containing search text");
Console.WriteLine(" /sv = search product versions containing search text");
//Console.WriteLine(" /r = search product names containing search text and remove");
//Console.WriteLine(" /rs = search product install source containing search text and remove");
//Console.WriteLine(" /rv = search product versions containing search text and remove");
Console.WriteLine(" /t = product type options are \"all\", \"msi\" (default), \"nonmsi\", \"mu\" or \"wu\"");
Console.WriteLine(" /v = verbose product info output");
Console.WriteLine(" /vsl = verbose product info output on single line for sort and diff purposes");
Console.WriteLine(" /? = or /h or no arguments shows usage info\n");
Console.WriteLine("examples");
Console.WriteLine(" " + asmExe + " /l /t all /v");
Console.WriteLine(" " + asmExe + " /s office /t msi");
//Console.WriteLine(" " + asmExe + " /s \"sql server\" /t nonmsi");
Console.WriteLine(" " + asmExe + " /s \"silverlight \\d \\w* ?sdk\" /vsl");
Console.WriteLine(" " + asmExe + " /ss \"src\\\\vs12\\\\x86\" /vsl");
Console.WriteLine(" " + asmExe + " /ss \"v11.0.5\\d{4}\\packages\" /vsl");
Console.WriteLine(" " + asmExe + " /sv \"11.0.5\\d{4}\" /vsl");
//Console.WriteLine(" " + asmExe + " /s \"Microsoft .NET Framework (?:4.5|4.5 Developer Preview) Multi-Targeting Pack\"");
//Console.WriteLine(" " + asmExe + " /r \"Blend 5\" /vsl");
Console.WriteLine(" " + asmExe + " /s kb2345678 /t mu");
Console.WriteLine("");
}
private static void ListProducts(ProductTypes productType, ArgsSupported argsFound)
{
bool verbose = (argsFound & ArgsSupported.Verbose) == ArgsSupported.Verbose;
bool verboseSingleLine = (argsFound & ArgsSupported.VerboseSingleLine) == ArgsSupported.VerboseSingleLine;
if (productType == ProductTypes.All || productType == ProductTypes.Msi)
{
Console.WriteLine("------------ begin ListProducts Msi -------------");
#if DEBUG
//Type typeFromProgID = Type.GetTypeFromProgID("WindowsInstaller.Installer");
//Type typeFromInterop = typeof(MsiRcw.Installer);
#endif
// initially the wmi Windows Installer provider was available by default on x86 os installs and as an optional component on x64 os installs.
// it now appears that it is there by default in both cases and so we could optional switch back to using it and get away from our dependency
// on the WindowsInstaller.Installer COM runtime callable wrapper
//ManagementClass win32Products = new ManagementClass("Win32_Product");
//foreach (ManagementObject win32Product in win32Products.GetInstances())
//{
// Console.WriteLine("Id = {0} " + "Name = {1} Version = {2}", win32Product["IdentifyingNumber"], win32Product["Name"], win32Product["Version"]);
//}
// or
//SelectQuery selectQuery = new SelectQuery("Win32_Product");
//ManagementObjectSearcher searcher = new ManagementObjectSearcher(selectQuery);
//foreach (ManagementObject win32Product in searcher.Get())
//{
// Console.WriteLine("Id = {0} " + "Name = {1} Version = {2}",
// win32Product["IdentifyingNumber"], win32Product["Name"], win32Product["Version"]);
//}
// or
MsiRcw.Installer installer = (MsiRcw.Installer)new Installer();
//foreach (string product in installer.Products)
for (int i = 0; i < installer.Products.Count; i++)
{
//string currentItemId = product;
string currentItemId = installer.Products[i];
string currentItemName = string.Empty;
string currentItemInstallSource = string.Empty;
string currentItemVersion = string.Empty;
try
{
currentItemName = installer.get_ProductInfo(currentItemId, "InstalledProductName");
currentItemInstallSource = installer.get_ProductInfo(currentItemId, "InstallSource");
if (currentItemInstallSource.Length == 0) currentItemInstallSource = " "; // "<value not found>";
currentItemVersion = installer.get_ProductInfo(currentItemId, "VersionString");
}
catch //(COMException ex)
{
Console.WriteLine("Exception on currentItemId {0}", currentItemId);
//Console.WriteLine("Exception message {0}", ex.Message);
//Console.WriteLine("Exception innerException {0}", ex.InnerException);
//Console.WriteLine("Exception stackTrace {0}", ex.StackTrace);
}
if (currentItemVersion.Length == 0) currentItemVersion = " "; // "<value not found>";
if (verbose)
{
string currentItemProductId = installer.get_ProductInfo(currentItemId, "ProductID");
if (currentItemProductId.Length == 0) currentItemProductId = " "; // "<value not found>";
string currentItemInstallLocation = installer.get_ProductInfo(currentItemId, "InstallLocation");
if (currentItemInstallLocation.Length == 0) currentItemInstallLocation = " "; // "<value not found>";
string format = "{0}, {1},\n{2}, {3}, {4}";
if (verboseSingleLine) format = "{0}, {1}, {2}, {3}, {4}";
Console.WriteLine(format, currentItemName, currentItemVersion, /* currentItemProductId */ currentItemId,
currentItemInstallLocation, currentItemInstallSource);
}
else
{
Console.WriteLine("{0}, {1}", currentItemName, currentItemVersion);
}
}
Console.WriteLine("Total Msi Hits = {0}", installer.Products.Count);
Console.WriteLine("------------- end ListProducts Msi --------------");
}
if (productType == ProductTypes.All || productType == ProductTypes.NonMsi)
{
RegistryKey rk = Registry.LocalMachine.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\UnInstall");
try
{
Console.WriteLine("----------- begin ListProducts NonMsi -----------");
int totalNonMsiHits = 0;
foreach (string subkey in rk.GetSubKeyNames())
//for (int i = 0; i < rk.SubKeyCount; i++)
{
//string subkey = rk.GetSubKeyNames().GetValue(i);
RegistryKey sk = rk.OpenSubKey(subkey);
if ((sk.GetValue("WindowsInstaller") != null && Convert.ToInt32(sk.GetValue("WindowsInstaller", 1)) == 0) ||
(sk.GetValue("WindowsInstaller") == null && sk.GetValue("DisplayName") != null &&
sk.GetValue("ParentKeyName") == null && RegExKb.Match(sk.GetValue("", "").ToString()).Success == false))
{
totalNonMsiHits++;
string currentItemId = /* sk.Name */ subkey;
string currentItemName = Convert.ToString(sk.GetValue("DisplayName"));
string currentItemInstallSource = Convert.ToString(sk.GetValue("InstallSource"));
if (currentItemInstallSource.Length == 0) currentItemInstallSource = " "; // "<value not found>";
string currentItemVersion = Convert.ToString(sk.GetValue("DisplayVersion"));
if (currentItemVersion.Length == 0) currentItemVersion = " "; // "<value not found>";
if (verbose)
{
string currentItemUninstallString = Convert.ToString(sk.GetValue("UninstallString"));
if (currentItemUninstallString.Length == 0) currentItemUninstallString = " "; // "<value not found>";
string currentItemInstallLocation = Convert.ToString(sk.GetValue("InstallLocation"));
if (currentItemInstallLocation.Length == 0) currentItemInstallLocation = " "; // "<value not found>";
string format = "{0}, {1}, {2},\n{3}, {4}, {5}";
if (verboseSingleLine) format = "{0}, {1}, {2}, {3}, {4}, {5}";
Console.WriteLine(format, currentItemId, currentItemName, currentItemVersion, currentItemUninstallString,
currentItemInstallLocation, currentItemInstallSource);
}
else
{
Console.WriteLine("{0}, {1}, {2}", currentItemId, currentItemName, currentItemVersion);
}
}
sk.Close();
}
Console.WriteLine("Total NonMsi Hits = {0}", totalNonMsiHits++);
Console.WriteLine("------------- end ListProducts NonMsi --------------");
}
finally
{
rk.Close();
}
rk = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\UnInstall");
try
{
Console.WriteLine("----------- begin ListProducts NonMsiCu -----------");
int totalNonMsiHits = 0;
foreach (string subkey in rk.GetSubKeyNames())
//for (int i = 0; i < rk.SubKeyCount; i++)
{
//string subkey = rk.GetSubKeyNames().GetValue(i);
RegistryKey sk = rk.OpenSubKey(subkey);
if ((sk.GetValue("WindowsInstaller") != null && Convert.ToInt32(sk.GetValue("WindowsInstaller", 1)) == 0) ||
(sk.GetValue("WindowsInstaller") == null && sk.GetValue("DisplayName") != null &&
sk.GetValue("ParentKeyName") == null && RegExKb.Match(sk.GetValue("", "").ToString()).Success == false))
{
totalNonMsiHits++;
string currentItemId = /* sk.Name */ subkey;
string currentItemName = Convert.ToString(sk.GetValue("DisplayName"));
string currentItemInstallSource = Convert.ToString(sk.GetValue("InstallSource"));
if (currentItemInstallSource.Length == 0) currentItemInstallSource = " "; // "<value not found>";
string currentItemVersion = Convert.ToString(sk.GetValue("DisplayVersion"));
if (currentItemVersion.Length == 0) currentItemVersion = " "; // "<value not found>";
if (verbose)
{
string currentItemUninstallString = Convert.ToString(sk.GetValue("UninstallString"));
if (currentItemUninstallString.Length == 0) currentItemUninstallString = " "; // "<value not found>";
string currentItemInstallLocation = Convert.ToString(sk.GetValue("InstallLocation"));
if (currentItemInstallLocation.Length == 0) currentItemInstallLocation = " "; // "<value not found>";
string format = "{0}, {1}, {2},\n{3}, {4}, {5}";
if (verboseSingleLine) format = "{0}, {1}, {2}, {3}, {4}, {5}";
Console.WriteLine(format, currentItemId, currentItemName, currentItemVersion, currentItemUninstallString,
currentItemInstallLocation, currentItemInstallSource);
}
else
{
Console.WriteLine("{0}, {1}, {2}", currentItemId, currentItemName, currentItemVersion);
}
}
sk.Close();
}
Console.WriteLine("Total NonMsiCu Hits = {0}", totalNonMsiHits++);
Console.WriteLine("------------- end ListProducts NonMsiCu --------------");
}
finally
{
rk.Close();
}
if (false == Environment.GetEnvironmentVariable("Processor_Architecture").Equals("x86"))
{
rk = Registry.LocalMachine.OpenSubKey("Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\UnInstall");
try
{
Console.WriteLine("----------- begin ListProducts NonMsiX86 -----------");
int totalNonMsiX86Hits = 0;
foreach (string subkey in rk.GetSubKeyNames())
//for (int i = 0; i < rk.SubKeyCount; i++)
{
//string subkey = rk.GetSubKeyNames().GetValue(i);
RegistryKey sk = rk.OpenSubKey(subkey);
if ((sk.GetValue("WindowsInstaller") != null && Convert.ToInt32(sk.GetValue("WindowsInstaller", 1)) == 0) ||
(sk.GetValue("WindowsInstaller") == null && sk.GetValue("DisplayName") != null &&
sk.GetValue("ParentKeyName") == null && RegExKb.Match(sk.GetValue("", "").ToString()).Success == false))
{
totalNonMsiX86Hits++;
string currentItemId = /* sk.Name */ subkey;
string currentItemName = Convert.ToString(sk.GetValue("DisplayName"));
string currentItemInstallSource = Convert.ToString(sk.GetValue("InstallSource"));
if (currentItemInstallSource.Length == 0) currentItemInstallSource = " "; // "<value not found>";
string currentItemVersion = Convert.ToString(sk.GetValue("DisplayVersion"));
if (currentItemVersion.Length == 0) currentItemVersion = " "; // "<value not found>";
if (verbose)
{
string currentItemUninstallString = Convert.ToString(sk.GetValue("UninstallString"));
if (currentItemUninstallString.Length == 0) currentItemUninstallString = " "; // "<value not found>";
string currentItemInstallLocation = Convert.ToString(sk.GetValue("InstallLocation"));
if (currentItemInstallLocation.Length == 0) currentItemInstallLocation = " "; // "<value not found>";
string format = "{0}, {1}, {2},\n{3}, {4}, {5}";
if (verboseSingleLine) format = "{0}, {1}, {2}, {3}, {4}, {5}";
Console.WriteLine(format, currentItemId, currentItemName, currentItemVersion, currentItemUninstallString,
currentItemInstallLocation, currentItemInstallSource);
}
else
{
Console.WriteLine("{0}, {1}, {2}", currentItemId, currentItemName, currentItemVersion);
}
}
sk.Close();
}
Console.WriteLine("Total NonMsiX86 Hits = {0}", totalNonMsiX86Hits);
Console.WriteLine("------------- end ListProducts NonMsiX86 --------------");
}
finally
{
rk.Close();
}
//rk = Registry.CurrentUser.OpenSubKey("Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\UnInstall");
//try
//{
// Console.WriteLine("----------- begin ListProducts NonMsiCuX86 -----------");
// int totalNonMsiX86Hits = 0;
// foreach (string subkey in rk.GetSubKeyNames())
// //for (int i = 0; i < rk.SubKeyCount; i++)
// {
// //string subkey = rk.GetSubKeyNames().GetValue(i);
// RegistryKey sk = rk.OpenSubKey(subkey);
// if ((sk.GetValue("WindowsInstaller") != null && Convert.ToInt32(sk.GetValue("WindowsInstaller", 1)) == 0) ||
// (sk.GetValue("WindowsInstaller") == null && sk.GetValue("DisplayName") != null &&
// sk.GetValue("ParentKeyName") == null && RegExKb.Match(sk.GetValue("", "").ToString()).Success == false))
// {
// totalNonMsiX86Hits++;
// string currentItemId = /* sk.Name */ subkey;
// string currentItemName = Convert.ToString(sk.GetValue("DisplayName"));
// string currentItemInstallSource = Convert.ToString(sk.GetValue("InstallSource"));
// if (currentItemInstallSource.Length == 0) currentItemInstallSource = " "; // "<value not found>";
// string currentItemVersion = Convert.ToString(sk.GetValue("DisplayVersion"));
// if (currentItemVersion.Length == 0) currentItemVersion = " "; // "<value not found>";
// if (verbose)
// {
// string currentItemUninstallString = Convert.ToString(sk.GetValue("UninstallString"));
// if (currentItemUninstallString.Length == 0) currentItemUninstallString = " "; // "<value not found>";
// string currentItemInstallLocation = Convert.ToString(sk.GetValue("InstallLocation"));
// if (currentItemInstallLocation.Length == 0) currentItemInstallLocation = " "; // "<value not found>";
// string format = "{0}, {1}, {2},\n{3}, {4}, {5}";
// if (verboseSingleLine) format = "{0}, {1}, {2}, {3}, {4}, {5}";
// Console.WriteLine(format, currentItemId, currentItemName, currentItemVersion, currentItemUninstallString,
// currentItemInstallLocation, currentItemInstallSource);
// }
// else
// {
// Console.WriteLine("{0}, {1}, {2}", currentItemId, currentItemName, currentItemVersion);
// }
// }
// sk.Close();
// }
// Console.WriteLine("Total NonMsiCuX86 Hits = {0}", totalNonMsiX86Hits);
// Console.WriteLine("------------- end ListProducts NonMsiCuX86 --------------");
//}
//finally
//{
// rk.Close();
//}
}
}
if (productType == ProductTypes.All || productType == ProductTypes.Mu)
{
RegistryKey rk = Registry.LocalMachine.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Installer\\UserData\\S-1-5-18\\Products");
// then interate to find every Installer\UserData\S-1-5-18\Products\<guid>\Patches\<guid>\DisplayName entry
try
{
Console.WriteLine("----------- begin ListProducts Microsoft Update -----------");
int totalMicrosoftUpdateHits = 0;
foreach (string subkey in rk.GetSubKeyNames())
{
RegistryKey skPatches = rk.OpenSubKey(subkey + "\\Patches");
if (skPatches == null)
{
//Console.WriteLine("OpenSubKey({0}) returned a null reference", subkey + "\\Patches");
//Console.WriteLine("Expected SubKey {0} does not exist", subkey + "\\Patches");
continue; // Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object
}
foreach (string subkeyPatchesGuid in skPatches.GetSubKeyNames())
{
RegistryKey skPatchesGuid = skPatches.OpenSubKey(subkeyPatchesGuid);
if (skPatchesGuid.GetValue("DisplayName") != null /* && skPatchesGuid.GetValue("State") != null */ &&
skPatchesGuid.GetValue("State").ToString() == "1")
{
totalMicrosoftUpdateHits++;
string currentItemId = /* skPatchesGuid.Name */ subkeyPatchesGuid;
string currentItemName = Convert.ToString(skPatchesGuid.GetValue("DisplayName"));
string currentItemInstallSource = Convert.ToString(skPatchesGuid.GetValue("MoreInfoURL"));
if (currentItemInstallSource.Length == 0) currentItemInstallSource = " "; // "<value not found>";
string currentItemVersion = Convert.ToString(skPatchesGuid.GetValue("Installed"));
if (currentItemVersion.Length == 0) currentItemVersion = " "; // "<value not found>";
if (verbose)
{
string /* currentItemUninstallString = Convert.ToString(skPatchesGuid.GetValue("MoreInfoURL"));
if (currentItemUninstallString.Length == 0) */ currentItemUninstallString = " "; // "<value not found>";
string /* currentItemInstallLocation = Convert.ToString(skPatchesGuid.GetValue("MoreInfoURL"));
if (currentItemInstallLocation.Length == 0) */ currentItemInstallLocation = " "; // "<value not found>";
string format = "{0}, {1},\n{2}, {3}, {4}";
if (verboseSingleLine) format = "{0}, {1}, {2}, {3}, {4}";
Console.WriteLine(format, currentItemName, currentItemVersion, currentItemUninstallString,
currentItemInstallLocation, currentItemInstallSource);
}
else
{
Console.WriteLine("{0}, {1}", currentItemName, currentItemVersion);
}
}
skPatchesGuid.Close();
}
skPatches.Close();
}
Console.WriteLine("Total Microsoft Update Hits = {0}", totalMicrosoftUpdateHits);
Console.WriteLine("------------- end ListProducts Microsoft Update --------------");
}
finally
{
rk.Close();
}
}
if (productType == ProductTypes.All || productType == ProductTypes.Wu)
{
RegistryKey rk = Registry.LocalMachine.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Component Based Servicing\\Packages");
// then interate to find every Component Based Servicing\Packages\Package_*\Visibility = 1/visible versus 2/hidden entry
try
{
Console.WriteLine("----------- begin ListProducts Windows Update -----------");
int totalWindowsUpdateHits = 0;
foreach (string subkey in rk.GetSubKeyNames())
{
if (subkey.StartsWith("Package_"))
{
RegistryKey sk = rk.OpenSubKey(subkey);
if (sk.GetValue("Visibility") != null && sk.GetValue("Visibility").ToString() == "1")
{
totalWindowsUpdateHits++;
//string currentItemId = sk.GetValue("InstallName").ToString();
string currentItemId = sk.Name; // InstallName is "update.mum" on w08r2sp1/w7 installs so use key name
string currentItemName = RegExKb.Match(currentItemId).Groups[0].Value;
if (string.IsNullOrEmpty(currentItemName)) currentItemName = currentItemId;
string currentItemInstallSource = Convert.ToString(sk.GetValue("InstallLocation"));
if (currentItemInstallSource.Length == 0) currentItemInstallSource = " "; // "<value not found>";
int installTimeHigh = Convert.ToInt32(sk.GetValue("InstallTimeHigh"));
int installTimeLow = Convert.ToInt32(sk.GetValue("InstallTimeLow"));
Int64 fileTime = ((Int64)installTimeHigh << 32) + installTimeLow;
string currentItemVersion = DateTime.FromFileTime(fileTime).ToString(DateTimeFormatString);
if (currentItemVersion.Length == 0) currentItemVersion = " "; // "<value not found>";
if (verbose)
{
string /* currentItemUninstallString = Convert.ToString(skPatchesGuid.GetValue("InstallLocation"));
if (currentItemUninstallString.Length == 0) */ currentItemUninstallString = " "; // "<value not found>";
string /* currentItemInstallLocation = Convert.ToString(skPatchesGuid.GetValue("InstallLocation"));
if (currentItemInstallLocation.Length == 0) */ currentItemInstallLocation = " "; // "<value not found>";
string format = "{0}, {1},\n{2}, {3}, {4}";
if (verboseSingleLine) format = "{0}, {1}, {2}, {3}, {4}";
Console.WriteLine(format, currentItemName, currentItemVersion, currentItemUninstallString,
currentItemInstallLocation, currentItemInstallSource);
}
else
{
Console.WriteLine("{0}, {1}", currentItemName, currentItemVersion);
}
}
sk.Close();
}
}
Console.WriteLine("Total Windows Update Hits = {0}", totalWindowsUpdateHits);
Console.WriteLine("------------- end ListProducts Windows Update --------------");
}
finally
{
rk.Close();
}
}
}
private static void SearchProducts(ProductTypes productType, string searchText, SearchType searchType, ArgsSupported argsFound)
{
bool verbose = (argsFound & ArgsSupported.Verbose) == ArgsSupported.Verbose;
bool verboseSingleLine = (argsFound & ArgsSupported.VerboseSingleLine) == ArgsSupported.VerboseSingleLine;
if (productType == ProductTypes.All || productType == ProductTypes.Msi)
{
Console.WriteLine("----------- begin SearchProducts Msi ------------");
#if DEBUG
//Type typeFromProgID = Type.GetTypeFromProgID("WindowsInstaller.Installer");
//Type typeFromInterop = typeof(MsiRcw.Installer);
#endif
MsiRcw.Installer installer = (MsiRcw.Installer)new Installer();
int totalMsiHits = 0;
//foreach (string product in installer.Products)
for (int i = 0; i < installer.Products.Count; i++)
{
//string currentItemId = product;
string currentItemId = installer.Products[i];
string currentItemName = string.Empty;
string currentItemInstallSource = string.Empty;
string currentItemVersion = string.Empty;
string currentItemProductId = string.Empty;
try
{
currentItemName = installer.get_ProductInfo(currentItemId, "InstalledProductName");
currentItemInstallSource = installer.get_ProductInfo(currentItemId, "InstallSource");
if (currentItemInstallSource.Length == 0) currentItemInstallSource = " "; // "<value not found>";
currentItemVersion = installer.get_ProductInfo(currentItemId, "VersionString");
if (currentItemVersion.Length == 0) currentItemVersion = " "; // "<value not found>";
currentItemProductId = installer.get_ProductInfo(currentItemId, "ProductID");
if (currentItemProductId.Length == 0) currentItemProductId = " "; // "<value not found>";
}
catch //(Exception ex)
{
//Console.WriteLine("Exception on currentItemId {0} with message {1}", currentItemId, ex.Message);
//Console.WriteLine("Exception on currentItemId {0} with stackTrace {1}", currentItemId, ex.StackTrace);
Console.WriteLine("Exception on currentItemId {0}", currentItemId);
}
#if DEBUG
//if (currentItemName.Contains("Silverlight")) System.Diagnostics.Debugger.Break();
//if (currentItemInstallSource.Contains("v11.0.40927\\packages")) System.Diagnostics.Debugger.Break();
//if (currentItemName.Contains("Multi-Targeting Pack")) System.Diagnostics.Debugger.Break();
//if (currentItemName.Contains("Blend")) System.Diagnostics.Debugger.Break();
#endif
if ((searchType == SearchType.Name && Regex.Match(currentItemName, searchText, RegexOptions.IgnoreCase).Success == true) ||
(searchType == SearchType.Source && Regex.Match(currentItemInstallSource, searchText, RegexOptions.IgnoreCase).Success == true) ||
(searchType == SearchType.Version && Regex.Match(currentItemVersion, searchText, RegexOptions.IgnoreCase).Success == true))
{
totalMsiHits++;
if (verbose)
{
string currentItemInstallLocation = installer.get_ProductInfo(currentItemId, "InstallLocation");
if (currentItemInstallLocation.Length == 0) currentItemInstallLocation = " "; // "<value not found>";
string format = "{0}, {1},\n{2}, {3}, {4}";
if (verboseSingleLine) format = "{0}, {1}, {2}, {3}, {4}";
Console.WriteLine(format, currentItemName, currentItemVersion, /* currentItemProductId */ currentItemId,
currentItemInstallLocation, currentItemInstallSource);
}
else
{
Console.WriteLine("{0}, {1}", currentItemName, currentItemVersion);
}
if ((argsFound & ArgsSupported.RemoveProducts) == ArgsSupported.RemoveProducts)
{
MsiUninstall(currentItemId);
}
}
}
Console.WriteLine("Total Msi Hits = {0}", totalMsiHits);
Console.WriteLine("------------ end SearchProducts Msi -------------");
}
if (productType == ProductTypes.All || productType == ProductTypes.NonMsi)
{
RegistryKey rk = Registry.LocalMachine.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\UnInstall");
try
{
Console.WriteLine("---------- begin SearchProducts NonMsi ----------");
int totalNonMsiHits = 0;
foreach (string subkey in rk.GetSubKeyNames())
//for (int i = 0; i < rk.SubKeyCount; i++)
{
//string subkey = rk.GetSubKeyNames().GetValue(i);
RegistryKey sk = rk.OpenSubKey(subkey);
if ((sk.GetValue("WindowsInstaller") != null && Convert.ToInt32(sk.GetValue("WindowsInstaller", 1)) == 0) ||
(sk.GetValue("WindowsInstaller") == null && sk.GetValue("DisplayName") != null &&
sk.GetValue("ParentKeyName") == null && RegExKb.Match(sk.GetValue("", "").ToString()).Success == false))
{
string currentItemId = /* sk.Name */ subkey;
string currentItemName = Convert.ToString(sk.GetValue("DisplayName"));
string currentItemInstallSource = Convert.ToString(sk.GetValue("InstallSource"));
if (currentItemInstallSource.Length == 0) currentItemInstallSource = " "; // "<value not found>";
string currentItemVersion = Convert.ToString(sk.GetValue("DisplayVersion"));
if (currentItemVersion.Length == 0) currentItemVersion = " "; // "<value not found>";
if ((searchType == SearchType.Name && Regex.Match(currentItemId, searchText, RegexOptions.IgnoreCase).Success == true) ||
(searchType == SearchType.Source && Regex.Match(currentItemInstallSource, searchText, RegexOptions.IgnoreCase).Success == true) ||
(searchType == SearchType.Version && Regex.Match(currentItemVersion, searchText, RegexOptions.IgnoreCase).Success == true))
{
totalNonMsiHits++;
if (verbose)
{
string currentItemUninstallString = Convert.ToString(sk.GetValue("UninstallString"));
if (currentItemUninstallString.Length == 0) currentItemUninstallString = " "; // "<value not found>";
string currentItemInstallLocation = Convert.ToString(sk.GetValue("InstallLocation"));
if (currentItemInstallLocation.Length == 0) currentItemInstallLocation = " "; // "<value not found>";
string format = "{0}, {1}, {2},\n{3}, {4}, {5}";
if (verboseSingleLine) format = "{0}, {1}, {2}, {3}, {4}, {5}";
Console.WriteLine(format, currentItemId, currentItemName, currentItemVersion, currentItemUninstallString,
currentItemInstallLocation, currentItemInstallSource);
}
else
{
Console.WriteLine("{0}, {1}, {2}", currentItemId, currentItemName, currentItemVersion);
}
}
}
sk.Close();
}
Console.WriteLine("Total NonMsi Hits = {0}", totalNonMsiHits);
Console.WriteLine("----------- end SearchProducts NonMsi -----------");
}
finally
{
rk.Close();
}
rk = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\UnInstall");
try
{
Console.WriteLine("---------- begin SearchProducts NonMsiCu ----------");
int totalNonMsiHits = 0;
foreach (string subkey in rk.GetSubKeyNames())
//for (int i = 0; i < rk.SubKeyCount; i++)
{
//string subkey = rk.GetSubKeyNames().GetValue(i);
RegistryKey sk = rk.OpenSubKey(subkey);
if ((sk.GetValue("WindowsInstaller") != null && Convert.ToInt32(sk.GetValue("WindowsInstaller", 1)) == 0) ||
(sk.GetValue("WindowsInstaller") == null && sk.GetValue("DisplayName") != null &&
sk.GetValue("ParentKeyName") == null && RegExKb.Match(sk.GetValue("", "").ToString()).Success == false))
{
string currentItemId = /* sk.Name */ subkey;
string currentItemName = Convert.ToString(sk.GetValue("DisplayName"));
string currentItemInstallSource = Convert.ToString(sk.GetValue("InstallSource"));
if (currentItemInstallSource.Length == 0) currentItemInstallSource = " "; // "<value not found>";
string currentItemVersion = Convert.ToString(sk.GetValue("DisplayVersion"));
if (currentItemVersion.Length == 0) currentItemVersion = " "; // "<value not found>";
if ((searchType == SearchType.Name && Regex.Match(currentItemId, searchText, RegexOptions.IgnoreCase).Success == true) ||
(searchType == SearchType.Source && Regex.Match(currentItemInstallSource, searchText, RegexOptions.IgnoreCase).Success == true) ||
(searchType == SearchType.Version && Regex.Match(currentItemVersion, searchText, RegexOptions.IgnoreCase).Success == true))
{
totalNonMsiHits++;
if (verbose)
{
string currentItemUninstallString = Convert.ToString(sk.GetValue("UninstallString"));
if (currentItemUninstallString.Length == 0) currentItemUninstallString = " "; // "<value not found>";
string currentItemInstallLocation = Convert.ToString(sk.GetValue("InstallLocation"));
if (currentItemInstallLocation.Length == 0) currentItemInstallLocation = " "; // "<value not found>";
string format = "{0}, {1}, {2},\n{3}, {4}, {5}";
if (verboseSingleLine) format = "{0}, {1}, {2}, {3}, {4}, {5}";
Console.WriteLine(format, currentItemId, currentItemName, currentItemVersion, currentItemUninstallString,
currentItemInstallLocation, currentItemInstallSource);
}
else
{
Console.WriteLine("{0}, {1}, {2}", currentItemId, currentItemName, currentItemVersion);
}
}
}
sk.Close();
}
Console.WriteLine("Total NonMsiCu Hits = {0}", totalNonMsiHits);
Console.WriteLine("----------- end SearchProducts NonMsiCu -----------");
}
finally
{
rk.Close();
}
if (false == Environment.GetEnvironmentVariable("Processor_Architecture").Equals("x86"))
{
rk = Registry.LocalMachine.OpenSubKey("Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\UnInstall");
try
{
Console.WriteLine("---------- begin SearchProducts NonMsiX86 ----------");
int totalNonMsiX86Hits = 0;
foreach (string subkey in rk.GetSubKeyNames())
//for (int i = 0; i < rk.SubKeyCount; i++)
{
//string subkey = rk.GetSubKeyNames().GetValue(i);
RegistryKey sk = rk.OpenSubKey(subkey);
if ((sk.GetValue("WindowsInstaller") != null && Convert.ToInt32(sk.GetValue("WindowsInstaller", 1)) == 0) ||
(sk.GetValue("WindowsInstaller") == null && sk.GetValue("DisplayName") != null &&
sk.GetValue("ParentKeyName") == null && RegExKb.Match(sk.GetValue("", "").ToString()).Success == false))
{
string currentItemId = /* sk.Name */ subkey;
string currentItemName = Convert.ToString(sk.GetValue("DisplayName"));
string currentItemInstallSource = Convert.ToString(sk.GetValue("InstallSource"));
if (currentItemInstallSource.Length == 0) currentItemInstallSource = " "; // "<value not found>";
string currentItemVersion = Convert.ToString(sk.GetValue("DisplayVersion"));
if (currentItemVersion.Length == 0) currentItemVersion = " "; // "<value not found>";
if ((searchType == SearchType.Name && Regex.Match(currentItemId, searchText, RegexOptions.IgnoreCase).Success == true) ||
(searchType == SearchType.Source && Regex.Match(currentItemInstallSource, searchText, RegexOptions.IgnoreCase).Success == true) ||
(searchType == SearchType.Version && Regex.Match(currentItemVersion, searchText, RegexOptions.IgnoreCase).Success == true))
{
totalNonMsiX86Hits++;
if (verbose)
{
string currentItemUninstallString = Convert.ToString(sk.GetValue("UninstallString"));
if (currentItemUninstallString.Length == 0) currentItemUninstallString = " "; // "<value not found>";
string currentItemInstallLocation = Convert.ToString(sk.GetValue("InstallLocation"));
if (currentItemInstallLocation.Length == 0) currentItemInstallLocation = " "; // "<value not found>";
string format = "{0}, {1}, {2},\n{3}, {4}, {5}";
if (verboseSingleLine) format = "{0}, {1}, {2}, {3}, {4}, {5}";
Console.WriteLine(format, currentItemId, currentItemName, currentItemVersion, currentItemUninstallString,
currentItemInstallLocation, currentItemInstallSource);
}
else
{
Console.WriteLine("{0}, {1}, {2}", currentItemId, currentItemName, currentItemVersion);
}
}
}
sk.Close();
}
Console.WriteLine("Total NonMsiX86 Hits = {0}", totalNonMsiX86Hits);
Console.WriteLine("----------- end SearchProducts NonMsiX86 -----------");
}
finally
{
rk.Close();
}
//rk = Registry.CurrentUser.OpenSubKey("Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\UnInstall");
//try
//{
// Console.WriteLine("---------- begin SearchProducts NonMsiCuX86 ----------");
// int totalNonMsiX86Hits = 0;
// foreach (string subkey in rk.GetSubKeyNames())
// //for (int i = 0; i < rk.SubKeyCount; i++)
// {
// //string subkey = rk.GetSubKeyNames().GetValue(i);
// RegistryKey sk = rk.OpenSubKey(subkey);
// if ((sk.GetValue("WindowsInstaller") != null && Convert.ToInt32(sk.GetValue("WindowsInstaller", 1)) == 0) ||
// (sk.GetValue("WindowsInstaller") == null && sk.GetValue("DisplayName") != null &&
// sk.GetValue("ParentKeyName") == null && RegExKb.Match(sk.GetValue("", "").ToString()).Success == false))
// {
// string currentItemId = /* sk.Name */ subkey;
// string currentItemName = Convert.ToString(sk.GetValue("DisplayName"));
// string currentItemInstallSource = Convert.ToString(sk.GetValue("InstallSource"));
// if (currentItemInstallSource.Length == 0) currentItemInstallSource = " "; // "<value not found>";
// string currentItemVersion = Convert.ToString(sk.GetValue("DisplayVersion"));
// if (currentItemVersion.Length == 0) currentItemVersion = " "; // "<value not found>";
// if ((searchType == SearchType.Name && Regex.Match(currentItemId, searchText, RegexOptions.IgnoreCase).Success == true) ||
// (searchType == SearchType.Source && Regex.Match(currentItemInstallSource, searchText, RegexOptions.IgnoreCase).Success == true) ||
// (searchType == SearchType.Version && Regex.Match(currentItemVersion, searchText, RegexOptions.IgnoreCase).Success == true))
// {
// totalNonMsiX86Hits++;
// if (verbose)
// {
// string currentItemUninstallString = Convert.ToString(sk.GetValue("UninstallString"));
// if (currentItemUninstallString.Length == 0) currentItemUninstallString = " "; // "<value not found>";
// string currentItemInstallLocation = Convert.ToString(sk.GetValue("InstallLocation"));
// if (currentItemInstallLocation.Length == 0) currentItemInstallLocation = " "; // "<value not found>";
// string format = "{0}, {1}, {2},\n{3}, {4}, {5}";
// if (verboseSingleLine) format = "{0}, {1}, {2}, {3}, {4}, {5}";
// Console.WriteLine(format, currentItemId, currentItemName, currentItemVersion, currentItemUninstallString,
// currentItemInstallLocation, currentItemInstallSource);
// }
// else
// {
// Console.WriteLine("{0}, {1}, {2}", currentItemId, currentItemName, currentItemVersion);
// }
// }
// }
// sk.Close();
// }
// Console.WriteLine("Total NonMsiCuX86 Hits = {0}", totalNonMsiX86Hits);
// Console.WriteLine("----------- end SearchProducts NonMsiCuX86 -----------");
//}
//finally
//{
// rk.Close();
//}
}
}