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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
|
//
// This file defines the default contents of the SOFTWARE hive in the Windows NT
// registry.
//
//
// predefined ACEs for creating ACLs
// R == Read (values & subkeys)
// W == Write (values & subkeys, create keys)
// D == Delete keys
// Full == All access
//
#define AdminFull 1
#define AdminR 2
#define AdminRW 3
#define AdminRWD 4
#define CreatorFull 5
#define CreatorRW 6
#define WorldFull 7
#define WorldR 8
#define WorldRW 9
#define WorldRWD 10
#define PowerFull 11
#define PowerRW 12
#define PowerRWD 13
#define SystemOpFull 14
#define SystemOpRW 15
#define SystemOpRWD 16
#define SystemFull 17
#define SystemRW 18
#define SystemR 19
#define AdminRWX 20
#define InteractiveFull 21
#define InteractiveR 22
#define InteractiveRW 23
#define InteractiveRWD 24
//
// Here is a simple macro to get around things like '#8' being recognized
// as preprocessor directives. Please do not remove.
//
#define AVOID_PREPROCESSOR(x) x
SOFTWARE [WorldRWD AdminFull SystemFull CreatorFull]
Program Groups [WorldR AdminFull SystemFull SystemOpRWD PowerRWD CreatorFull]
Classes [WorldR InteractiveRWD AdminFull SystemFull CreatorFull]
DirectDraw
= DirectDraw Object
CLSID
= {D7B70EE0-4340-11CF-B063-0020AFC2CD35}
DirectDrawClipper
= DirectDraw Clipper Object
CLSID
= {593817A0-7DB3-11CF-A2DE-00AA00B93356}
DirectSound
= DirectSound Object
CLSID
= {47D4D946-62E8-11cf-93BC-444553540000}
AppID
{00020C01-0000-0000-C000-000000000046}
= Sound Recorder
{00022601-0000-0000-C000-000000000046}
= Media Player
{D3E34B21-9D75-101A-8C3D-00AA001A1652}
= Paintbrush
.pbk
= pbkfile
.rnk
= rnkfile
pbkfile
= Dial-Up Phonebook
CLSID
= {a4d92742-67cd-11cf-96f2-00aa00a11dd9}
DefaultIcon
= REG_EXPAND_SZ %SystemRoot%\system32\rasshell.dll,0
shell
Open
command
= REG_EXPAND_SZ %SystemRoot%\system32\rasphone.exe -f "%1"
rnkfile
= Dial-Up Shortcut
CLSID
= {a4d92741-67cd-11cf-96f2-00aa00a11dd9}
DefaultIcon
= REG_EXPAND_SZ %SystemRoot%\system32\rasshell.dll,1
shell
Dial
= &Dial
command
= REG_EXPAND_SZ %SystemRoot%\system32\rasphone.exe -lt "%1"
Hang Up
= Hang &up
command
= REG_EXPAND_SZ %SystemRoot%\system32\rasphone.exe -lh "%1"
Edit entry and modem settings
= &Edit entry and modem settings
command
= REG_EXPAND_SZ %SystemRoot%\system32\rasphone.exe -v -le "%1"
shellex
PropertySheetHandlers
{a4d92741-67cd-11cf-96f2-00aa00a11dd9}
#ifdef _CAIRO_
.VBS
= VBScript
VBScript
= Visual Basic Script Application
VBScript
CLSID
= {D2A2F5F3-EBA6-11CD-AF37-02608CA1D0B7}
shell
open
= &Run
command
= REG_EXPAND_SZ %SystemRoot%\system32\VBSCRIPT.EXE %1
edit
= &Edit
command
= REG_EXPAND_SZ %SystemRoot%\system32\VBSCRIPT.EXE /e %1
#endif
Directory
= File Folder
shellex
CopyHookHandlers
Sharing
= {40dd6e20-7c17-11ce-a804-00aa003ca9f6}
Folder
shellex
PropertySheetHandlers
Sharing
= {f81e9010-6ea4-11ce-a7ff-00aa003ca9f6}
ContextMenuHandlers
Sharing
= {f81e9010-6ea4-11ce-a7ff-00aa003ca9f6}
Network
SharingHandler
= ntshrui.dll
Type
2
= Microsoft Windows Network shell extensions
shellex
PropertySheetHandlers
Microsoft Windows Network objects
= {59be4990-f85c-11ce-aff7-00aa003ca9f6}
#ifdef _CAIRO_
Folder
shellex
DragDropHandlers
DFS Administration
= {841d6ffb-c2b9-11ce-afe2-00aa003ca9f6}
PropertySheetHandlers
DFS Administration
= {d456e010-be15-11ce-a81a-00aa003ca9f6}
ContextMenuHandlers
DFS Administration
= {d456e010-be15-11ce-a81a-00aa003ca9f6}
#endif // _CAIRO_
Package
= Package
CLSID
= {0003000C-0000-0000-C000-000000000046}
protocol
StdFileEditing
server
= packager.exe
verb
1
= &Edit Package
0
= &Activate Contents
regedit
= Registration Entries
shell
open
command
= regedit.exe %1
.reg
= regedit
SoundRec
= Sound
CLSID
= {00020C01-0000-0000-C000-000000000046}
protocol
StdFileEditing
server
= sndrec32.exe
verb
0
= &Play
1
= &Edit
2
= &Open
StdExecute
server
= sndrec32.exe
shell
open
command
= sndrec32.exe %1
AVIFile
= Video Clip
CLSID
= {00022602-0000-0000-C000-000000000046}
Compressors
auds
= {0002000F-0000-0000-C000-000000000046}
vids
= {00020001-0000-0000-C000-000000000046}
DefaultIcon
= mplay32.exe,3
Extensions
AU
= {00020003-0000-0000-C000-000000000046}
AVI
= {00020000-0000-0000-C000-000000000046}
WAV
= {00020003-0000-0000-C000-000000000046}
RIFFHandlers
AVI
= {00020000-0000-0000-C000-000000000046}
WAVE
= {00020003-0000-0000-C000-000000000046}
Insertable
=
protocol
StdFileEditing
verb
0
= &Play
1
= &Edit
2
= &Open
PackageObjects
=
server
= mplay32.exe /avi
Handler
= mciole16.dll
Handler32
= mciole32.dll
StdExecute
server
= mplay32.exe /avi
shell
open
command
= mplay32.exe /play /close "%L"
MIDFile
= MIDI Sequence
CLSID
= {00022603-0000-0000-C000-000000000046}
DefaultIcon
= mplay32.exe,5
Insertable
=
protocol
StdFileEditing
verb
0
= &Play
1
= &Edit
2
= &Open
PackageObjects
=
server
= mplay32.exe /mid
Handler
= mciole16.dll
Handler32
= mciole32.dll
StdExecute
server
= mplay32.exe /mid
shell
open
command
= mplay32.exe /play /close "%L"
MPlayer
= Media Clip
CLSID
= {00022601-0000-0000-C000-000000000046}
DefaultIcon
= mplay32.exe,1
Insertable
=
protocol
StdFileEditing
verb
0
= &Play
1
= &Edit
2
= &Open
PackageObjects
=
server
= mplay32.exe
Handler
= mciole16.dll
Handler32
= mciole32.dll
StdExecute
server
= mplay32.exe
shell
open
command
= mplay32.exe /play /close "%L"
.rmi
= MPlayer
.mid
= MIDFile
.avi
= AVIFile
.mmm
= MPlayer
.wav
= SoundRec
wrifile
= Write Document
shell
open
command
= write.exe %1
print
command
= write.exe /p %1
.wri
= wrifile
txtfile
= Text File
shell
open
command
= notepad.exe %1
print
command
= notepad.exe /p %1
.txt
= txtfile
.wtx
= txtfile
.scp
= txtfile
.ini
= inifile
.job
= JobObject
JobObject
= Scheduler Job Object
CLSID
= {148BD520-A2AB-11CE-B11F-00AA00530503}
.que
= QueueObject
QueueObject
= Scheduler Queue Object
CLSID
= {255b3f60-829e-11cf-8d8b-00aa0060f5bf}
.log
= txtfile
helpfile [WorldR AdminFull SystemFull CreatorFull]
= Help File
shell
open
command
= winhlp32.exe %1
.hlp [WorldR AdminFull SystemFull CreatorFull]
= helpfile
StaticMetafile
= Picture (Metafile)
StaticEnhancedMetafile
= Picture (Enhanced Metafile)
StaticDib
= Picture (Device Independent Bitmap)
file
CLSID
= {00000303-0000-0000-C000-000000000046}
fonfile
shell
open
command
= REG_EXPAND_SZ %SystemRoot%\System32\fontview.exe %1
print
command
= REG_EXPAND_SZ %SystemRoot%\System32\fontview.exe /p %1
ttffile
shell
open
command
= REG_EXPAND_SZ %SystemRoot%\System32\fontview.exe %1
print
command
= REG_EXPAND_SZ %SystemRoot%\System32\fontview.exe /p %1
pfmfile
shell
open
command
= REG_EXPAND_SZ %SystemRoot%\System32\fontview.exe %1
print
command
= REG_EXPAND_SZ %SystemRoot%\System32\fontview.exe /p %1
.pma
= PerfFile
.pmc
= PerfFile
.pml
= PerfFile
.pmr
= PerfFile
.pmw
= PerfFile
PerfFile
= Performance Monitor File
shell
open
command
= REG_EXPAND_SZ %SystemRoot%\system32\perfmon.exe %1
CLSID
CLSID
= {0000031A-0000-0000-C000-000000000046}
{a4d92740-67cd-11cf-96f2-00aa00a11dd9}
= Dial-Up Networking
InProcServer32
= rasshell.dll
ThreadingModel = Apartment
DefaultIcon
= REG_EXPAND_SZ %SystemRoot%\system32\rasshell.dll,0
shell
Open
command
= REG_EXPAND_SZ %SystemRoot%\system32\rasphone.exe
{a4d92741-67cd-11cf-96f2-00aa00a11dd9}
= Dial-Up Shortcut
InprocServer32
= rasshell.dll
ThreadingModel = Apartment
AuxUserType
2
= Dial-Up Shortcut
3
= Dial-Up Networking
{a4d92742-67cd-11cf-96f2-00aa00a11dd9}
= Dial-Up Phonebook
AuxUserType
2
= Dial-Up Phonebook
3
= Dial-Up Networking
{00000300-0000-0000-C000-000000000046}
= StdOleLink
InprocServer32
= ole32.dll
{00000303-0000-0000-C000-000000000046}
= FileMoniker
InprocServer32
= ole32.dll
ProgID
= file
{00000304-0000-0000-C000-000000000046}
= ItemMoniker
InprocServer32
= ole32.dll
{00000305-0000-0000-C000-000000000046}
= AntiMoniker
InprocServer32
= ole32.dll
{00000306-0000-0000-C000-000000000046}
= PointerMoniker
InprocServer32
= ole32.dll
{00000308-0000-0000-C000-000000000046}
= PackagerMoniker
InprocServer32
= ole32.dll
{00000309-0000-0000-C000-000000000046}
= CompositeMoniker
InprocServer32
= ole32.dll
{0000030B-0000-0000-C000-000000000046}
= DfMarshal
InprocServer32
= ole32.dll
{00000315-0000-0000-C000-000000000046}
= Picture (Metafile)
ProgID
= StaticMetafile
InprocServer32
= ole32.dll
DataFormats
DefaultFile
= 3
GetSet
0
= 3,1,32,3
MiscStatus
= 536
AuxUserType
2
= Picture
Conversion
Readable
Main
= 3,MSDraw
{00000316-0000-0000-C000-000000000046}
= Picture (Device Independent Bitmap)
ProgID
= StaticDib
InprocServer32
= ole32.dll
DataFormats
DefaultFile
= 8
GetSet
0
= 8,1,1,3
MiscStatus
= 536
AuxUserType
2
= Picture
Conversion
Readable
Main
= 8,PBrush
{00000319-0000-0000-C000-000000000046}
= Picture (Enhanced Metafile)
ProgID
= StaticEnhancedMetafile
InprocServer32
= ole32.dll
DataFormats
DefaultFile
= 14
GetSet
0
= 14,1,64,3
MiscStatus
= 536
AuxUserType
2
= Picture
Conversion
Readable
Main
=
{0000031A-0000-0000-C000-000000000046}
= ClassMoniker
InprocServer32
= ole32.dll
ProgID
= clsid
{00000320-0000-0000-C000-000000000046}
= oleprx32_PSFactory
InprocServer32
= ole32.dll
{00020000-0000-0000-C000-000000000046}
= Microsoft AVI Files
InprocServer
= avifile.dll
InprocServer32
= avifil32.dll
ThreadingModel = Both
AVIFile
= 7
{00020001-0000-0000-C000-000000000046}
= AVI Compressed Stream
InprocServer
= avifile.dll
InprocServer32
= avifil32.dll
ThreadingModel = Both
{00020003-0000-0000-C000-000000000046}
= Microsoft Wave File
InprocServer32
= avifil32.dll
ThreadingModel = Both
AVIFile
= 7
{0002000D-0000-0000-C000-000000000046}
= IAVIStream & IAVIFile Proxy
InprocServer
= avifile.dll
InprocServer32
= avifil32.dll
ThreadingModel = Both
{0002000F-0000-0000-C000-000000000046}
= ACM Compressed Audio Stream
InprocServer
= avifile.dll
InprocServer32
= avifil32.dll
ThreadingModel = Both
{00020420-0000-0000-C000-000000000046}
= PSDispatch
InprocServer
= ole2disp.dll
InprocServer32
= oleaut32.dll
ThreadingModel = Apartment
{00020421-0000-0000-C000-000000000046}
= PSEnumVARIANT
InprocServer
= ole2disp.dll
InprocServer32
= oleaut32.dll
ThreadingModel = Apartment
{00020422-0000-0000-C000-000000000046}
= PSTypeInfo
InprocServer
= ole2disp.dll
InprocServer32
= oleaut32.dll
ThreadingModel = Apartment
{00020423-0000-0000-C000-000000000046}
= PSTypeLib
InprocServer
= ole2disp.dll
InprocServer32
= oleaut32.dll
ThreadingModel = Apartment
{00020424-0000-0000-C000-000000000046}
= PSOAInterface
InprocServer
= ole2disp.dll
InprocServer32
= oleaut32.dll
ThreadingModel = Apartment
{00020425-0000-0000-C000-000000000046}
= PSTypeComp
InprocServer
= ole2disp.dll
InprocServer32
= oleaut32.dll
ThreadingModel = Apartment
{00020C01-0000-0000-C000-000000000046}
= Sound (OLE2)
AppID = {00020C01-0000-0000-C000-000000000046}
Insertable
=
InprocHandler32
= ole32.dll
LocalServer32
= sndrec32.exe
LocalServer
= sndrec32.exe
verb
0
= &Play,0,3
1
= &Edit,0,2
2
= &Open,0,2
AuxUserType
3
= Microsoft Sound Recorder Server
2
= Sound Recorder Document
DataFormats
DefaultFile
= 12
DefaultSet
= SoundRec
GetSet
1
= 8,-1,1,3
0
= 3,1,32,1
MiscStatus
= 0
ProgID
= SoundRec
{00022601-0000-0000-C000-000000000046}
= Media Clip
AppID = {00022601-0000-0000-C000-000000000046}
DefaultIcon
= mplay32.exe,1
Insertable
=
InprocHandler32
= ole32.dll
LocalServer
= mplay32.exe
LocalServer32
= mplay32.exe
verb
1
= &Edit,0,2
0
= &Play,0,3
2
= &Open,0,2
AuxUserType
2
= Media Clip
DataFormats
DefaultSet
= MPlayer
GetSet
2
= 8,1,1,1
1
= 3,1,32,1
0
= Embed Source,1,8,1
MiscStatus
= 0
ProgID
= MPlayer
{00022602-0000-0000-C000-000000000046}
= Video Clip
AppID = {00022601-0000-0000-C000-000000000046}
DefaultIcon
= mplay32.exe,3
Insertable
=
InprocHandler32
= ole32.dll
LocalServer
= mplay32.exe /avi
LocalServer32
= mplay32.exe /avi
verb
1
= &Edit,0,2
0
= &Play,0,3
2
= &Open,0,2
AuxUserType
2
= Video Clip
DataFormats
DefaultSet
= AVIFile
GetSet
2
= 8,1,1,1
1
= 3,1,32,1
0
= Embed Source,1,8,1
MiscStatus
= 0
ProgID
= AVIFile
{00022603-0000-0000-C000-000000000046}
= MIDI Sequence
AppID = {00022601-0000-0000-C000-000000000046}
DefaultIcon
= mplay32.exe,5
Insertable
=
InprocHandler32
= ole32.dll
LocalServer
= mplay32.exe /mid
LocalServer32
= mplay32.exe /mid
verb
1
= &Edit,0,2
0
= &Play,0,3
2
= &Open,0,2
AuxUserType
2
= MIDI Sequence
DataFormats
DefaultSet
= MIDFile
GetSet
2
= 8,1,1,1
1
= 3,1,32,1
0
= Embed Source,1,8,1
MiscStatus
= 0
ProgID
= MIDFile
{0003000C-0000-0000-C000-000000000046}
= Package
Ole1Class
= Package
ProgID
= Package
{0003000D-0000-0000-C000-000000000046}
= Sound
Insertable
=
TreatAs
= {00020C01-0000-0000-C000-000000000046}
ProgID
= SoundRec
Ole1Class
= SoundRec
{0003000E-0000-0000-C000-000000000046}
= Media Clip
ProgID
= MPlayer
Ole1Class
= MPlayer
Insertable
=
TreatAs
= {00022601-0000-0000-C000-000000000046}
{0003000a-0000-0000-C000-000000000046}
= Paintbrush Picture
ProgID
= PBrush
Ole1Class
= PBrush
MiscStatus
= 512
Conversion
Readable
Main
= 8
TreatAs
= {D3E34B21-9D75-101A-8C3D-00AA001A1652}
{00030007-0000-0000-C000-000000000046}
= Microsoft Drawing
ProgID
= MSDraw
Ole1Class
= MSDraw
MiscStatus
= 512
{1F2E5C40-9550-11CE-99D2-00AA006E086C}
= Security Shell Extension
InProcServer32
= rshx32.dll
ThreadingModel = Apartment
{47D4D946-62E8-11cf-93BC-444553540000}
= DirectSound Object
InprocServer32
= dsound.dll
{593817A0-7DB3-11CF-A2DE-00AA00B93356}
= DirectDraw Clipper Object
InprocServer32
= ddraw.dll
{BD84B380-8CA2-1069-AB1D-08000948F534}
= Fonts
InProcServer32
= fontext.dll
ThreadingModel = Apartment
DefaultIcon
= REG_EXPAND_SZ %SystemRoot%\System32\fontext.dll,-101
Hierarchical
= 0
{BD84B381-8CA2-1069-AB1D-08000948F534}
= PANOSE Core Mapper
InProcServer32
= panmap.dll
ThreadingModel = Apartment
#ifdef _CAIRO_
{D2A2F5F3-EBA6-11CD-AF37-02608CA1D0B7}
= VB Script Application
DefaultIcon
= REG_EXPAND_SZ %SystemRoot%\system32\VBSCRIPT.EXE,0
LocalServer32
= REG_EXPAND_SZ %SystemRoot%\system32\VBSCRIPT.EXE /Automation
ProgId
= VBScript
MiscStatus
= 0
AuxUserType
2
= VBScript
3
= Visual Basic Script
verb
0
= &Run,0,2
1
= &Edit,0,2
InprocHandler32
= REG_EXPAND_SZ %SystemRoot%\system32\ole32.dll
#endif
{f81e9010-6ea4-11ce-a7ff-00aa003ca9f6}
= Shell extensions for sharing
InProcServer32
= ntshrui.dll
ThreadingModel = Apartment
{40dd6e20-7c17-11ce-a804-00aa003ca9f6}
= Shell extensions for sharing
InProcServer32
= ntshrui.dll
ThreadingModel = Apartment
{59be4990-f85c-11ce-aff7-00aa003ca9f6}
= Shell extensions for Microsoft Windows Network objects
InProcServer32
= ntlanui2.dll
ThreadingModel = Apartment
{41E300E0-78B6-11ce-849B-444553540000}
= PlusPack CPL Extension
InProcServer32
= plustab.dll
ThreadingModel = Apartment
{D3E34B21-9D75-101A-8C3D-00AA001A1652}
= Bitmap Image
AppID = {D3E34B21-9D75-101A-8C3D-00AA001A1652}
AuxUserType
2
= Bitmap Image
3
= Paint
DataFormats
PriorityCacheFormats
AVOID_PREPROCESSOR(#8) =
DefaultIcon
= mspaint.exe, 1
InProcHandler32
= ole32.dll
Insertable
=
LocalServer32
= mspaint.exe
MiscStatus
= 32
ProgID
= Paint.Picture
PersistentHandler
= {098F2470-BAE0-11CD-B579-08002B30BFEB}
Verb
0
= &Edit,0,2
1
= &Open,0,2
{1B53F360-9A1B-1069-930C-00AA0030EBC8}
= HyperTerminal Page Ext
InProcServer32
= hypertrm.dll
{88895560-9AA2-1069-930E-00AA0030EBC8}
= HyperTerminal Icon Ext
InProcServer32
= hticons.dll
#ifdef _CAIRO_
{1cac8232-7d6a-101a-ab87-08002b2b79e3}
shellex
PropertySheetHandlers
= DomUI
DomUI
= {9cfafae0-862c-11ce-bb70-00006b829536}
{9cfafae0-862c-11ce-bb70-00006b829536}
= DS domain object extension handler
InProcServer32
= dsui.dll
ThreadingModel = Apartment
{bc11fc28-821b-101a-91fb-00dd01108f15}
shellex
PropertySheetHandlers
= MachUI
MachUI
= {18489e00-8ba5-11ce-bb71-00006b829536}
{ed0e5a2a-d569-101a-8e59-08002b305dd8}
shellex
PropertySheetHandlers
= ServUI
ServUI
= {26af2d80-8c75-11ce-bb71-00006b829536}
{1fc55c34-80c8-101b-8b11-00000b65c787}
shellex
PropertySheetHandlers
= SiteUI
SiteUI
= {28a9cec0-8ca6-11ce-bb71-00006b829536}
{ed0e5a8c-d569-101a-8e59-08002b305dd8}
shellex
PropertySheetHandlers
= SROUI
SROUI
= {20a4ea40-8cae-11ce-bb71-00006b829536}
{18489e00-8ba5-11ce-bb71-00006b829536}
= DS machine object extension handler
InProcServer32
= dsui.dll
ThreadingModel = Apartment
{26af2d80-8c75-11ce-bb71-00006b829536}
= DS service object extension handler
InProcServer32
= dsui.dll
ThreadingModel = Apartment
{28a9cec0-8ca6-11ce-bb71-00006b829536}
= DS Site object extension handler
InProcServer32
= dsui.dll
ThreadingModel = Apartment
{20a4ea40-8cae-11ce-bb71-00006b829536}
= DS Service Representative object extension handler
InProcServer32
= dsui.dll
ThreadingModel = Apartment
{d456e010-be15-11ce-a81a-00aa003ca9f6}
= DFS Administration
InProcServer32
= dfsui.dll
ThreadingModel = Apartment
{841d6ffb-c2b9-11ce-afe2-00aa003ca9f6}
= DFS Administration
InProcServer32
= dfsui.dll
ThreadingModel = Apartment
#endif
{D7B70EE0-4340-11CF-B063-0020AFC2CD35}
= DirectDraw Object
InprocServer32
= ddraw.dll
{DF0B3D60-548F-101B-8E65-08002B2BD119}
= PSSupportErrorInfo
InprocServer
= ole2disp.dll
InprocServer32
= oleaut32.dll
Interface
{00000000-0000-0000-C000-000000000046}
= IUnknown
BaseInterface
=
NumMethods
= 3
{00000001-0000-0000-C000-000000000046}
= IClassFactory
NumMethods
= 5
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000002-0000-0000-C000-000000000046}
= IMalloc
NumMethods
= 9
{00000003-0000-0000-C000-000000000046}
= IMarshal
NumMethods
= 9
{00000004-0000-0000-C000-000000000046}
= IRpcChannel
NumMethods
= 7
{00000005-0000-0000-C000-000000000046}
= IRpcStub
NumMethods
= 8
{00000007-0000-0000-C000-000000000046}
= IRpcProxy
NumMethods
= 5
{00000009-0000-0000-C000-000000000046}
= IPSFactory
NumMethods
= 5
{0000000a-0000-0000-C000-000000000046}
= ILockBytes
NumMethods
= 10
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000000b-0000-0000-C000-000000000046}
= IStorage
NumMethods
= 18
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000000c-0000-0000-C000-000000000046}
= IStream
NumMethods
= 14
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000000d-0000-0000-C000-000000000046}
= IEnumSTATSTG
NumMethods
= 7
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000000e-0000-0000-C000-000000000046}
= IBindCtx
NumMethods
= 13
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000000f-0000-0000-C000-000000000046}
= IMoniker
BaseInterface
= {00000109-0000-0000-C000-000000000046}
NumMethods
= 23
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000010-0000-0000-C000-000000000046}
= IRunningObjectTable
NumMethods
= 10
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000012-0000-0000-C000-000000000046}
= IRootStorage
NumMethods
= 4
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000016-0000-0000-C000-000000000046}
= IMessageFilter
NumMethods
= 6
{00000018-0000-0000-C000-000000000046}
= IStdMarshalInfo
NumMethods
= 4
{00000019-0000-0000-C000-000000000046}
= IExternalConnection
NumMethods
= 5
{00000100-0000-0000-C000-000000000046}
= IEnumUnknown
NumMethods
= 7
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000101-0000-0000-C000-000000000046}
= IEnumString
NumMethods
= 7
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000102-0000-0000-C000-000000000046}
= IEnumMoniker
NumMethods
= 7
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000103-0000-0000-C000-000000000046}
= IEnumFORMATETC
NumMethods
= 7
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000104-0000-0000-C000-000000000046}
= IEnumOLEVERB
NumMethods
= 7
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000105-0000-0000-C000-000000000046}
= IEnumSTATDATA
NumMethods
= 7
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000109-0000-0000-C000-000000000046}
= IPersistStream
BaseInterface
= {0000010C-0000-0000-C000-000000000046}
NumMethods
= 8
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000010a-0000-0000-C000-000000000046}
= IPersistStorage
BaseInterface
= {0000010C-0000-0000-C000-000000000046}
NumMethods
= 10
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000010b-0000-0000-C000-000000000046}
= IPersistFile
BaseInterface
= {0000010c-0000-0000-C000-000000000046}
NumMethods
= 9
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000010c-0000-0000-C000-000000000046}
= IPersist
NumMethods
= 4
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000010d-0000-0000-C000-000000000046}
= IViewObject
NumMethods
= 9
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000010e-0000-0000-C000-000000000046}
= IDataObject
NumMethods
= 12
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000010f-0000-0000-C000-000000000046}
= IAdviseSink
NumMethods
= 8
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000110-0000-0000-C000-000000000046}
= IDataAdviseHolder
NumMethods
= 7
{00000111-0000-0000-C000-000000000046}
= IOleAdviseHolder
NumMethods
= 9
{00000112-0000-0000-C000-000000000046}
= IOleObject
NumMethods
= 24
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000113-0000-0000-C000-000000000046}
= IOleInPlaceObject
BaseInterface
= {00000114-0000-0000-C000-000000000046}
NumMethods
= 9
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000114-0000-0000-C000-000000000046}
= IOleWindow
NumMethods
= 5
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000115-0000-0000-C000-000000000046}
= IOleInPlaceUIWindow
BaseInterface
= {00000114-0000-0000-C000-000000000046}
NumMethods
= 9
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000116-0000-0000-C000-000000000046}
= IOleInPlaceFrame
NumMethods
= 15
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000117-0000-0000-C000-000000000046}
= IOleInPlaceActiveObject
BaseInterface
= {00000114-0000-0000-C000-000000000046}
NumMethods
= 10
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000118-0000-0000-C000-000000000046}
= IOleClientSite
NumMethods
= 9
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000119-0000-0000-C000-000000000046}
= IOleInPlaceSite
BaseInterface
= {00000114-0000-0000-C000-000000000046}
NumMethods
= 15
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000011a-0000-0000-C000-000000000046}
= IParseDisplayName
NumMethods
= 4
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000011b-0000-0000-C000-000000000046}
= IOleContainer
BaseInterface
= {0000011a-0000-0000-C000-000000000046}
NumMethods
= 6
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000011c-0000-0000-C000-000000000046}
= IOleItemContainer
BaseInterface
= {0000011b-0000-0000-C000-000000000046}
NumMethods
= 9
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000011d-0000-0000-C000-000000000046}
= IOleLink
NumMethods
= 14
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000011e-0000-0000-C000-000000000046}
= IOleCache
NumMethods
= 8
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000121-0000-0000-C000-000000000046}
= IDropSource
NumMethods
= 5
{00000122-0000-0000-C000-000000000046}
= IDropTarget
NumMethods
= 7
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000124-0000-0000-C000-000000000046}
= IDebugStream
NumMethods
= 19
{00000125-0000-0000-C000-000000000046}
= IAdviseSink2
BaseInterface
= {0000010f-0000-0000-C000-000000000046}
NumMethods
= 9
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000126-0000-0000-C000-000000000046}
= IRunnableObject
NumMethods
= 8
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000127-0000-0000-C000-000000000046}
= IViewObject2
BaseInterface
= {0000010d-0000-0000-C000-000000000046}
NumMethods
= 10
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000128-0000-0000-C000-000000000046}
= IOleCache2
BaseInterface
= {0000011e-0000-0000-C000-000000000046}
NumMethods
= 10
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000129-0000-0000-C000-000000000046}
= IOleCacheControl
NumMethods
= 5
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000012A-0000-0000-C000-000000000046}
= IContinue
NumMethods
= 4
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000131-0000-0000-C000-000000000046}
= IRemUnknown
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000132-0000-0000-C000-000000000046}
= IObjServer
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000133-0000-0000-C000-000000000046}
= IOSCM
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000134-0000-0000-C000-000000000046}
= IRundown
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000135-0000-0000-C000-000000000046}
= IInterfaceFromWindowProp
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000136-0000-0000-C000-000000000046}
= IDSCM
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000138-0000-0000-C000-000000000046}
= IPropertyStorage
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000013A-0000-0000-C000-000000000046}
= IPropertySetStorage
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000139-0000-0000-C000-000000000046}
= IEnumSTATPROPSTG
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{0000013B-0000-0000-C000-000000000046}
= IEnumSTATPROPSETSTG
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000140-0000-0000-C000-000000000046}
= IClassActivator
NumMethods
= 4
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00000141-0000-0000-C000-000000000046}
= IDLLHost
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{00020020-0000-0000-C000-000000000046}
= AVIFile Interface 1.22
ProxyStubClsid
= {0002000d-0000-0000-C000-000000000046}
ProxyStubClsid32
= {0002000d-0000-0000-C000-000000000046}
{00020021-0000-0000-C000-000000000046}
= AVIStream Interface
ProxyStubClsid
= {0002000d-0000-0000-C000-000000000046}
ProxyStubClsid32
= {0002000d-0000-0000-C000-000000000046}
{00020400-0000-0000-C000-000000000046}
= IDispatch
NumMethods
= 7
ProxyStubClsid
= {00020420-0000-0000-C000-000000000046}
ProxyStubClsid32
= {00020420-0000-0000-C000-000000000046}
{00020401-0000-0000-C000-000000000046}
= ITypeInfo
NumMethods
= 22
ProxyStubClsid
= {00020422-0000-0000-C000-000000000046}
ProxyStubClsid32
= {00020422-0000-0000-C000-000000000046}
{00020402-0000-0000-C000-000000000046}
= ITypeLib
NumMethods
= 13
ProxyStubClsid
= {00020423-0000-0000-C000-000000000046}
ProxyStubClsid32
= {00020423-0000-0000-C000-000000000046}
{00020403-0000-0000-C000-000000000046}
= ITypeComp
NumMethods
= 5
ProxyStubClsid
= {00020425-0000-0000-C000-000000000046}
ProxyStubClsid32
= {00020425-0000-0000-C000-000000000046}
{00020404-0000-0000-C000-000000000046}
= IEnumVARIANT
NumMethods
= 7
ProxyStubClsid
= {00020421-0000-0000-C000-000000000046}
ProxyStubClsid32
= {00020421-0000-0000-C000-000000000046}
{00020405-0000-0000-C000-000000000046}
= ICreateTypeInfo
NumMethods
= 26
{00020406-0000-0000-C000-000000000046}
= ICreateTypeLib
NumMethods
= 13
{0C733A30-2A1C-11CE-ADE5-00AA0044773D}
= ISequentialStream
NumMethods
= 5
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{B196B284-BAB4-101A-B69C-00AA00341D07}
= IConnectionPointContainer
NumMethods
= 5
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{B196B285-BAB4-101A-B69C-00AA00341D07}
= IEnumConnectionPoints
NumMethods
= 7
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{B196B286-BAB4-101A-B69C-00AA00341D07}
= IConnectionPoint
NumMethods
= 8
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{B196B287-BAB4-101A-B69C-00AA00341D07}
= IEnumConnections
NumMethods
= 7
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{D2A2F5F2-EBA6-11CD-AF37-02608CA1D0B7}
= _DVBScript
ProxyStubClsid32
= {00020420-0000-0000-C000-000000000046}
NumMethod
= 6
BaseInterface
= {00020400-0000-0000-C000-000000000046}
TypeLib
= {D2A2F5F0-EBA6-11CD-AF37-02608CA1D0B7}
{D5F569D0-593B-101A-B569-08002B2DBF7A}
= IPSFactoryBuffer
NumMethods
= 5
{D5F56A34-593B-101A-B569-08002B2DBF7A}
= IRpcProxyBuffer
NumMethods
= 5
{D5F56AFC-593B-101A-B569-08002B2DBF7A}
= IRpcStubBuffer
NumMethods
= 10
{D5F56B60-593B-101A-B569-08002B2DBF7A}
= IRpcChannelBuffer
NumMethods
= 8
{DF0B3D60-548F-101B-8E65-08002B2BD119}
= ISupportErrorInfo
NumMethods
= 4
ProxyStubClsid
= {DF0B3D60-548F-101B-8E65-08002B2BD119}
ProxyStubClsid32
= {DF0B3D60-548F-101B-8E65-08002B2BD119}
{F4F569D0-593B-101A-B569-08002B2DBF7A}
= IServerHandler
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{F4F569D1-593B-101A-B569-08002B2DBF7A}
= IClientSiteHandler
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{99caf010-415e-11cf-8814-00aa00b569f5}
= IFillLockBytes
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{a9d758a0-4617-11cf-95fc-00aa00680db4}
= IProgressNotify
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{de2eacd0-9c9d-11cf-882a-00aa00b569f5}
= IFIllInfo
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
{4a8df970-8d9a-11cf-8827-00aa00b569f5}
= IDocfileAsyncConnectionPoint
ProxyStubClsid32
= {00000320-0000-0000-C000-000000000046}
TypeLib
#ifdef _CAIRO_
{D2A2F5F0-EBA6-11CD-AF37-02608CA1D0B7}
1.0
= Visual Basic Script Application Type Library
409
win32
= REG_EXPAND_SZ %SystemRoot%\system32\vbs.tlb
FLAGS
= 0
HELPDIR
=
#endif
{00020430-0000-0000-C000-000000000046}
1.0
= OLE Automation
HELPDIR
=
0
win16
= stdole.tlb
win32
= stdole32.tlb
#ifdef _CAIRO_
#include "cairo.ini"
#else
#include "shell.ini"
#endif
Secure [WorldR AdminFull SystemOpFull SystemFull CreatorFull]
Microsoft [WorldRWD AdminFull SystemFull CreatorFull]
Windows [WorldRW AdminFull SystemOpRWD PowerRWD SystemFull CreatorFull]
CurrentVersion
DevicePath = REG_EXPAND_SZ %SystemRoot%\inf
MediaPathUnexpanded = REG_EXPAND_SZ %SystemRoot%\Media
App Paths[WorldRW AdminFull SystemFull CreatorFull]
RunOnce
MigrateMMDrivers = rundll32.exe mmsys.cpl,mmseRunOnce
Controls Folder
Display
shellex
PropertySheetHandlers
PlusPack CPL Extension
= {41E300E0-78B6-11ce-849B-444553540000}
Shell Extensions [WorldR AdminFull SystemOpRWD PowerRWD SystemFull CreatorFull]
Approved
{00022613-0000-0000-C000-000000000046} = Multimedia File Property Sheet
{f81e9010-6ea4-11ce-a7ff-00aa003ca9f6} = Shell extensions for sharing
{40dd6e20-7c17-11ce-a804-00aa003ca9f6} = Shell extensions for sharing
{59be4990-f85c-11ce-aff7-00aa003ca9f6} = Shell extensions for Microsoft Windows Network objects
{764BF0E1-F219-11ce-972D-00AA00A14F56} = Shell extensions for file compression
{41E300E0-78B6-11ce-849B-444553540000} = PlusPack CPL Extension
#ifdef _CAIRO_
{5D6DD548-928D-101A-91FD-00DD01108F15} = ADO Page.
{7DDDB960-608B-11CE-9A31-00AA00403F6D} = Popup Page.
{BB115E20-EC4F-11CD-B872-00AA00403F6D} = Alert Report Page.
{C8C316C0-C154-11CE-BEE6-00AA00403F6D} = Log Object's Configuration Page
{CF216145-F2A4-11ce-BEF2-00AA00403F6D} = Log Object's Context menu
#endif
{85BBD920-42A0-1069-A2E4-08002B30309D} = Briefcase
{3EA48300-8CF6-101B-84FB-666CCB9BCD32} = OLE Docfile Property Page
{1F2E5C40-9550-11CE-99D2-00AA006E086C} = Security Page
{BD84B380-8CA2-1069-AB1D-08000948F534} = Fonts
{56117100-C0CD-101B-81E2-00AA004AE837} = Shell Scrap DataHandler
{59099400-57FF-11CE-BD94-0020AF85B590} = Disk Copy Extension
#ifdef _CAIRO_
{393d0cd0-eac5-11cd-b52c-08002b27bd8d} = User object prop pages
{8c6db6a0-5971-11ce-bb5d-00006b829536} = Group object prop pages
{c8569160-7a72-11ce-bb6b-00006b829536} = OU object prop pages
{9cfafae0-862c-11ce-bb70-00006b829536} = Domain object prop pages
{18489e00-8ba5-11ce-bb71-00006b829536} = Machine object prop pages
{26af2d80-8c75-11ce-bb71-00006b829536} = Service object prop pages
{28a9cec0-8ca6-11ce-bb71-00006b829536} = Site object prop pages
{20a4ea40-8cae-11ce-bb71-00006b829536} = SRO object prop pages
{d456e010-be15-11ce-a81a-00aa003ca9f6} = DFS Administration
{841d6ffb-c2b9-11ce-afe2-00aa003ca9f6} = DFS Administration
#endif
ShellScrap
PriorityCacheFormats
AVOID_PREPROCESSOR(#3) =
Explorer
Desktop
NameSpace
{645FF040-5081-101B-9F08-00AA002F954E}
= Recycle Bin
FindExtensions
ShellFind
= {61E218E0-65D3-101B-9F08-061CEAC3D50D}
MyComputer
NameSpace
Controls
= {21EC2020-3AEA-1069-A2DD-08002B30309D}
Printers
= {2227A280-3AEA-1069-A2DE-08002B30309D}
{a4d92740-67cd-11cf-96f2-00aa00a11dd9}
= Dial-Up Networking
RemoteComputer
NameSpace
{2227A280-3AEA-1069-A2DE-08002B30309D}
= Printers
Shell Folders
User Shell Folders
Common Desktop = REG_EXPAND_SZ "%SystemRoot%\Profiles\All Users\Desktop"
Common Start Menu = REG_EXPAND_SZ "%SystemRoot%\Profiles\All Users\Start Menu"
Common Programs = REG_EXPAND_SZ "%SystemRoot%\Profiles\All Users\Start Menu\Programs"
Common Startup = REG_EXPAND_SZ "%SystemRoot%\Profiles\All Users\Start Menu\Programs\Startup"
Tips
0 = If you don't know how to do something, you can look it up in Help. Just click Start, and then click Help.
1 = The Shut Down command on the Start menu enables you to safely shut down your computer.
2 = To add a program to your Start menu, you can drag the program's icon to the Start button.
3 = You can use your right mouse button to drag files. Try it and see what happens!
4 = You can use long filenames when you save documents. You can even use spaces!
5 = You can click your right mouse button anywhere and see a menu of available commands.
6 = To print a document quickly, drag its icon to a printer icon.
7 = If you see a question mark button in the title bar of a window, you can get Help on each item in the window by clicking it, and then clicking the item.
8 = You can use Windows NT Explorer to see all the files on your computer.
9 = You can solve printer problems by using the Print Troubleshooter in Help.
10 = You can move the taskbar to any edge of your screen by dragging it with your mouse.
11 = You can minimize all open windows at once; just use your right mouse button to click an empty area on the taskbar, and then click Minimize All Windows.
12 = To set your computer's clock, you can double-click the clock on the taskbar.
13 = You can minimize neck strain by positioning your monitor at eye level.
14 = To change the color scheme, use the right mouse button to click the desktop, and then click Properties.
15 = To select more than one file or folder, hold down CTRL while you click each item.
16 = To change your screen saver, use your right mouse button to click the desktop, and then click Properties.
17 = Deleted files and folders are saved in the Recycle Bin until you empty it.
18 = You can use Paint in Accessories to draw pictures and to view bitmap files.
19 = You can switch mouse buttons if you are left-handed. Just double-click the Mouse icon in Control Panel.
20 = To open a document quickly, you can double-click its icon.
21 = To minimize wrist strain when you type, keep your wrists elevated or use a wristpad.
22 = You can try many useful programs by clicking Start, pointing to Programs, and then clicking Accessories.
23 = To start a command prompt window, from which you can start programs, click Start, point to Programs, and then click Command Prompt.
24 = You can copy and paste text between MS-DOS and Windows NT. In the MS-DOS window, click the MS-DOS icon to see a menu, click Edit, and then click Mark. \
Select the text you want to copy and press ENTER to copy the text to the Clipboard. You can then paste the text into your application.
25 = To see how much disk space is free, use your right mouse button to click the icon for the drive, and then click Properties.
26 = Even if you don't shut down your computer at night, you can turn off your monitor to save power.
27 = When a folder is open, you can press BACKSPACE to open a folder one level higher.
28 = When you display files in Details view, you can sort them by clicking column headings. To sort files in reverse order, click the column heading once more.
29 = To draw a selection box around a group of files, click at a corner of the group, and then drag the rectangle to form the box.
30 = The underlined letters in menus indicate a keyboard shortcut method to select the item. Just press ALT and the underlined letter.
31 = You can put a shortcut to a printer on your desktop for easy access to printing functions.
32 = For a bit of diversion, try a game in the Games folder. Click Start, point to Programs, point to Games, and then click a game.
33 = To free disk space, try emptying the Recycle Bin.
34 = You can drag a file's icon into a document, or even drag a shortcut icon into a document or mail message.
35 = You can have programs start automatically when you start Windows NT by dragging their icons to the Startup folder.
36 = If you have a tape drive, you can use Backup to make copies of important files or your entire volume. Click Start, point to Programs, point to Administrative Tools, and then click Backup.
37 = In Windows NT Explorer, you can set options to show or hide the three-letter filename extensions.
38 = Use Quick View to preview a document without opening it by right-clicking a document and then choosing Quick View from the menu that appears.
39 = Use an error-checking tool to periodically check a volume for errors. In Windows NT Explorer, right-click the volume you want to check, click Properties, and then click the Tools tab.
40 = When you print a document, a printer icon appears on the taskbar. Double-click it to see a list of documents waiting to print.
41 = To find out about any button on a toolbar, rest your mouse pointer on the button for a few seconds.
42 = You can use the Run command on the Start menu to open shared folders on another computer.
43 = You can customize Windows NT in many ways. Don't hesitate to experiment!
44 = If you work on a laptop computer away from your computer at the office, you can easily keep documents up-to-date on both machines by using Briefcase.
45 = If your computer is set up to use a network directory service, you can double-click the Network Neighborhood icon on your desktop to see computers in your workgroup.
46 = For security, you can change your password by pressing CTRL+ALT+DEL and clicking Change Password.
47 = You can manage applications that are currently running by pressing CTRL+ALT+DEL and clicking Task Manager.
48 = For security, you can lock your display whenever you leave your computer by pressing CTRL+ALT+DEL and clicking Lock Workstation.
49 = You can create a shortcut to open a document or program that you use frequently directly from the desktop. A shortcut does not change the file's location; \
it just lets you open the file from a more convenient location.
MS-DOS Emulation
Font
Font = Lucida Console
Nls
LocaleMapIDs
= 255,254
00001801 = REG_SZ 0,1
00001401 = REG_SZ *2,3
00001C01 = REG_SZ *250,214
00001001 = REG_SZ 4,5
00000C01 = REG_SZ 6,7
00000436 = REG_SZ 10,11
00001C09 = REG_SZ *10,11
00000409 = REG_SZ 12,13
00001009 = REG_SZ *14,15
00000C0C = REG_SZ 14,15
0000080A = REG_SZ 16,17
00000416 = REG_SZ 18,19
00000C09 = REG_SZ 20,21
00001409 = REG_SZ 22,23
00000C04 = REG_SZ 24,25
00000804 = REG_SZ *24,25
00001004 = REG_SZ *250,240
00000404 = REG_SZ *250,247
00000411 = REG_SZ 26,27
00000412 = REG_SZ 28,29
00000421 = REG_SZ 30,31
0000041E = REG_SZ 32,33
00003C01 = REG_SZ *250,187
00002C01 = REG_SZ *250,195
00003401 = REG_SZ *250,188
00004001 = REG_SZ *250,186
00000401 = REG_SZ *250,182
00003801 = REG_SZ *250,185
0000040D = REG_SZ *250,176
00002001 = REG_SZ *250,184
00002401 = REG_SZ *250,183
00000801 = REG_SZ *250,181
00003001 = REG_SZ *250,177
00002801 = REG_SZ *250,178
0000041F = REG_SZ *38,39
00000429 = REG_SZ *250,192
00000419 = REG_SZ 42,43
00000816 = REG_SZ 44,45
0000042D = REG_SZ 46,47
00000403 = REG_SZ 46,47
00000C0A = REG_SZ *46,47
0000040A = REG_SZ 46,47
0000080C = REG_SZ 250,116
0000140C = REG_SZ *250,118
0000040C = REG_SZ *48,49
0000100C = REG_SZ 250,96
00000410 = REG_SZ *50,51
00000810 = REG_SZ 250,96
00000813 = REG_SZ *250,116
00000413 = REG_SZ *250,114
00000C07 = REG_SZ *250,100
00001407 = REG_SZ *250,120
00001007 = REG_SZ 250,118
00000407 = REG_SZ *52,53
00000807 = REG_SZ *250,96
00000809 = REG_SZ *54,55
00001809 = REG_SZ *113,112
00000408 = REG_SZ 56,57
0000040F = REG_SZ 58,59
00000422 = REG_SZ 60,61
0000041C = REG_SZ *250,110
00000402 = REG_SZ *250,108
0000041A = REG_SZ 62,63
0000040E = REG_SZ *250,104
00000418 = REG_SZ *250,106
00000424 = REG_SZ *250,241
00000405 = REG_SZ *250,98
00000415 = REG_SZ *64,65
0000041B = REG_SZ *250,102
00000423 = REG_SZ *250,124
00000425 = REG_SZ *250,128
00000426 = REG_SZ *250,122
00000427 = REG_SZ *127,126
00000414 = REG_SZ *68,69
00000814 = REG_SZ 68,69
0000041D = REG_SZ 70,71
0000040B = REG_SZ 72,73
00000406 = REG_SZ 74,75
0000081A = REG_SZ *250,242
0000100A = REG_SZ *250,132
0000140A = REG_SZ *250,137
00002409 = REG_SZ *250,139
00001C0A = REG_SZ *250,142
00002009 = REG_SZ *250,140
0000180A = REG_SZ *250,138
0000200A = REG_SZ *250,163
0000240A = REG_SZ *250,164
0000280A = REG_SZ *250,166
0000300A = REG_SZ *250,165
0000340A = REG_SZ *250,168
00003C0A = REG_SZ *250,169
00002C0A = REG_SZ *250,170
0000380A = REG_SZ *250,171
RenameFiles
Win
= REG_EXPAND_SZ %SystemRoot%\system32
INF = INF,2
Run
SystemTray = SysTray.Exe
RunOnce [WorldR AdminFull SystemOpRWD SystemFull CreatorFull]
Welcome =
InitShell = 1
Setup
OptionalComponents
BaseWinOptions
Telephony [WorldR AdminFull SystemFull CreatorFull SystemOpRWD PowerRWD]
Locations
DisableCallWaiting = REG_DWORD 3
DisableCallWaiting0 = REG_SZ *70,
DisableCallWaiting1 = REG_SZ 70#,
DisableCallWaiting2 = REG_SZ 1170,
Providers
NumProviders = REG_DWORD 2
NextProviderID = REG_DWORD 3
ProviderID0 = REG_DWORD 1
ProviderID1 = REG_DWORD 2
ProviderFilename0 = REG_SZ kmddsp.tsp
ProviderFilename1 = REG_SZ unimdm.tsp
Windows Messaging Subsystem
InstallCmd = rundll32 setupapi,InstallHinfSection MSMAIL 132 msmail.inf
Windows NT [WorldR AdminFull SystemOpRWD PowerRWD SystemFull CreatorFull]
CurrentVersion [WorldR AdminFull SystemOpRWD PowerRWD SystemFull CreatorFull]
ProfileList [WorldRW AdminFull SystemFull CreatorFull]
SoftwareType = System
InstallDate = REG_DWORD 0x00000000
RegisteredOwner = William H. Gates III
RegisteredOrganization = Microsoft Corporation
CurrentBuild = 1.511.1 () (Obsolete data - do not use)
NetworkCards [WorldR AdminFull SystemOpRWD SystemFull CreatorFull]
Time Zones [WorldR AdminFull SystemFull]
GMT
Display = (GMT) Greenwich Mean Time; Dublin, Edinburgh, London, Lisbon
Dlt = British Summer Time
MapID = 0,1
TZI = REG_BINARY 0x2C 0x00000000 0x00000000 0xFFFFFFC4 0x000a0000 0x00050000 0x00000003 0x00000000 0x00030000 0x00050000 0x00000002 0x00000000
Romance Standard Time
Display = (GMT+01:00) Paris, Madrid, Amsterdam
Dlt = Romance Daylight Time
MapID = -1,64
TZI = REG_BINARY 0x2C 0xFFFFFFC4 0x00000000 0xFFFFFFC4 0x000a0000 0x00050000 0x00000003 0x00000000 0x00030000 0x00050000 0x00000002 0x00000000
Central Europe Standard Time
Display = (GMT+01:00) Prague, Warsaw, Budapest
Dlt = Central Europe Daylight Time
MapID = -1,66
TZI = REG_BINARY 0x2C 0xFFFFFFC4 0x00000000 0xFFFFFFC4 0x000a0000 0x00050000 0x00000003 0x00000000 0x00030000 0x00050000 0x00000002 0x00000000
W. Europe Standard Time
Display = (GMT+01:00) Berlin, Stockholm, Rome, Bern, Brussels, Vienna
Dlt = W. Europe Daylight Time
MapID = 2,3
TZI = REG_BINARY 0x2C 0xFFFFFFC4 0x00000000 0xFFFFFFC4 0x000a0000 0x00050000 0x00000003 0x00000000 0x00030000 0x00050000 0x00000002 0x00000000
E. Europe Standard Time
Display = (GMT+02:00) Eastern Europe
Dlt = E. Europe Daylight Time
MapID = 4,5
TZI = REG_BINARY 0x2C 0xFFFFFF88 0x00000000 0xFFFFFFC4 0x00090000 0x00050000 0x00000001 0x00000000 0x00030000 0x00050000 0x00000000 0x00000000
GFT Standard Time
Display = (GMT+02:00) Athens, Helsinki, Istanbul
Dlt = GFT Daylight Time
MapID = -1,67
TZI = REG_BINARY 0x2C 0xFFFFFF88 0x00000000 0xFFFFFFC4 0x00090000 0x00050000 0x00000000 0x00000000 0x00030000 0x00050000 0x00000000 0x00000000
E. South America Standard Time
Display = (GMT-03:00) Brasilia
Dlt = E. South America Daylight Time
MapID = -1,80
TZI = REG_BINARY 0x2C 0x000000B4 0x00000000 0xFFFFFFC4 0x00020000 0x00020000 0x00000002 0x00000000 0x000a0000 0x00030000 0x00000002 0x00000000
Atlantic Standard Time
Display = (GMT-04:00) Atlantic Time (Canada)
Dlt = Atlantic Daylight Time
MapID = 40,41
TZI = REG_BINARY 0x2C 0x000000F0 0x00000000 0xFFFFFFC4 0x000a0000 0x00050000 0x00000002 0x00000000 0x00040000 0x00010000 0x00000002 0x00000000
Eastern Standard Time
Display = (GMT-05:00) Eastern Time (US & Canada)
Dlt = Eastern Daylight Time
MapID = 38,39
TZI = REG_BINARY 0x2C 0x0000012C 0x00000000 0xFFFFFFC4 0x000a0000 0x00050000 0x00000002 0x00000000 0x00040000 0x00010000 0x00000002 0x00000000
Central Standard Time
Display = (GMT-06:00) Central Time (US & Canada)
Dlt = Central Daylight Time
MapID = 36,37
TZI = REG_BINARY 0x2C 0x00000168 0x00000000 0xFFFFFFC4 0x000a0000 0x00050000 0x00000002 0x00000000 0x00040000 0x00010000 0x00000002 0x00000000
Mountain Standard Time
Display = (GMT-07:00) Mountain Time (US & Canada)
Dlt = Mountain Daylight Time
MapID = 34,35
TZI = REG_BINARY 0x2C 0x000001A4 0x00000000 0xFFFFFFC4 0x000a0000 0x00050000 0x00000002 0x00000000 0x00040000 0x00010000 0x00000002 0x00000000
Pacific Standard Time
Display = (GMT-08:00) Pacific Time (US & Canada); Tijuana
Dlt = Pacific Daylight Time
MapID = 32,33
TZI = REG_BINARY 0x2C 0x000001E0 0x00000000 0xFFFFFFC4 0x000a0000 0x00050000 0x00000002 0x00000000 0x00040000 0x00010000 0x00000002 0x00000000
Alaskan Standard Time
Display = (GMT-09:00) Alaska
Dlt = Alaskan Daylight Time
MapID = 30,31
TZI = REG_BINARY 0x2C 0x0000021C 0x00000000 0xFFFFFFC4 0x000a0000 0x00050000 0x00000002 0x00000000 0x00040000 0x00010000 0x00000002 0x00000000
Hawaiian Standard Time
Display = (GMT-10:00) Hawaii
Dlt = Hawaiian Daylight Time
MapID = 28,29
TZI = REG_BINARY 0x2C 0x00000258 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
Samoa Standard Time
Display = (GMT-11:00) Midway Island, Samoa
Dlt = Samoa Daylight Time
MapID = 26,27
TZI = REG_BINARY 0x2C 0x00000294 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
New Zealand Standard Time
Display = (GMT+12:00) Wellington, Auckland
Dlt = New Zealand Daylight Time
MapID = 78,79
TZI = REG_BINARY 0x2C 0xFFFFFD30 0x00000000 0xFFFFFFC4 0x00030000 0x00030000 0x00000002 0x00000000 0x000a0000 0x00010000 0x00000002 0x00000000
Sydney Standard Time
Display = (GMT+10:00) Brisbane, Melbourne, Sydney
Dlt = Sydney Daylight Time
MapID = 20,21
TZI = REG_BINARY 0x2C 0xFFFFFDA8 0x00000000 0xFFFFFFC4 0x00030000 0x00010000 0x00000002 0x00000000 0x000a0000 0x00050000 0x00000002 0x00000000
Cen. Australia Standard Time
Display = (GMT+09:30) Adelaide
Dlt = Cen. Australia Daylight Time
MapID = -1,76
TZI = REG_BINARY 0x2C 0xFFFFFDC6 0x00000000 0xFFFFFFC4 0x00030000 0x00010000 0x00000002 0x00000000 0x000a0000 0x00050000 0x00000002 0x00000000
Tokyo Standard Time
Display = (GMT+09:00) Tokyo, Osaka, Sapporo, Seoul, Yakutsk
Dlt = Tokyo Daylight Time
MapID = 18,19
TZI = REG_BINARY 0x2C 0xFFFFFDE4 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
Taipei Standard Time
Display = (GMT+08:00) Hong Kong, Perth, Singapore, Taipei
Dlt = Taipei Daylight Time
MapID = 16,17
TZI = REG_BINARY 0x2C 0xFFFFFE20 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
Bangkok Standard Time
Display = (GMT+07:00) Bangkok, Jakarta, Hanoi
Dlt = Bangkok Daylight Time
MapID = 14,15
TZI = REG_BINARY 0x2C 0xFFFFFE5C 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
India Standard Time
Display = (GMT+05:30) Bombay, Calcutta, Madras, New Delhi, Colombo
Dlt = India Daylight Time
MapID = -1,74
TZI = REG_BINARY 0x2C 0xFFFFFEB6 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
Arabian Standard Time
Display = (GMT+04:00) Abu Dhabi, Muscat, Tbilisi
Dlt = Arabian Daylight Time
MapID = 8,9
TZI = REG_BINARY 0x2C 0xFFFFFF10 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
Iran Standard Time
Display = (GMT+03:30) Tehran
Dlt = Iran Daylight Time
MapID = -1,72
TZI = REG_BINARY 0x2C 0xFFFFFF2E 0x00000000 0xFFFFFFC4 0x00090000 0x00040002 0x00000002 0x00000000 0x00030000 0x00010000 0x00000002 0x00000000
Saudi Arabia Standard Time
Display = (GMT+03:00) Baghdad, Kuwait, Nairobi, Riyadh
Dlt = Saudi Arabia Daylight Time
MapID = -1,71
TZI = REG_BINARY 0x2C 0xFFFFFF4C 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
Israel Standard Time
Display = (GMT+02:00) Israel
Dlt = Israel Daylight Time
MapID = -1,70
TZI = REG_BINARY 0x2C 0xFFFFFF88 0x00000000 0xFFFFFFC4 0x00090000 0x00010000 0x00000002 0x00000000 0x00030000 0x00050000 0x00000002 0x00000000
Newfoundland Standard Time
Display = (GMT-03:30) Newfoundland
Dlt = Newfoundland Daylight Time
MapID = -1,81
TZI = REG_BINARY 0x2C 0x000000D2 0x00000000 0xFFFFFFC4 0x000a0000 0x00050000 0x00000002 0x00000000 0x00040000 0x00010000 0x00000002 0x00000000
Azores Standard Time
Display = (GMT-01:00) Azores, Cape Verde Is.
Dlt = Azores Daylight Time
MapID = 46,47
TZI = REG_BINARY 0x2C 0x0000003C 0x00000000 0xFFFFFFC4 0x00090000 0x00050000 0x00000002 0x00000000 0x00030000 0x00050000 0x00000002 0x00000000
Mid-Atlantic Standard Time
Display = (GMT-02:00) Mid-Atlantic
Dlt = Mid-Atlantic Daylight Time
MapID = 44,45
TZI = REG_BINARY 0x2C 0x00000078 0x00000000 0xFFFFFFC4 0x00090000 0x00050000 0x00000002 0x00000000 0x00030000 0x00050000 0x00000002 0x00000000
GMT Standard Time
Display = (GMT) Monrovia, Casablanca
Dlt = GMT DST
MapID = 88,89
TZI = REG_BINARY 0x2C 0x00000000 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
SA Eastern Standard Time
Display = (GMT-03:00) Buenos Aires, Georgetown
Dlt = SA Eastern Daylight Time
MapID = 42,43
TZI = REG_BINARY 0x2C 0x000000B4 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
SA Western Standard Time
Display = (GMT-04:00) Caracas, La Paz
Dlt = SA Western Daylight Time
MapID = -1,82
TZI = REG_BINARY 0x2C 0x000000F0 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
US Eastern Standard Time
Display = (GMT-05:00) Indiana (East)
Dlt = US Eastern Daylight Time
MapID = -1,84
TZI = REG_BINARY 0x2C 0x0000012C 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
SA Pacific Standard Time
Display = (GMT-05:00) Bogota, Lima
Dlt = SA Pacific Daylight Time
MapID = -1,83
TZI = REG_BINARY 0x2C 0x0000012C 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
Canada Central Standard Time
Display = (GMT-06:00) Saskatchewan
Dlt = Canada Central Daylight Time
MapID = -1,86
TZI = REG_BINARY 0x2C 0x00000168 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
Mexico Standard Time
Display = (GMT-06:00) Mexico City, Tegucigalpa
Dlt = Mexico Daylight Time
MapID = -1,85
TZI = REG_BINARY 0x2C 0x00000168 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
US Mountain Standard Time
Display = (GMT-07:00) Arizona
Dlt = US Mountain Daylight Time
MapID = -1,87
TZI = REG_BINARY 0x2C 0x000001A4 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
Dateline Standard Time
Display = (GMT-12:00) Eniwetok, Kwajalein
Dlt = Dateline Daylight Time
MapID = 24,25
TZI = REG_BINARY 0x2C 0x000002D0 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
Fiji Standard Time
Display = (GMT+12:00) Fiji, Kamchatka, Marshall Is.
Dlt = Fiji Daylight Time
MapID = 24,25
TZI = REG_BINARY 0x2C 0xFFFFFD30 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
Central Pacific Standard Time
Display = (GMT+11:00) Magadan, Solomon Is., New Caledonia
Dlt = Central Pacific Daylight Time
MapID = 22,23
TZI = REG_BINARY 0x2C 0xFFFFFD6C 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
Tasmania Standard Time
Display = (GMT+10:00) Hobart
Dlt = Tasmania Daylight Time
MapID = 20,-1
TZI = REG_BINARY 0x2C 0xFFFFFDA8 0x00000000 0xFFFFFFC4 0x00030000 0x00050000 0x00000002 0x00000000 0x000a0000 0x00010000 0x00000002 0x00000000
West Pacific Standard Time
Display = (GMT+10:00) Guam, Port Moresby, Vladivostok
Dlt = West Pacific Daylight Time
MapID = -1,77
TZI = REG_BINARY 0x2C 0xFFFFFDA8 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
AUS Central Standard Time
Display = (GMT+09:30) Darwin
Dlt = AUS Central Daylight Time
MapID = -1,76
TZI = REG_BINARY 0x2C 0xFFFFFDC6 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
China Standard Time
Display = (GMT+08:00) Beijing, Chongqing, Urumqi
Dlt = China Daylight Time
MapID = -1,75
TZI = REG_BINARY 0x2C 0xFFFFFE20 0x00000000 0xFFFFFFC4 0x00090000 0x00020000 0x00000002 0x00000000 0x00040000 0x00020000 0x00000002 0x00000000
Central Asia Standard Time
Display = (GMT+06:00) Almaty, Dhaka
Dlt = Central Asia Daylight Time
MapID = 12,13
TZI = REG_BINARY 0x2C 0xFFFFFE98 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
West Asia Standard Time
Display = (GMT+05:00) Islamabad, Karachi, Ekaterinburg, Tashkent
Dlt = West Asia Daylight Time
MapID = 10,11
TZI = REG_BINARY 0x2C 0xFFFFFED4 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
Afghanistan Standard Time
Display = (GMT+04:30) Kabul
Dlt = Afghanistan Daylight Time
MapID = -1,73
TZI = REG_BINARY 0x2C 0xFFFFFEF2 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
Egypt Standard Time
Display = (GMT+02:00) Cairo
Dlt = Egypt Daylight Time
MapID = 4,68
TZI = REG_BINARY 0x2C 0xFFFFFF88 0x00000000 0xFFFFFFC4 0x00090000 0x00050003 0x00000002 0x00000000 0x00050000 0x00010005 0x00000002 0x00000000
South Africa Standard Time
Display = (GMT+02:00) Harare, Pretoria
Dlt = South Africa Daylight Time
MapID = 4,69
TZI = REG_BINARY 0x2C 0xFFFFFF88 0x00000000 0xFFFFFFC4 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
Russian Standard Time
Display = (GMT+03:00) Moscow, St. Petersburg, Kazan, Volgograd
Dlt = Russian Daylight Time
MapID = 6,7
TZI = REG_BINARY 0x2C 0xFFFFFF4C 0x00000000 0xFFFFFFC4 0x00090000 0x00050000 0x00000002 0x00000000 0x00030000 0x00050000 0x00000002 0x00000000
Type 1 Installer
Log events = REG_DWORD 0
Copyrights
EDXP22M?M[*$SM%R*P>S = REG_DWORD 1337
BEMB>C&/S4V!& = REG_DWORD 784
TX86%AS:_X[RE;H48<JS = REG_DWORD 1406
U,O = REG_DWORD 208
A2<!BMGS.?PB-: = REG_DWORD 863
M$5M^BJ/TDI/7JC2!SNB,CEF = REG_DWORD 1552
E:?D.Q = REG_DWORD 385
MMR6D5B)E = REG_DWORD 587
A,S(&ILYKM[:S_<-S1 = REG_DWORD 1224
C[^68EECQ/H/9M3E:* = REG_DWORD 1168
U*M = REG_DWORD 204
BEUHJ&T?,$0<IU8SC!OP = REG_DWORD 1295
DM+EM = REG_DWORD 334
I<GH<([$1:S07G$;O'8>[OC1 = REG_DWORD 1484
A:/IG0F&ZAP7<V%K<IRQ&M89ZC = REG_DWORD 1699
LYV3_M/RV6<+5 = REG_DWORD 899
P75CL!JG[OP?G.O)U[:^^(1VM<^M%BL&T_:NKEW = REG_DWORD 2727
C[^68ECE+D3C,MPD?'+:0S = REG_DWORD 1399
GUV;<,8-XFJM = REG_DWORD 815
TB:38TBF68:Z/7J1 = REG_DWORD 1018
C[_%1W+R4?]S7H = REG_DWORD 969
BIR:.&K:2&V2BURZ;V*[57QMW8W = REG_DWORD 1817
BIR:.&K:2&V2BURZ;V*[57][MH$M = REG_DWORD 1875
BIR:.&K:2&QM<4F?0K.LMPJ3-G_H)6X = REG_DWORD 1980
BIR:.&K:2&QM<4F?0K.[^][.\D2B]Z1&_67) = REG_DWORD 2362
Type 1 Fonts [WorldRW AdminFull SystemFull CreatorFull]
Winlogon [WorldR AdminFull SystemOpRWD SystemFull CreatorFull]
#if defined(_CAIRO_)
System=spmgr.exe
#else
System=lsass.exe
#endif
AutoRestartShell = REG_DWORD 1
Shell=Explorer.exe
DefaultUserName=
DefaultDomainName=
AutoAdminLogon=0
VmApplet=rundll32 shell32,Control_RunDLL "sysdm.cpl"
#if defined(_CAIRO_)
Userinit=userinit,nddeagnt.exe,winpopup.exe
#else
Userinit=userinit,nddeagnt.exe
#endif
ReportBootOk=1
LegalNoticeCaption=
LegalNoticeText=
ShutdownWithoutLogon=1
PowerdownAfterShutdown=0
Windows [WorldR AdminFull SystemFull CreatorFull]
Spooler=yes
DeviceNotSelectedTimeout=15
TransmissionRetryTimeout=90
swapdisk=
AppInit_DLLs=
FontSubstitutes [WorldRW AdminFull SystemFull CreatorFull]
Helv=MS Sans Serif
Tms Rmn=MS Serif
Times=Times New Roman
Helvetica=Arial
MS Shell Dlg=MS Sans Serif
GRE_Initialize [WorldRW AdminFull SystemFull CreatorFull]
FONTS.FON=vgasys.fon
FIXEDFON.FON=vgafix.fon
OEMFONT.FON=vgaoem.fon
FontCache [WorldR AdminFull]
MaxSize = REG_DWORD 128
MinInitSize = REG_DWORD 4
MinIncrSize = REG_DWORD 4
FontMapper [WorldR AdminFull]
FIXEDSYS = REG_DWORD 0x9000
COURIER = REG_DWORD 0x8800
MS SERIF = REG_DWORD 0x5000
MS SANS SERIF = REG_DWORD 0x1000
SMALL FONTS = REG_DWORD 0x0800
COURIER NEW = REG_DWORD 0x8000
TIMES NEW ROMAN = REG_DWORD 0x4000
ARIAL = REG_DWORD 0x0000
SYMBOL = REG_DWORD 0x4002
WINGDINGS = REG_DWORD 0x0002
SYMBOL1 = REG_DWORD 0xA002
WINGDINGS2 = REG_DWORD 0x8002
DEFAULT = REG_DWORD 0x0000
Fonts [WorldRW AdminFull SystemFull CreatorFull]
//
// Talk to the Setup guys to add fonts.
// Do not add them here.
//
Font Drivers [WorldR AdminFull]
Embedding [WorldRW AdminFull SystemFull CreatorFull]
SoundRec=Sound,Sound,sndrec32.exe,picture
Package=Package,Package,packager.exe,picture
PBrush=Paintbrush Picture,Paintbrush Picture,pbrush.exe,picture
Compatibility [WorldRW AdminFull SystemFull CreatorFull]
TURBOTAX=0x00080000
W4GLR=0x4000
W4GL=0x4000
NETSET2=0x0100
GUIDE=0x1000
EXCEL=0x1000
APORIA=0x0100
ED=0x00010000
PLUS=0x1000
PR2=0x2000
CHARISMA=0x2000
WINSIM=0x2000
DRAW=0x2000
PLANNER=0x2000
DESIGNER=0x2000
PM4=0x2000
MILESV3=0x1000
_BNOTES=0x24000
MCOURIER=0x0800
VISION=0x0040
PACKRAT=0x0800
WIN2WRS=0x1210
VB=0x0200
TME=0x0100
JW=0x42080
CP=0x0040
PIXIE=0x0040
REM=0x8022
AMIPRO=0x0010
CCMAIL=0x0008
WPWINFIL=0x0006
NOTSHELL=0x0001
TBOOK=0x0400
BALER=0x08000000
CORELPNT=0x08000000
MYST=0x08000000
QW=0x08000000
TL6=0x08000000
MCI Extensions [WorldRW AdminFull SystemFull CreatorFull]
Wav=WaveAudio
rmi=Sequencer
Mid=Sequencer
avi=avivideo
//
// Installed MCI drivers (MCI32) and dummy section
// (MCI) to make WOW applications happy
//
MCI32
WaveAudio=mciwave.dll
Sequencer=mciseq.dll
CDAudio=mcicda.dll
AVIVideo=mciavi32.dll
MCI [WorldRW AdminFull SystemFull CreatorFull]
WaveAudio=mciwave.drv
Sequencer=mciseq.drv
CDAudio=mcicda.drv
AVIVideo=mciavi.drv
//
// Sections used by the drivers control panel applet
// to keep track of installed drivers
//
Userinstallable.drivers
drivers.desc [WorldRW AdminFull SystemFull CreatorFull]
related.desc
//
// Installed drivers which respond to OpenDriver etc
//
Drivers32 [WorldR AdminFull SystemFull CreatorFull]
wave=mmdrv.dll
midi=mmdrv.dll
aux=mmdrv.dll
wavemapper=msacm32.drv
midimapper=midimap.dll
vidc.msvc=msvidc32.dll
vidc.cvid=iccvid.dll
vidc.mrle=msrle32.dll
vidc.iv31=ir32_32.dll
vidc.iv32=ir32_32.dll
msacm.msadpcm=msadp32.acm
msacm.imaadpcm=imaadp32.acm
msacm.msgsm610=msgsm32.acm
msacm.trspch=tssoft32.acm
msacm.msg711=msg711.acm
Drivers [WorldRW AdminFull SystemFull CreatorFull]
wave=mmdrv.dll
timer=timer.drv
AeDebug [WorldRW AdminFull SystemFull CreatorFull]
UserDebuggerHotKey = REG_DWORD 0
Debugger = drwtsn32 -p %ld -e %ld -g
Auto = 1
Image File Execution Options [WorldR AdminFull SystemFull CreatorFull]
Your Image File Name Here without a path
GlobalFlag = 0x000010F0
Debugger = ntsd -d
Perflib [WorldR AdminFull SystemFull CreatorFull]
Base Index = REG_DWORD 1847
Last Counter = REG_DWORD 1846
Last Help = REG_DWORD 1847
Version = REG_DWORD 0x00010001
//
// The Ports section is for compatibility only and is ignored by
// the system.
//
Ports [WorldRW AdminFull SystemFull CreatorFull]
LPT1: =
LPT2: =
LPT3: =
COM1: = 9600,n,8,1
COM2: = 9600,n,8,1
COM3: = 9600,n,8,1
COM4: = 9600,n,8,1
FILE: =
WOW [WorldRW AdminFull SystemFull CreatorFull]
//
// This subtree is for WOW compatibility and not used
// by Windows/NT
//
boot
shell=progman.exe
mouse.drv=mouse.drv
sound.drv=sound.drv
comm.drv=comm.drv
keyboard.drv=keyboard.drv
system.drv=system.drv
fixedfon.fon=vgafix.fon
oemfonts.fon=vgaoem.fon
fonts.fon=vgasys.fon
display.drv=vga.drv
language.dll=
network.drv=wfwnet.drv
drivers=mmsystem.dll
Compatibility
RELAY = 0x80000000
MAILSPL = 0x40000000
SHOPPER = 0x20000000
SHADOW = 0x10000000
ANIMATE = 0x08000000
COBOL = 0x08000000
WIN2WRS = 0x04000000
PHOTOSHO = 0x02000800 0x00800000
PM4 = 0x02004000
PSTYLER = 0x02000000
CHARISMA = 0x01000000
CHARM40 = 0x01000000
DESIGNER = 0x01000000
DRAW = 0x01000000
MGXPRINT = 0x01000000
WINCHART = 0x01000000
WPWIN = 0x00000100
WPWINFIL = 0x00400000
DEW = 0x00200000
WINPROJ = 0x00200000
MSWORKS = 0x00080002 0x01000000
IMPROV = 0x00020000
PM5APP = 0x00000000 0x00010000
SPJWIN30 = 0x00008000
MAIN123W = 0x00004000
PLAY = 0x00002000
PB030 = 0x00001000
XPRESS = 0x00000400 0x40000000
QPW = 0x00000200
WPWPRINT = 0x00000100
FH4 = 0x00000180
WINWORD = 0x00000040
DS40 = 0x01000000
CORELDRW = 0x00000020
DBASEWIN = 0x00000010
CORELCHT = 0x00000004
APPTU812 = 0x00000001
MSPUB = 0x00000002
STXR30 = 0x00000000 0x80000000
ISSET_SE = 0x00100000 0x20000000
NCSETUP = 0x00000000 0x20000000
MFWIN20 = 0x00000000 0x10000000
DB32W = 0x00000000 0x02000000
INSTBIN = 0x00000000 0x08000000
BBALL = 0x00000000 0x20000000
EXPLORE = 0x00000000 0x20000000
TSSETUP = 0x00000000 0x04000000
PAGEPLUS = 0x00000008
TUTORIAL = 0x00000000 0x00400000
MAVIS = 0x00000000 0x00200000
EMW = 0x00000000 0x00000001
DIRECTOR = 0x00000000 0x00100000
ENVOY = 0x00000000 0x00080000
TCADWIN = 0x00000000 0x00040000
PCH35NCM = 0x00000000 0x00020000
DICTED = 0x00000000 0x00010000
INSTALL = 0x00000000 0x00008000
XTALK = 0x00000000 0x00004000
NBAMW4V4 = 0x00040000
PREMIERE = 0x00000000 0x00002000
123W = 0x00000000 0x04000000
keyboard
subtype=
type=4
keyboard.dll=
boot.description
keyboard.typ=Enhanced 101 or 102 key US and Non US keyboards
mouse.drv=Microsoft, or IBM PS/2
language.dll=English (American)
system.drv=MS-DOS or PC-DOS System
display.drv=VGA
network.drv=LAN Support
standard
NonWindowsApp
WowFax
SupportedFaxDrivers
DriverNames = REG_MULTI_SZ "WINFAX" \
"E-FAX" \
"MAXFAXP" \
"Quick Link II Fax" \
"Quick Link Gold" \
"Procomm Plus"
SetupPrograms
SetupProgramNames = REG_MULTI_SZ "setup" \
"install" \
"inst" \
"imposta" \
"ayarla" \
"felrak" \
"eviewset"
IniFileMapping [WorldR AdminFull SystemFull CreatorFull]
//
// This section defines the mapping of .ini file variables to
// their location in the Registry.
//
//
// The Win32 Profile API calls (Get/WriteProfile... and
// Get/WritePrivateProfile...) look for a mapping in this
// section. They do this by looking up the file name.ext
// portion of the profile file in this section. If a match
// is found, then it looks under that node for the specified
// application name. If a match is found, then it looks for
// variable name under that section. If not found, then the
// value of the (null) variable name is a string that points
// to a node in the registry, whose value keys are the variable
// names, so the Profile file APIs look there. If a specific
// mapping is found for the variable name, then its value points
// to the registry value that contains the variable value.
//
// Only if no mapping for either the application name or file
// name is found, do the Profile API calls go the the Windows
// server to look for an actual .ini file and read and write
// its contents. If there is a mapping for the file name but
// not the application name, and there is a (null) application
// name, then the value of the (null) variable will be used
// as the location in the registry of the variable, after appending
// the application name to it.
//
// In the string that points to a registry node, there are
// several prefixes that change the behavior of the ini
// file mapping:
//
// ! - this character forces all writes to go both to the
// registry and to the .INI file on disk.
//
// # - this character causes the registry value to be set
// to the value in the Win 3.1 .INI file when a new user
// logs in for the first time after setup.
//
// @ - this character prevents any reads from going to the
// .INI file on disk if the requested data is not found
// in the registry.
//
// USR: - this prefix stands for HKEY_CURRENT_USER and the text
// after the prefix is relative to that key.
//
// SYS: - this prefix stands for HKEY_LOCAL_MACHINE\Software and
// the text after the prefix is relative to that key.
//
win.ini
Windows
= USR:Software\Microsoft\Windows NT\CurrentVersion\Windows
CursorBlinkRate = #USR:Control Panel\Desktop
BorderWidth = #USR:Control Panel\Desktop\WindowMetrics
ScreenSaveTimeOut = #USR:Control Panel\Desktop
ScreenSaveActive = #USR:Control Panel\Desktop
CoolSwitch = USR:Control Panel\Desktop
DragFullWindows = USR:Control Panel\Desktop
KeyboardSpeed = #USR:Control Panel\Keyboard
KeyboardDelay = #USR:Control Panel\Keyboard
InitialKeyboardIndicators = USR:Control Panel\Keyboard
Beep = #USR:Control Panel\Sound
SwapMouseButtons = #USR:Control Panel\Mouse
DoubleClickSpeed = #USR:Control Panel\Mouse
DoubleClickHeight = #USR:Control Panel\Mouse
DoubleClickWidth = #USR:Control Panel\Mouse
MouseThreshold1 = #USR:Control Panel\Mouse
MouseThreshold2 = #USR:Control Panel\Mouse
MouseSpeed = #USR:Control Panel\Mouse
SnapToDefaultButton = #USR:Control Panel\Mouse
Spooler = #SYS:Microsoft\Windows NT\CurrentVersion\Windows
DeviceNotSelectedTimeout = #SYS:Microsoft\Windows NT\CurrentVersion\Windows
TransmissionRetryTimeout = #SYS:Microsoft\Windows NT\CurrentVersion\Windows
swapdisk = SYS:Microsoft\Windows NT\CurrentVersion\Windows
AppInit_DLLs = SYS:Microsoft\Windows NT\CurrentVersion\Windows
DefaultSeparateVDM = \Registry\Machine\System\CurrentControlSet\Control\WOW
// load = USR:Software\Microsoft\Windows NT\CurrentVersion\Windows
// run = USR:Software\Microsoft\Windows NT\CurrentVersion\Windows
// NullPort = USR:Software\Microsoft\Windows NT\CurrentVersion\Windows
// Programs = USR:Software\Microsoft\Windows NT\CurrentVersion\Windows
// Documents = USR:Software\Microsoft\Windows NT\CurrentVersion\Windows
// device = USR:Software\Microsoft\Windows NT\CurrentVersion\Windows
// DosPrint = USR:Software\Microsoft\Windows NT\CurrentVersion\Windows
// NetWarn = USR:Software\Microsoft\Windows NT\CurrentVersion\Windows
// DebugOptions = USR:Software\Microsoft\Windows NT\CurrentVersion\Windows
// fPromptOnVerbose = USR:Software\Microsoft\Windows NT\CurrentVersion\Windows
// fPromptOnWarning = USR:Software\Microsoft\Windows NT\CurrentVersion\Windows
// fPromptOnError = USR:Software\Microsoft\Windows NT\CurrentVersion\Windows
// fPrintVerbose = USR:Software\Microsoft\Windows NT\CurrentVersion\Windows
// fPrintFileLine = USR:Software\Microsoft\Windows NT\CurrentVersion\Windows
Cursors = #USR:Control Panel\Cursors
NWCS = SYS:Microsoft\Windows NT\CurrentVersion\NWCS
Winlogon = SYS:Microsoft\Windows NT\CurrentVersion\Winlogon
DeskTop = #USR:Control Panel\Desktop
Console = USR:Console
Devices = USR:Software\Microsoft\Windows NT\CurrentVersion\Devices
PrinterPorts = USR:Software\Microsoft\Windows NT\CurrentVersion\PrinterPorts
Embedding = !#SYS:Microsoft\Windows NT\CurrentVersion\Embedding
Extensions = #USR:Software\Microsoft\Windows NT\CurrentVersion\Extensions
MCI Extensions = SYS:Microsoft\Windows NT\CurrentVersion\MCI Extensions
Intl = #USR:Control Panel\International
Ports = SYS:Microsoft\Windows NT\CurrentVersion\Ports
Windows Help = USR:Software\Microsoft\Windows Help
Clock = #USR:Software\Microsoft\Clock
MSCharMap = #USR:Software\Microsoft\Charmap
Compatibility = #SYS:Microsoft\Windows NT\CurrentVersion\Compatibility
Fonts = #SYS:Microsoft\Windows NT\CurrentVersion\Fonts
FontSubstitutes = #SYS:Microsoft\Windows NT\CurrentVersion\FontSubstitutes
GRE_Initialize = SYS:Microsoft\Windows NT\CurrentVersion\GRE_Initialize
TrueType = #USR:Software\Microsoft\Windows NT\CurrentVersion\TrueType
Colors = #USR:Control Panel\Colors
Sounds = #USR:Control Panel\Sounds
IOProcs = #USR:Control Panel\IOProcs
Network
= USR:Software\Microsoft\Windows NT\CurrentVersion\Network\Persistent Connections
ExpandLogonDomain = SYS:Microsoft\Windows NT\CurrentVersion\Network\World Full Access Shared Parameters
Net_Files = USR:Software\Microsoft\Windows NT\CurrentVersion\Network\Persistent Connections
AeDebug = SYS:Microsoft\Windows NT\CurrentVersion\AeDebug
ModuleCompatibility = SYS:Microsoft\Windows NT\CurrentVersion\ModuleCompatibility
control.ini
Current = #USR:Control Panel\Current
Color Schemes = #USR:Control Panel\Color Schemes
Custom Colors = #USR:Control Panel\Custom Colors
Patterns = #USR:Control Panel\Patterns
Screen Saver.3DFlowerBox = USR:Control Panel\Screen Saver.3DFlowerBox
Screen Saver.3DFlyingObj = USR:Control Panel\Screen Saver.3DFlyingObj
Screen Saver.3DPipes = USR:Control Panel\Screen Saver.3DPipes
Screen Saver.3DMaze = USR:Control Panel\Screen Saver.3DMaze
Screen Saver.3DText = USR:Control Panel\Screen Saver.3DText
Screen Saver.Bezier = USR:Control Panel\Screen Saver.Bezier
Screen Saver.Marquee = #USR:Control Panel\Screen Saver.Marquee
Screen Saver.Mystify = #USR:Control Panel\Screen Saver.Mystify
Screen Saver.Stars = #USR:Control Panel\Screen Saver.Stars
MMCPL = USR:Control Panel\MMCPL
don't load = USR:Control Panel\don't load
Userinstallable.drivers = SYS:Microsoft\Windows NT\CurrentVersion\Userinstallable.drivers
drivers.desc = SYS:Microsoft\Windows NT\CurrentVersion\drivers.desc
related.desc = SYS:Microsoft\Windows NT\CurrentVersion\related.desc
regedt32.ini
= USR:Software\Microsoft\RegEdt32
ntnet.ini
= USR:Software\Microsoft\Windows NT\CurrentVersion\Network
Shared Parameters = SYS:Microsoft\Windows NT\CurrentVersion\Network\World Full Access Shared Parameters
SMAddOns = SYS:Microsoft\Windows NT\CurrentVersion\Network\SMAddOns
UMAddOns = SYS:Microsoft\Windows NT\CurrentVersion\Network\UMAddOns
winfile.ini
Settings = #USR:Software\Microsoft\File Manager\Settings
AddOns = SYS:Microsoft\Windows NT\CurrentVersion\File Manager\AddOns
Ntbackup.ini
= #USR:Software\Microsoft\Ntbackup
Clock.ini
= #USR:Software\Microsoft\Clock
schdpl32.ini
= USR:Software\Microsoft\Schedule+
msacm.ini
= USR:Software\Microsoft\Multimedia\Audio Compression Manager
KeyboardLayout.ini
=
Preload = USR:Keyboard Layout\Preload
Keyboard Layout
= \Registry\Machine\System\CurrentControlSet\Control\Keyboard Layout
Active = USR:Keyboard Layout
Substitutes
= USR:Keyboard Layout\Substitutes
system.ini
keyboard = SYS:Microsoft\Windows NT\CurrentVersion\WOW\keyboard
boot.description = SYS:Microsoft\Windows NT\CurrentVersion\WOW\boot.description
standard = SYS:Microsoft\Windows NT\CurrentVersion\WOW\standard
NonWindowsApp = SYS:Microsoft\Windows NT\CurrentVersion\WOW\NonWindowsApp
MCI = SYS:Microsoft\Windows NT\CurrentVersion\MCI
MCI32 = SYS:Microsoft\Windows NT\CurrentVersion\MCI32
drivers32 = SYS:Microsoft\Windows NT\CurrentVersion\Drivers32
drivers = #SYS:Microsoft\Windows NT\CurrentVersion\drivers
msacm.drv = USR:Software\Microsoft\Multimedia\Sound Mapper
boot
= SYS:Microsoft\Windows NT\CurrentVersion\WOW\boot
ScreenSaverIsSecure = USR:Control Panel\Desktop
ScreenSaverActive = USR:Control Panel\Desktop
SCRNSAVE.EXE = USR:Control Panel\Desktop
Shell = SYS:Microsoft\Windows NT\CurrentVersion\Winlogon
ImageFileExecutionOptions.ini
= SYS:Microsoft\Windows NT\CurrentVersion\Image File Execution Options
File Manager [WorldR AdminFull SystemFull CreatorFull SystemOpRWD PowerRWD]
AddOns
Network [WorldR AdminFull SystemFull CreatorFull SystemOpRWD PowerRWD]
SMAddOns
UMAddOns
Shared Parameters
World Full Access Shared Parameters [WorldFull]
Midimap [WorldRW AdminFull SystemFull CreatorFull]
Mapping Name=Sound System
ModuleCompatibility
CWD = 0x8000
MYST = 0x8000
PALED40 = 0x0002
USA = 0x8000
VB = 0x0002
VB40016 = 0x0002
Ole [WorldR AdminFull SystemFull CreatorFull]
EnableDCOM = "Y"
DefaultLaunchPermission = REG_BINARY 0x0000009c 0x80040001 0x00000064 0x00000080 0x00000000 0x00000014 0x00500002 0x00000003 0x00180000 0x00000001 0x00000101 0x05000000 0x00000012 0x00000000 0x00180000 0x00000001 0x00000101 \
0x05000000 0x00000004 0x00000000 0x00180000 0x00000001 0x00000201 0x05000000 0x00000020 0x00000220 0x00000501 0x05000000 0x00000015 0x1f845fa0 0x496b2e5e 0x030312ce 0x000001f4 0x00000501 0x05000000 \
0x00000015 0x1f845fa0 0x496b2e5e 0x030312ce 0x000001f4
Rpc [WorldR AdminFull SystemFull CreatorFull]
DCOM Protocols = REG_MULTI_SZ "ncadg_ip_udp" \
"ncadg_ipx" \
"ncacn_ip_tcp" \
"ncacn_spx" \
"ncacn_nb_nb" \
"ncacn_nb_ipx"
NameService [WorldR AdminFull SystemFull CreatorFull]
Protocol=ncacn_np
NetworkAddress=\\.
ServerNetworkAddress=\\.
Endpoint=\pipe\locator
DefaultSyntax=3
NetBios [WorldR AdminFull SystemFull CreatorFull]
ServerProtocols [WorldR AdminFull SystemFull CreatorFull]
ncacn_np=rpclts1.dll
ncalrpc=ncalrpc
ClientProtocols [WorldR AdminFull SystemFull CreatorFull]
ncacn_np=rpcltc1.dll
ncalrpc=ncalrpc
Secure [WorldR AdminFull SystemOpFull SystemFull CreatorFull]
NetDDE [SystemFull AdminFull]
DDE Shares
SerialNumber = REG_BINARY 8 0x09000005 0x01000000
CLPBK$
fuCmdShow = REG_DWORD 0x7
ItemList = REG_MULTI_SZ
NewStyleLink = REG_SZ
NumItems = REG_DWORD 0x0
OldStyleLink = REG_SZ
Revision = REG_DWORD 0x1
SecurityDescriptor = REG_BINARY 0x6C \
0x80040001 \
0x0000004C \
0x0000005C \
0x00000000 \
0x00000014 \
0x00380002 \
0x00000002 \
0x00180200 \
0x000F03FF \
0x00000201 \
0x05000000 \
0x00000020 \
0x00000220 \
0x00180200 \
0x000002BD \
0x00000101 \
0x01000000 \
0x00000000 \
0x00000220 \
0x00000201 \
0x05000000 \
0x00000020 \
0x00000220 \
0x00000201 \
0x05000000 \
0x00000020 \
0x00000220
SerialNumber = REG_BINARY 8 0x09000005 0x01000000
Service = REG_DWORD 0x1
SharedFlag = REG_DWORD 0x1
ShareName = REG_SZ CLPBK$
ShareType = REG_DWORD 0x4
StartAppFlag = REG_DWORD 0x0
StaticDataLink = REG_SZ ClipSrv|System
Hearts$
fuCmdShow = REG_DWORD 0x1
ItemList = REG_MULTI_SZ
NewStyleLink = REG_SZ MSHearts|Hearts
NumItems = REG_DWORD 0x0
OldStyleLink = REG_SZ MSHearts|Hearts
Revision = REG_DWORD 0x1
SecurityDescriptor = REG_BINARY 0x68 \
0x80040001 \
0x00000048 \
0x00000058 \
0x00000000 \
0x00000014 \
0x00340002 \
0x00000002 \
0x00180000 \
0x000F03FF \
0x00000201 \
0x05000000 \
0x00000020 \
0x00000220 \
0x00140000 \
0x000102FD \
0x00000101 \
0x01000000 \
0x00000000 \
0x00000201 \
0x05000000 \
0x00000020 \
0x00000220 \
0x00000201 \
0x05000000 \
0x00000020 \
0x00000220
SerialNumber = REG_BINARY 8 0x09000004 0x01000000
Service = REG_DWORD 0x0
SharedFlag = REG_DWORD 0x1
ShareName = REG_SZ Hearts$
ShareType = REG_DWORD 0x7
StartAppFlag = REG_DWORD 0x0
StaticDataLink = REG_SZ MSHearts|Hearts
Chat$
fuCmdShow = REG_DWORD 0x6
ItemList = REG_MULTI_SZ
NewStyleLink = REG_SZ
NumItems = REG_DWORD 0x0
OldStyleLink = REG_SZ
Revision = REG_DWORD 0x1
SecurityDescriptor = REG_BINARY 0x68 \
0x80040001 \
0x00000048 \
0x00000058 \
0x00000000 \
0x00000014 \
0x00340002 \
0x00000002 \
0x00180000 \
0x000F03FF \
0x00000201 \
0x05000000 \
0x00000020 \
0x00000220 \
0x00140000 \
0x000102FD \
0x00000101 \
0x01000000 \
0x00000000 \
0x00000201 \
0x05000000 \
0x00000020 \
0x00000220 \
0x00000201 \
0x05000000 \
0x00000020 \
0x00000220
SerialNumber = REG_BINARY 8 0x09000003 0x01000000
Service = REG_DWORD 0
SharedFlag = REG_DWORD 0x1
ShareName = REG_SZ Chat$
ShareType = REG_DWORD 0x4
StartAppFlag = REG_DWORD 0x1
StaticDataLink = REG_SZ WinChat|Chat
Parameters
General
NDDEAGNT
NDDEAPI
NetBIOS
Cryptography
Defaults
//
// These 2 keys get populated with value entries and
// additional keys during setup
//
Provider
Provider Types
DirectPlay
Services
{5146ab8cb6b1ce11920c00aa006c4972}
Path = REG_EXPAND_SZ %SystemRoot%\system32\dpwsock.dll
Description = REG_SZ WinSock IPX Connection For DirectPlay
Players
Sessions
{5246ab8cb6b1ce11920c00aa006c4972}
Path = REG_EXPAND_SZ %SystemRoot%\system32\dpserial.dll
Description = REG_SZ Modem Connection For DirectPlay
Players
Sessions
{5046ab8cb6b1ce11920c00aa006c4972}
Path = REG_EXPAND_SZ %SystemRoot%\system32\dpwsock.dll
Description = REG_SZ WinSock TCP Connection For DirectPlay
Players
Sessions
#if defined(_CAIRO_)
AlertSystem [SystemFull AdminFull]
AlertCategories
0
DisplayName = REG_SZ System Events
1 = REG_SZ Legacy
1
DisplayName = REG_SZ User Notification
1 = REG_SZ Print Job done
2 = REG_SZ Fax
2
DisplayName = REG_SZ Application Notification
1 = REG_SZ Memory
3
DisplayName = REG_SZ Application Management
1 = REG_SZ Token Granted
2 = REG_SZ Token Denied
4
DisplayName = REG_SZ Printers and Shared Resources
1 = REG_SZ Toner
2 = REG_SZ Device Driver
3 = REG_SZ Paper
5
DisplayName = REG_SZ Security Management
1 = REG_SZ ACL
6
DisplayName = REG_SZ User Accounts
1 = REG_SZ Created
2 = REG_SZ Deleted
7
DisplayName = REG_SZ Storage
1 = REG_SZ Replication
2 = REG_SZ Quotas
3 = REG_SZ OFS
4 = REG_SZ NTFS
5 = REG_SZ FAT
8
DisplayName = REG_SZ Distributed Services
1 = REG_SZ DFS
2 = REG_SZ DS
9
DisplayName = REG_SZ LAN
1 = REG_SZ Bridge
2 = REG_SZ Cabling
10
DisplayName = REG_SZ WAN
1 = REG_SZ Router
2 = REG_SZ Switch
3 = REG_SZ Telephony
11
DisplayName = REG_SZ Catalog
1 = REG_SZ Catalog
12
DisplayName = REG_SZ Batch Job
1 = REG_SZ Failed to Start
2 = REG_SZ Failed to Complete
13
DisplayName = REG_SZ Backup
1 = REG_SZ Failed to Start
2 = REG_SZ Started
3 = REG_SZ Failed to Complete
4 = REG_SZ Completed
14
DisplayName = REG_SZ System Software
1 = REG_SZ Kernel
2 = REG_SZ Drivers
15
DisplayName = REG_SZ System Hardware
1 = REG_SZ CD ROM
2 = REG_SZ Memory
3 = REG_SZ Bus
4 = REG_SZ SCSI
5 = REG_SZ IDE
6 = REG_SZ NIC
16
DisplayName = REG_SZ System Monitoring
1 = REG_SZ SYSMON
2 = REG_SZ Bloodhound
17
DisplayName = REG_SZ Helpdesk & Diagnostics
1 = REG_SZ Dr. Watson
18
DisplayName = REG_SZ Alert Notify
1 = REG_SZ Forward Incomplete
2 = REG_SZ Registration Canceled
#endif
|