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
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
|
// Copyright (c) 1995 Microsoft Corporation
//
// This file defines the default contents of the SYSTEM hive in the Windows NT
// registry. It is run through the C Preprocessor, so may contain conditional
// defintions and symbolic names.
//
//
// Defined Symbolic names
//
// Boolean Types
//
//
#define True REG_DWORD 0x00000001
#define False REG_DWORD 0x00000000
//
// 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
#define UserRW 25
// CurrentControlSet\Control\Services\<service name>\Type value definitions:
//
#define SC_Type_KernelDriver REG_DWORD 0x00000001
#define SC_Type_FileSystem REG_DWORD 0x00000002
#define SC_Type_Adapter REG_DWORD 0x00000004
#define SC_Type_Recognizer REG_DWORD 0x00000008
#define SC_Type_Win32ServiceOwnProcess REG_DWORD 0x00000010
#define SC_Type_Win32ServiceShareProcess REG_DWORD 0x00000020
//
// CurrentControlSet\Control\Services\<service name>\Start value definitions:
//
#define SC_Start_LoadAtBoot REG_DWORD 0x00000000
#define SC_Start_LoadAtSystemInit REG_DWORD 0x00000001
#define SC_Start_AutoLoad REG_DWORD 0x00000002
#define SC_Start_DemandLoad REG_DWORD 0x00000003
#define SC_Start_DisableLoad REG_DWORD 0x00000004
//
// CurrentControlSet\Services\<service name>\ErrorControl value definitions:
//
#define SC_Error_Ignore REG_DWORD 0x00000000
#define SC_Error_Normal REG_DWORD 0x00000001
#define SC_Error_Severe REG_DWORD 0x00000002
#define SC_Error_Critical REG_DWORD 0x00000003
//
// Setup\SetupType value definitions:
//
#define SETUPTYPE_RETAIL REG_DWORD 0x00000001
SYSTEM [WorldR AdminRWD SystemFull]
Select [WorldR AdminFull SystemFull CreatorFull]
Current = REG_DWORD 0x00000000
Default = REG_DWORD 0x00000001
LastKnownGood = REG_DWORD 0x00000001
Failed = REG_DWORD 0x00000000
//
// All applications access the current control set using the CurrentControlSet
// key name, which is a symbolic link that points to the current key ControlSet001
// or ControlSetnnn where nnn is the Current, Default or LastKnownGood value above.
//
#if defined(DOC_ONLY)
CurrentControlSet = ControlSet001
#endif
ControlSet001 [WorldR AdminFull SystemFull CreatorFull]
Control [SystemOpRWD WorldR AdminFull SystemFull CreatorFull]
WaitToKillServiceTimeout = REG_SZ 20000
BootVerificationProgram
// ImagePath = REG_EXPAND_SZ %SystemRoot%\system32\bootok.exe
Update
UpdateMode = REG_DWORD 1
Class
{4D36E968-E325-11CE-BFC1-08002BE10318}
= REG_SZ Display adapters
Class = REG_SZ Display
Icon = REG_SZ -1
Installer32 = REG_SZ Desk.Cpl,DisplayClassInstaller
{4D36E96B-E325-11CE-BFC1-08002BE10318}
= REG_SZ Keyboard
Class = REG_SZ Keyboard
Icon = REG_SZ -3
Installer32 = REG_SZ SysSetup.Dll,KeyboardClassInstaller
{4D36E96C-E325-11CE-BFC1-08002BE10318}
= REG_SZ Sound, video and game controllers
Class = REG_SZ MEDIA
Icon = REG_SZ 3004
Installer32 = REG_SZ MmSys.Cpl,MediaClassInstaller
{4D36E96D-E325-11CE-BFC1-08002BE10318}
= REG_SZ Modem
Class = REG_SZ Modem
Default Service = REG_SZ Modem
Icon = REG_SZ 0
Installer32 = REG_SZ Modem.Cpl,ClassInstall32
{4D36E96F-E325-11CE-BFC1-08002BE10318}
= REG_SZ Mouse
Class = REG_SZ Mouse
Icon = REG_SZ -2
Installer32 = REG_SZ SysSetup.Dll,MouseClassInstaller
{4D36E972-E325-11CE-BFC1-08002BE10318}
= REG_SZ Network adapters
Class = REG_SZ Net
Icon = REG_SZ -5
{4D36E978-E325-11CE-BFC1-08002BE10318}
= REG_SZ Ports (COM & LPT)
Class = REG_SZ Ports
Installer32 = REG_SZ Ports.Cpl,PortsClassInstaller
{4D36E979-E325-11CE-BFC1-08002BE10318}
= REG_SZ Printer
Class = REG_SZ Printer
Icon = REG_SZ -4
NoDisplayClass = REG_SZ 1
{4D36E97B-E325-11CE-BFC1-08002BE10318}
= REG_SZ SCSI controllers
Class = REG_SZ SCSIAdapter
Icon = REG_SZ -10
Installer32 = REG_SZ SysSetup.Dll,ScsiClassInstaller
LegacyInfOption = REG_SZ SCSI
{4D36E97E-E325-11CE-BFC1-08002BE10318}
= REG_SZ Other devices
Class = REG_SZ Unknown
Icon = REG_SZ -18
{6D807884-7D21-11CF-801C-08002BE10318}
= REG_SZ Tape drives
Class = REG_SZ TapeDrive
Icon = REG_SZ 1610
Installer32 = REG_SZ SysSetup.Dll,TapeClassInstaller
LegacyInfOption = REG_SZ TAPE
IDConfigDB
CurrentConfig = REG_DWORD 0x00000001
PropertyProviders = REG_MULTI_SZ "profext.dll"
UserWaitInterval = REG_DWORD 0x0000001e
Hardware Profiles
0001
FriendlyName = REG_SZ Original Configuration
PreferenceOrder = REG_DWORD 0x00000000
CrashControl
LogEvent = REG_DWORD 0x00000000
SendAlert = REG_DWORD 0x00000000
CrashDumpEnabled = REG_DWORD 0x00000000
AutoReboot = REG_DWORD 0x00000000
DumpFile = REG_EXPAND_SZ %SystemRoot%\MEMORY.DMP
Overwrite = REG_DWORD 0x00000001
FileSystem
Win31FileSystem = REG_DWORD 0x00000000
NtfsDisable8dot3NameCreation = REG_DWORD 0x00000000
Win95TruncatedExtensions = REG_DWORD 0x00000001
ServiceGroupOrder
List = REG_MULTI_SZ "System Bus Extender" \
"SCSI miniport" \
"port" \
"Primary disk" \
"SCSI class" \
"SCSI CDROM class" \
"filter" \
"boot file system" \
"Base" \
"Pointer Port" \
"Keyboard Port" \
"Pointer Class" \
"Keyboard Class" \
"Video Init" \
"Video" \
"Video Save" \
"file system" \
"Event log" \
"Streams Drivers" \
"PNP_TDI" \
"NDIS" \
"TDI" \
"NetBIOSGroup" \
"SpoolerGroup" \
"NetDDEGroup" \
"Parallel arbitrator" \
"extended base" \
"RemoteValidation" \
"PCI Configuration"
GroupOrderList
//
// PLEASE NOTE: The fields for the values are defined below:
//
// GroupOrder = REG_BINARY NumOfBytes \
// NumOfTags \
// Tag1 \
// Tag2 \
// ...
//
// The field NumOfBytes = (NumOfTags + 1) * 4. This field
// has been wrong on several occasions.
//
System Bus Extender = REG_BINARY 0x00000008 \
0x00000001 0x00000001
//
// PLEASE NOTE: The fields for the values are defined below:
//
// GroupOrder = REG_BINARY NumOfBytes \
// NumOfTags \
// Tag1 \
// Tag2 \
// ...
//
// The field NumOfBytes = (NumOfTags + 1) * 4. This field
// has been wrong on several occasions.
//
SCSI miniport = REG_BINARY 156 \
0x00000026 \
0x00000100 \
0x00000101 \
0x00000019 \
0x00000001 \
0x00000002 \
0x00000003 \
0x00000004 \
0x00000005 \
0x00000006 \
0x00000007 \
0x00000008 \
0x00000009 \
0x0000000A \
0x0000000B \
0x0000000C \
0x0000000D \
0x0000000E \
0x0000000F \
0x00000010 \
0x00000011 \
0x00000012 \
0x00000013 \
0x00000014 \
0x00000015 \
0x00000016 \
0x00000017 \
0x0000001a \
0x00000018 \
0x0000001b \
0x0000001c \
0x0000001d \
0x0000001e \
0x0000001f \
0x00000020 \
0x00000023 \
0x00000024 \
0x00000025 \
0x00000026
Primary Disk = REG_BINARY 20 \
0x00000004 \
0x00000001 \
0x00000002 \
0x00000003 \
0x00000004
Base = REG_BINARY 60 \
0x0000000e \
0x0000000e \
0x00000001 \
0x00000002 \
0x00000003 \
0x00000004 \
0x00000005 \
0x00000006 \
0x00000007 \
0x00000008 \
0x00000009 \
0x0000000A \
0x0000000B \
0x0000000c \
0x0000000d
Keyboard Port = REG_BINARY 8 \
0x00000001 \
0x00000001
Pointer Port = REG_BINARY 16 \
0x00000003 \
0x00000001 \
0x00000002 \
0x00000003
Keyboard Class = REG_BINARY 8 \
0x00000001 \
0x00000001
Pointer Class = REG_BINARY 8 \
0x00000001 \
0x00000001
Video Init = REG_BINARY 8 \
0x00000001 \
0x00000001
Video = REG_BINARY 4 \
0x00000000
Video Save = REG_BINARY 8 \
0x00000001 \
0x00000001
Ndis = REG_BINARY 40 \
0x00000009 \
0x00000001 \
0x00000002 \
0x00000003 \
0x00000004 \
0x00000005 \
0x00000006 \
0x00000007 \
0x00000008 \
0x00000009
Filter = REG_BINARY 28 \
0x00000006 \
0x00000001 \
0x00000002 \
0x00000003 \
0x00000004 \
0x00000005 \
0x00000006
Parallel arbitrator = REG_BINARY 8 \
0x00000001 \
0x00000001
Extended base = REG_BINARY 20 \
0x00000004 \
0x00000001 \
0x00000002 \
0x00000003 \
0x00000004
SpoolerGroup = REG_BINARY 12 \
0x00000002 \
0x00000001 \
0x00000002
SCSI Class = REG_BINARY 16 \
0x00000003 \
0x00000001 \
0x00000002 \
0x00000003
SCSI CDROM Class = REG_BINARY 12 \
0x00000002 \
0x00000001 \
0x00000002
SecurePipeServers
winreg [AdminFull]
Description = REG_SZ "Registry Server"
AllowedPaths
Machine = REG_MULTI_SZ "System\CurrentControlSet\Control\ProductOptions" \
"System\CurrentControlSet\Control\Print\Printers" \
"System\CurrentControlSet\Services\Eventlog" \
"Software\Microsoft\Windows NT\CurrentVersion"
SecurityProviders
SecurityProviders = REG_SZ "schannel.dll"
Session Manager
ObjectDirectories = REG_MULTI_SZ "\Windows" "\RPC Control"
GlobalFlag = REG_DWORD 0
ProtectionMode = REG_DWORD 0
#if defined(SYSTEM_BOOT_EXECUTE)
BootExecute = REG_MULTI_SZ SYSTEM_BOOT_EXECUTE
#else
#ifdef _CAIRO_
BootExecute = REG_MULTI_SZ "autocheck autochk *" \
"dfsinit"
#else // _CAIRO_
BootExecute = REG_MULTI_SZ "autocheck autochk *"
#endif // _CAIRO_
#endif // defined(SYSTEM_BOOT_EXECUTE)
EnableMCE = REG_DWORD 0
EnableMCA = REG_DWORD 1
HeapSegmentReserve = REG_DWORD 0
HeapSegmentCommit = REG_DWORD 0
HeapDeCommitTotalFreeThreshold = REG_DWORD 0
HeapDeCommitFreeBlockThreshold = REG_DWORD 0
//
// Retail builds take 1 month to timeout
//
CriticalSectionTimeout = REG_DWORD 2592000
ResourceTimeoutCount = REG_DWORD 648000
// keep preprocessor happy
//
// The FileRenameOperations is a container key. Under it maybe written
// REG_SZ value keys of the following format:
//
// OldNtPathName = REG_SZ NewNtPathName
//
// Session Manager will process these rename operations after running auto
// check but prior to creating any paging files. If the NtNtPathName is
// the null string then the OldNtPathName is deleted. Otherwise the
// OldNtPathName is renamed to be the NetNtPathName, replacing any existing
// file by that name. Setup Applications can use this capability to
// install new versions of .DLL files that are currently open on a running
// system and get the new copy install when the system is rebooted.
//
FileRenameOperations
Executive [WorldR AdminFull SystemOpRW PowerRW SystemFull CreatorFull]
AdditionalCriticalWorkerThreads = REG_DWORD 0x00000000
AdditionalDelayedWorkerThreads = REG_DWORD 0x00000000
Memory Management [WorldR AdminFull SystemFull]
PagedPoolSize = REG_DWORD 0x00000000
NonPagedPoolSize = REG_DWORD 0x00000000
PagedPoolQuota = REG_DWORD 0x00000000
NonPagedPoolQuota = REG_DWORD 0x00000000
IoPageLockLimit = REG_DWORD 0x00000000
LargeSystemCache = REG_DWORD 0x00000000
PagingFiles = REG_MULTI_SZ "?:\pagefile.sys 15 60"
SystemPages = REG_DWORD 0x00000000
SecondLevelDataCache = REG_DWORD 0x00000000
DisablePagingExecutive = REG_DWORD 0x00000000
ClearPageFileAtShutdown = REG_DWORD 0x00000000
DOS Devices
PRN = \DosDevices\LPT1
AUX = \DosDevices\COM1
NUL = \Device\Null
PIPE = \Device\NamedPipe
MAILSLOT = \Device\MailSlot
UNC = \Device\Mup
Environment
ComSpec = REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe
Os2LibPath = REG_EXPAND_SZ %SystemRoot%\system32\os2\dll;
Path = REG_EXPAND_SZ %SystemRoot%\system32
windir = REG_EXPAND_SZ %SystemRoot%
ExcludeFromKnownDlls = REG_MULTI_SZ ""
KnownDLLs
DllDirectory = REG_EXPAND_SZ %SystemRoot%\system32
kernel32 = kernel32.dll
gdi32 = gdi32.dll
user32 = user32.dll
rpcrt4 = rpcrt4.dll
advapi32 = advapi32.dll
comdlg32 = comdlg32.dll
crtdll = crtdll.dll
shell32 = shell32.dll
lz32 = lz32.dll
olecli32 = olecli32.dll
olesvr32 = olesvr32.dll
version = version.dll
ole32 = ole32.dll
oleaut32 = oleaut32.dll
olecnv32 = olecnv32.dll
olethk32 = olethk32.dll
SubSystems
Required = REG_MULTI_SZ "Debug" "Windows"
Optional = REG_MULTI_SZ "Os2" "Posix"
Debug = REG_EXPAND_SZ
Windows = REG_EXPAND_SZ %SystemRoot%\system32\csrss.exe \
ObjectDirectory=\Windows \
SharedSection=1024,3072 \
Windows=On \
SubSystemType=Windows \
ServerDll=basesrv,1 \
ServerDll=winsrv:UserServerDllInitialization,3 \
ServerDll=winsrv:ConServerDllInitialization,2 \
ProfileControl=Off \
MaxRequestThreads=16
Kmode = REG_EXPAND_SZ %SystemRoot%\system32\win32k.sys
Os2 = REG_EXPAND_SZ %SystemRoot%\system32\os2ss.exe
Posix = REG_EXPAND_SZ %SystemRoot%\system32\psxss.exe
AppPatches
CWD
ff060102423da0000407108e0500
1
Add1 = REG_BINARY 0x00000015 \
0xa0401502 \
0x23b81e10 \
0x8bd88e00 \
0x8107140e \
0x1f0200e1 \
0x000000c3
Change1 = REG_BINARY 0x0000001d \
0x48501d01 \
0xec8b550c \
0x9c0000b8 \
0x00e18159 \
0xec8b5502 \
0xe80000b8 \
0x909057e7 \
0x00000090
MYST
ff060102423bab000407102e0600
1
Add1 = REG_BINARY 0x00000015 \
0xab401502 \
0x23b81e10 \
0x8bd88e00 \
0x8107140e \
0x1f0200e1 \
0x000000c3
Change1 = REG_BINARY 0x0000001d \
0x49501d01 \
0xec8b550c \
0x9c0000b8 \
0x00e18159 \
0xec8b5502 \
0xe80000b8 \
0x909061e7 \
0x00000090
PALED40
ff060102420032000407401b0100
1
Change1 = REG_BINARY 0x00000007 \
0x21b70701 \
0x000cd801
USA
ff06010242059b00040710780600
1
Change1 = REG_BINARY 0x0000001d \
0x44951d01 \
0xec8b550c \
0x9c0000b8 \
0x00e18159 \
0xec8b5502 \
0xe80000b8 \
0x90905667 \
0x00000090
Change2 = REG_BINARY 0x00000025 \
0x9b052501 \
0x00000010 \
0x00000000 \
0x00000000 \
0x00000000 \
0x23b81e00 \
0x8bd88e00 \
0x8107140e \
0x1f0200e1 \
0x000000c3
VB
ff060102ec353f00040780c81300
12
Change1 = REG_BINARY 0x00000011 \
0x031b1101 \
0xba3e8106 \
0x81033431 \
0x0931ba3e \
0x00000003
VB40016
ff0702021401ee3e000407d0460e00
16
Change1 = REG_BINARY 0x00000011 \
0x2a6d1101 \
0x6e3e8106 \
0x81033436 \
0x09366e3e \
0x00000003
ProductOptions [WorldR SystemFull AdminFull CreatorFull]
ProductType = WinNt
// Keep preprocessor happy
CurrentUser = USERNAME
TimeZoneInformation [WorldR AdminFull SystemOpRW PowerRW SystemFull CreatorFull]
//
// System uses this information to convert between the
// local time and Universal Time (UTC). Bias values
// represent minutes. Dates must be in mm/dd/yy hh:mm:ss
// format.
//
Bias = REG_DWORD 0
ComputerName
ComputerName
ComputerName = MACHINENAME
#if defined(DOC_ONLY)
ActiveComputerName
ComputerName = MACHINENAME
#endif // defined(DOC_ONLY)
PriorityControl [WorldRW AdminFull SystemFull CreatorFull]
Win32PrioritySeparation = REG_DWORD 2
Windows [WorldR AdminFull SystemFull SystemOpRW]
Directory = REG_EXPAND_SZ %SystemRoot%
SystemDirectory = REG_EXPAND_SZ %SystemRoot%\system32
ErrorMode = REG_DWORD 0
NoInteractiveServices = REG_DWORD 0
CSDVersion = REG_DWORD 0x100
WOW
//
// The windows subsystem uses the following information for starting
// dos applications.
//
// this is the base commandline that will be used to create a VDM
//
// NOTES:
// To change the dos logging level, add the -l# switch to this
// command line.
//
// To get debug output add -d switch
//
cmdline = REG_EXPAND_SZ %SystemRoot%\system32\ntvdm.exe
// this specifies the maximum size of a VDM in MB
size = 0
//
// The windows subsystem uses the following information for starting 16
// bit windows applications
//
//
// NOTES:
// To change the WOW logging level, add the -l# switch to this
// command line
//
// To get debug output add -d switch
//
// The -a switch (specifies win16 kernel) has to be last.
//
wowcmdline = REG_EXPAND_SZ %SystemRoot%\system32\ntvdm.exe -a %SystemRoot%\system32\krnl386
wowsize = 64
//
// If the following is yes then each 16 bit process will start in a new
// VDM and the VDM will exit when the 16-bit process exits (i.e. no more
// NTVDM.EXE processes laying around waiting to be reused.
//
DefaultSeparateVDM=no
// Default Timeout For LPT Port Flushing
LPT_timeout = 15
KnownDLLs = REG_SZ comm.drv \
commdlg.dll \
ctl3dv2.dll \
ddeml.dll \
keyboard.drv \
lanman.drv \
mapi.dll \
mmsystem.dll \
mouse.drv \
netapi.dll \
olecli.dll \
olesvr.dll \
pmspl.dll \
shell.dll \
sound.drv \
system.drv \
toolhelp.dll \
vga.drv \
wfwnet.drv \
win87em.dll \
winoldap.mod \
winsock.dll \
winspool.exe \
wowdeb.exe \
timer.drv \
rasapi16.dll \
compobj.dll \
storage.dll \
ole2.dll \
ole2disp.dll \
ole2nls.dll \
typelib.dll \
msvideo.dll \
avifile.dll \
msacm.dll \
mciavi.drv \
mciseq.drv \
mciwave.drv \
progman.exe \
avicap.dll
VirtualDeviceDrivers
//
// List of Virtual Device Drivers to be loaded by the
// MS-DOS subsystem during DOS intialization
//
VDD = REG_MULTI_SZ ""
Lsa [WorldR AdminFull SystemFull CreatorFull]
//
// List of authentication package DLLs to load
// Standard Microsoft package is msv1_0.
// Enabling msv1_0 will causes logon to be enabled.
//
Authentication Packages = REG_MULTI_SZ "msv1_0"
Bounds = REG_BINARY 8 0x00003000 0x00002000
Notification Packages = REG_MULTI_SZ "FPNWCLNT"
#ifdef _CAIRO_
Primary Package = REG_SZ kerberos
Security Packages = REG_MULTI_SZ "ntlm"
Policy
PolAdtEv = REG_BINARY 0x24 \
0012ff00 00000000 00000000 00000000 00000000 00000000 00000000 00000000 \
00000007
PolAdtFl = REG_BINARY 0x00000002 \
0x60120000
PolAdtLg = REG_BINARY 0x28 \
00000000 00002000 00823543 00000000 00000000 00132c20 00046656 00000000 \
00132c20 00132c20
PolAcDmN = REG_BINARY 0x0000000e \
0x00630041 0x006f0063 0x006e0075 0x00000074
PolAcDmS = REG_BINARY 0x00000018 \
0x00000401 0x05000000 0x0772a750 0x101a45a2 0xdd00ce92 0x9c441001
PolPrDmN = REG_BINARY 0x0000000e \
0x00630041 0x006f0063 0x006e0075 0x00000074
PolPrDmS = REG_BINARY 0x00000018 \
0x00000401 0x05000000 0x0772a750 0x101a45a2 0xdd00ce92 0x9c441001
Secrets
Domains
#endif // _CAIRO_
MSV1_0
Auth1 = REG_SZ FPNWCLNT
GraphicsDrivers [WorldR AdminFull SystemFull]
DCI
Timeout = REG_DWORD 7
DetectDisplay
Nls
CodePage
//
// For retail setup, text setup will automatically configure
// the ACP, OEMCP, MACCP and OEMHAL according to values in
// txtsetup.sif. The list below is merely the list of supported
// codepages, and is used in nls enumeration routines.
//
// For Win95 compatibility we always install all SBCS ANSI CPs
// so the new GDI TextOut functions work correctly.
//
//
// ANSI codepages.
//
1250 = c_1250.nls
1251 = c_1251.nls
1252 = c_1252.nls
1253 = c_1253.nls
1254 = c_1254.nls
1255 = c_1255.nls
1256 = c_1256.nls
1257 = c_1257.nls
1258 =
//
// OEM codepages.
//
437 =
737 =
775 =
850 =
852 =
855 =
857 =
860 =
861 =
863 =
865 =
866 =
869 =
//
// MAC codepages.
//
10000 =
10006 =
10007 =
10029 =
10079 =
10081 =
//
// EBCDIC codepages.
//
37 =
500 =
875 =
1026 =
//
// Teletex code page (needed for Exchange Server)
//
20261 = c_20261.nls
Language
#if 0
//
// Note: retail setup will automatically set Default
// according to values in txtsetup.sif.
// This value must not be in the retail hive because
// it would screw up the upgrade proces.
//
Default = 0409
//
// Far East languages -- not in western retail products.
//
0404 = l_intl.nls
0804 = l_intl.nls
0c04 = l_intl.nls
1004 = l_intl.nls
0411 = l_intl.nls
0412 = l_intl.nls
#endif
0409 = l_intl.nls
0809 = l_intl.nls
0c09 = l_intl.nls
1009 = l_intl.nls
1409 = l_intl.nls
1809 = l_intl.nls
1c09 = l_intl.nls
2009 = l_intl.nls
2409 = l_intl.nls
2809 = l_intl.nls
2c09 = l_intl.nls
0402 = l_intl.nls
0405 = l_intl.nls
0406 = l_intl.nls
0407 = l_intl.nls
0807 = l_intl.nls
0c07 = l_intl.nls
1007 = l_intl.nls
1407 = l_intl.nls
0408 = l_intl.nls
040a = l_intl.nls
080a = l_intl.nls
0c0a = l_intl.nls
100a = l_intl.nls
140a = l_intl.nls
180a = l_intl.nls
1c0a = l_intl.nls
200a = l_intl.nls
240a = l_intl.nls
280a = l_intl.nls
2c0a = l_intl.nls
300a = l_intl.nls
340a = l_intl.nls
380a = l_intl.nls
3c0a = l_intl.nls
400a = l_intl.nls
440a = l_intl.nls
480a = l_intl.nls
4c0a = l_intl.nls
500a = l_intl.nls
040b = l_intl.nls
040c = l_intl.nls
080c = l_intl.nls
0c0c = l_intl.nls
100c = l_intl.nls
140c = l_intl.nls
040e = l_intl.nls
040f = l_intl.nls
0410 = l_intl.nls
0810 = l_intl.nls
0413 = l_intl.nls
0813 = l_intl.nls
0414 = l_intl.nls
0814 = l_intl.nls
0415 = l_intl.nls
0416 = l_intl.nls
0816 = l_intl.nls
0418 = l_intl.nls
0419 = l_intl.nls
041a = l_intl.nls
081a = l_intl.nls
0c1a = l_intl.nls
041b = l_intl.nls
041d = l_intl.nls
081d = l_intl.nls
041f = l_intl.nls
0424 = l_intl.nls
0436 = l_intl.nls
041c = l_intl.nls
042d = l_intl.nls
0423 = l_intl.nls
0403 = l_intl.nls
0425 = l_intl.nls
0438 = l_intl.nls
0421 = l_intl.nls
0426 = l_intl.nls
0427 = l_intl.nls
0422 = l_intl.nls
Keyboard Layouts
//
// IMPORTANT NOTE: If you add a layout it must be added
// in txtsetup.sif also. Talk to the setup guys.
//
0000041C
Layout Text = Albanian
Layout File = KBDAL.DLL
00000423
Layout Text = Belarusian
Layout File = KBDBLR.DLL
00000813
Layout Text = Belgian Dutch
Layout File = KBDBE.DLL
0000080C
Layout Text = Belgian French
Layout File = KBDBE.DLL
00000416
Layout Text = Brazilian (ABNT)
Layout File = KBDBR.DLL
00010402
Layout Text = Bulgarian (Latin)
Layout File = KBDUS.DLL
Layout Id = REG_SZ 0004
00000402
Layout Text = Bulgarian
Layout File = KBDBU.DLL
00001009
Layout Text = Canadian English (Multilingual)
Layout File = KBDCA.DLL
00000C0C
Layout Text = Canadian French
Layout File = KBDFC.DLL
00010C0C
Layout Text = Canadian French (Multilingual)
Layout File = KBDCA.DLL
Layout Id = REG_SZ 0085
0000041a
Layout Text = Croatian
Layout File = KBDCR.DLL
00000405
Layout Text = Czech
Layout File = KBDCZ.DLL
00010405
Layout Text = Czech (QWERTY)
Layout File = KBDCZ1.DLL
Layout Id = REG_SZ 0005
00000406
Layout Text = Danish
Layout File = KBDDA.DLL
00000413
Layout Text = Dutch
Layout File = KBDNE.DLL
00000425
Layout Text = Estonian
Layout File = KBDEST.DLL
0000040B
Layout Text = Finnish
Layout File = KBDFI.DLL
0000040C
Layout Text = French
Layout File = KBDFR.DLL
00000407
Layout Text = German
Layout File = KBDGR.DLL
00010407
Layout Text = German (IBM)
Layout File = KBDGR1.DLL
Layout Id = REG_SZ 0012
00000408
Layout Text = Greek
Layout File = KBDHE.DLL
00050408
Layout Text = Greek Latin
Layout File = KBDGKL.DLL
Layout Id = REG_SZ 0019
00010408
Layout Text = Greek (220)
Layout File = KBDHE220.DLL
Layout Id = REG_SZ 0016
00020408
Layout Text = Greek (319)
Layout File = KBDHE319.DLL
Layout Id = REG_SZ 0018
00030408
Layout Text = Greek (220) Latin
Layout File = KBDHELA2.DLL
Layout Id = REG_SZ 0017
00040408
Layout Text = Greek (319) Latin
Layout File = KBDHELA3.DLL
Layout Id = REG_SZ 0011
0000040E
Layout Text = Hungarian
Layout File = KBDHU.DLL
0001040E
Layout Text = Hungarian 101-key
Layout File = KBDHU1.DLL
Layout Id = REG_SZ 0006
0000040F
Layout Text = Icelandic
Layout File = KBDIC.DLL
00001809
Layout Text = Irish
Layout File = KBDIR.DLL
00000410
Layout Text = Italian
Layout File = KBDIT.DLL
00010410
Layout Text = Italian (142)
Layout File = KBDIT142.DLL
Layout Id = REG_SZ 0003
0000080A
Layout Text = Latin American
Layout File = KBDLA.DLL
00000426
Layout Text = Latvian
Layout File = KBDLV.DLL
00010426
Layout Text = Latvian (QWERTY)
Layout File = KBDLV1.DLL
Layout Id = REG_SZ 0015
00000427
Layout Text = Lithuanian
Layout File = KBDLT.DLL
00000414
Layout Text = Norwegian
Layout File = KBDNO.DLL
00000415
Layout Text = Polish (Programmers)
Layout File = KBDPL1.DLL
00010415
Layout Text = Polish (214)
Layout File = KBDPL.DLL
Layout Id = REG_SZ 0007
00000816
Layout Text = Portuguese
Layout File = KBDPO.DLL
00000418
Layout Text = Romanian
Layout File = KBDRO.DLL
00000419
Layout Text = Russian
Layout File = KBDRU.DLL
00010419
Layout Text = Russian (Typewriter)
Layout File = KBDRU1.DLL
Layout Id = REG_SZ 0008
00000C1A
Layout Text = Serbian (Cyrillic)
Layout File = KBDYCC.DLL
00010C1A
Layout Text = Serbian (Latin)
Layout File = KBDYCL.DLL
Layout Id = REG_SZ 0009
0000041B
Layout Text = Slovak
Layout File = KBDSL.DLL
0001041B
Layout Text = Slovak (QWERTY)
Layout File = KBDSL1.DLL
Layout Id = REG_SZ 0013
00000424
Layout Text = Slovenian
Layout File = KBDCR.DLL
0000040A
Layout Text = Spanish
Layout File = KBDSP.DLL
0001040A
Layout Text = Spanish variation
Layout File = KBDES.DLL
Layout Id = REG_SZ 0086
0000041D
Layout Text = Swedish
Layout File = KBDSW.DLL
0000100C
Layout Text = Swiss French
Layout File = KBDSF.DLL
00000807
Layout Text = Swiss German
Layout File = KBDSG.DLL
0001041F
Layout Text = Turkish F
Layout File = KBDTUF.DLL
Layout Id = REG_SZ 0014
0000041F
Layout Text = Turkish Q
Layout File = KBDTUQ.DLL
00000422
Layout Text = Ukrainian
Layout File = KBDUR.DLL
00000809
Layout Text = United Kingdom
Layout File = KBDUK.DLL
00000409
Layout Text = US
Layout File = KBDUS.DLL
00010409
Layout Text = US-Dvorak
Layout File = KBDDV.DLL
Layout Id = REG_SZ 0002
00030409
Layout Text = US-Dvorak for left hand
Layout File = KBDUSL.DLL
Layout Id = REG_SZ 001A
00040409
Layout Text = US-Dvorak for right hand
Layout File = KBDUSR.DLL
Layout Id = REG_SZ 001B
00020409
Layout Text = US-International
Layout File = KBDUSX.DLL
Layout Id = REG_SZ 0001
Keyboard Layout
DosKeybCodes
0000080C=be
00000813=be
00000402=bg
00000416=br
00000C0C=cf
00000405=cz
0000041B=sl
00000406=dk
0000040B=su
0000040C=fr
00000408=gk
00010408=gk
00020408=gk
00000407=gr
0000040E=hu
00000410=it
00010410=it
0000080A=la
00000413=nl
00000414=no
00000415=pl
00010415=pl
00000816=po
00000418=ro
0000040A=sp
0001040A=sp
0000041D=sv
0000100C=sf
00000807=sg
0000041F=tr
0001041F=tr
00000809=uk
00000409=us
0000041A=yu
00000424=yu
// The remaining entries extend standard DOS
00010409=dv
00020409=us
00030409=usl
00040409=usr
// prefer 00001009=ca, but no DOS Canadian Multilingual:
00001009=us
// prefer 00010C0C=ca, but no DOS Canadian Multilingual:
00010C0C=cf
0000040F=is
00000419=ru
0000041C=us
00000422=us
00000423=us
00000425=us
00000426=us
00000427=us
00000C1A=us
00001809=us
00010402=us
00010405=cz
00010407=gr
00010419=ru
0001041B=sl
00010426=us
00010C1A=us
00050408=gk
DosKeybIDs
0000041F=179
0001041F=440
00000410=141
00010410=142
00010408=220
00020408=319
00010415=214
NetworkProvider
Order
Setup
Print
MajorVersion = REG_DWORD 0x00000002
MinorVersion = REG_DWORD 0x00000000
PriorityClass = REG_DWORD 0x00000000
Environments
Windows 4.0
Directory = REG_SZ WIN40
Drivers
Print Processors
Windows NT Alpha_AXP
Directory = REG_SZ W32ALPHA
Drivers
Print Processors
Windows NT PowerPC
Directory = REG_SZ W32PPC
Drivers
Print Processors
Windows NT R4000
Directory = REG_SZ W32MIPS
Drivers
Print Processors
Windows NT x86
Directory = REG_SZ W32X86
Drivers
Print Processors
Monitors
PJL Language Monitor
Driver = REG_SZ pjlmon.dll
Printers
Providers
Order = REG_MULTI_SZ "LanMan Print Services"
LanMan Print Services
Name = win32spl.dll
DisplayName = REG_SZ LanMan Print Services
SystemResources
BusValues
Internal = REG_BINARY 8 0 0
Isa = REG_BINARY 8 1 0
Eisa = REG_BINARY 8 2 1
MCA = REG_BINARY 8 3 1
TurboChannel = REG_BINARY 8 4 0
PCI = REG_BINARY 8 5 1
VME = REG_BINARY 8 6 0
NuBus = REG_BINARY 8 7 0
PCMCIA = REG_BINARY 8 8 1
CBus = REG_BINARY 8 9 0
MPI = REG_BINARY 8 10 0
MPSA = REG_BINARY 8 11 0
ReservedResources
Isa = REG_RESOURCE_LIST 0x0294 \
1 1 0 0 40 \
0x0101 0x0000 0 0x0100 \
\
\
0x0301 0x42E8 0 0x8 \
0x0301 0x4AE8 0 0x8 \
0x0301 0x82E8 0 0x8 \
0x0301 0x86E8 0 0x8 \
0x0301 0x8AE8 0 0x8 \
0x0301 0x8EE8 0 0x8 \
0x0301 0x92E8 0 0x8 \
0x0301 0x96E8 0 0x8 \
0x0301 0x9AE8 0 0x8 \
0x0301 0x9EE8 0 0x8 \
0x0301 0xA2E8 0 0x8 \
0x0301 0xA6E8 0 0x8 \
0x0301 0xAAE8 0 0x8 \
0x0301 0xAEE8 0 0x8 \
0x0301 0xB6E8 0 0x8 \
0x0301 0xBAE8 0 0x8 \
0x0301 0xBEE8 0 0x8 \
0x0301 0xC2E8 0 0x8 \
0x0301 0xC6E8 0 0x8 \
0x0301 0xCAE8 0 0x8 \
0x0301 0xCEE8 0 0x8 \
0x0301 0xD2E8 0 0x8 \
0x0301 0xD6E8 0 0x8 \
0x0301 0xDAE8 0 0x8 \
0x0301 0xDEE8 0 0x8 \
0x0301 0xE2E8 0 0x8 \
0x0301 0xE6E8 0 0x8 \
0x0301 0xEAE8 0 0x8 \
0x0301 0xEEE8 0 0x8 \
0x0301 0xF6EE 0 0x2 \
0x0301 0xFAEE 0 0x2 \
0x0301 0xFEEE 0 0x2 \
\
\
0x0302 0x03 0x03 0xffffffff \
0x0302 0x04 0x04 0xffffffff \
0x0302 0x0E 0x0E 0xffffffff \
0x0302 0x06 0x06 0xffffffff \
0x0302 0x0C 0x0C 0xffffffff \
0x0302 0x01 0x01 0xffffffff \
0x0303 0xFFBFFFFF 0 0x00400000
AssignmentOrdering
Isa = PCFlat
Eisa = PCFlat
MCA = PCFlat
PCMCIA = PCFlat
PCFlat = REG_RESOURCE_REQUIREMENTS 0x000004A8 \
0x000004A8 0 0 0 0 0 0 1 0x00010001 0x00000024 \
0x0100 0 0 0 0x0500 0 0xFFFF 0 \
\
0x0108 0 0 0 0x0140 0 0x017F 0 \
0x0108 0 0 0 0x0200 0 0x02FF 0 \
0x0108 0 0 0 0x0300 0 0x036F 0 \
\
0x0108 0 0 0 0x0378 0 0x037A 0 \
0x0108 0 0 0 0x02E8 0 0x02FF 0 \
0x0108 0 0 0 0x01F0 0 0x01F8 0 \
0x0108 0 0 0 0x03B0 0 0x03CF 0 \
0x0108 0 0 0 0x03E8 0 0x03FF 0 \
0x0108 0 0 0 0x01CE 0 0x01CF 0 \
0x0108 0 0 0 0x0100 0 0x03FF 0 \
\
0x0200 0 0x0F 0x0F 0 0 0 0 \
0x0208 0 0x0D 0x0D 0 0 0 0 \
0x0208 0 0x0C 0x0C 0 0 0 0 \
0x0208 0 0x09 0x09 0 0 0 0 \
0x0208 0 0x08 0x08 0 0 0 0 \
0x0208 0 0x07 0x07 0 0 0 0 \
0x0208 0 0x0B 0x0B 0 0 0 0 \
0x0208 0 0x0A 0x0A 0 0 0 0 \
0x0208 0 0x02 0x02 0 0 0 0 \
0x0208 0 0x05 0x05 0 0 0 0 \
0x0208 0 0x03 0x03 0 0 0 0 \
0x0208 0 0x04 0x04 0 0 0 0 \
0x0208 0 0x0E 0x0E 0 0 0 0 \
0x0208 0 0x06 0x06 0 0 0 0 \
0x0208 0 0x0C 0x0C 0 0 0 0 \
0x0208 0 0x01 0x01 0 0 0 0 \
0x0208 0 0x00 0x0F 0 0 0 0 \
\
0x0300 0 0 0 0x00100000 0 0xFFAFFFFF 0 \
\
0x0308 0 0 0 0x000F0000 0 0x000FFFFF 0 \
0x0308 0 0 0 0x00080000 0 0x000BFFFF 0 \
\
0x0308 0 0 0 0x00080000 0 0x000FFFFF 0 \
0x0308 0 0 0 0x00080000 0 0xFFF7FFFF 0 \
\
0x0400 0 0x06 0x0F 0 0 0 0 \
0x0408 0 0x03 0x04 0 0 0 0 \
0x0408 0 0x00 0x0F 0 0 0 0
PCI = REG_RESOURCE_REQUIREMENTS 0x000008E8 \
0x000008E8 0 0 0 0 0 0 1 0x00010001 0x00000046 \
0x0100 0 0 0 0xFC00 0 0xFCFF 0 \
0x0108 0 0 0 0xF800 0 0xF9FF 0 \
0x0108 0 0 0 0xF400 0 0xF4FF 0 \
0x0108 0 0 0 0xF000 0 0xF0FF 0 \
\
0x0108 0 0 0 0xEC00 0 0xECFF 0 \
0x0108 0 0 0 0xE800 0 0xE9FF 0 \
0x0108 0 0 0 0xE400 0 0xE4FF 0 \
0x0108 0 0 0 0xE000 0 0xE0FF 0 \
\
0x0108 0 0 0 0xDC00 0 0xDCFF 0 \
0x0108 0 0 0 0xD800 0 0xD9FF 0 \
0x0108 0 0 0 0xD400 0 0xD4FF 0 \
0x0108 0 0 0 0xD000 0 0xD0FF 0 \
\
0x0108 0 0 0 0xCC00 0 0xCCFF 0 \
0x0108 0 0 0 0xC800 0 0xC9FF 0 \
0x0108 0 0 0 0xC400 0 0xC4FF 0 \
0x0108 0 0 0 0xC000 0 0xC0FF 0 \
\
0x0108 0 0 0 0xBC00 0 0xBCFF 0 \
0x0108 0 0 0 0xB800 0 0xB9FF 0 \
0x0108 0 0 0 0xB400 0 0xB4FF 0 \
0x0108 0 0 0 0xB000 0 0xB0FF 0 \
\
0x0108 0 0 0 0xAC00 0 0xACFF 0 \
0x0108 0 0 0 0xA800 0 0xA9FF 0 \
0x0108 0 0 0 0xA400 0 0xA4FF 0 \
0x0108 0 0 0 0xA000 0 0xA0FF 0 \
\
0x0108 0 0 0 0x9C00 0 0x9CFF 0 \
0x0108 0 0 0 0x9800 0 0x99FF 0 \
0x0108 0 0 0 0x9400 0 0x94FF 0 \
0x0108 0 0 0 0x9000 0 0x90FF 0 \
\
0x0108 0 0 0 0x8C00 0 0x8CFF 0 \
0x0108 0 0 0 0x8800 0 0x89FF 0 \
0x0108 0 0 0 0x8400 0 0x84FF 0 \
0x0108 0 0 0 0x8000 0 0x80FF 0 \
\
0x0108 0 0 0 0x7C00 0 0x7CFF 0 \
0x0108 0 0 0 0x7800 0 0x79FF 0 \
0x0108 0 0 0 0x7400 0 0x74FF 0 \
0x0108 0 0 0 0x7000 0 0x70FF 0 \
\
0x0108 0 0 0 0x6C00 0 0x6CFF 0 \
0x0108 0 0 0 0x6800 0 0x69FF 0 \
0x0108 0 0 0 0x6400 0 0x64FF 0 \
0x0108 0 0 0 0x6000 0 0x60FF 0 \
\
0x0108 0 0 0 0x5C00 0 0x5CFF 0 \
0x0108 0 0 0 0x5800 0 0x59FF 0 \
0x0108 0 0 0 0x5400 0 0x54FF 0 \
0x0108 0 0 0 0x5000 0 0x50FF 0 \
\
0x0108 0 0 0 0x4C00 0 0x4CFF 0 \
0x0108 0 0 0 0x4800 0 0x49FF 0 \
0x0108 0 0 0 0x4400 0 0x44FF 0 \
0x0108 0 0 0 0x4000 0 0x40FF 0 \
\
0x0108 0 0 0 0x3C00 0 0x3CFF 0 \
0x0108 0 0 0 0x3800 0 0x39FF 0 \
0x0108 0 0 0 0x3400 0 0x34FF 0 \
0x0108 0 0 0 0x3000 0 0x30FF 0 \
\
0x0108 0 0 0 0x2C00 0 0x1CFF 0 \
0x0108 0 0 0 0x2800 0 0x19FF 0 \
0x0108 0 0 0 0x2400 0 0x14FF 0 \
0x0108 0 0 0 0x2000 0 0x10FF 0 \
\
0x0108 0 0 0 0x1C00 0 0x1CFF 0 \
0x0108 0 0 0 0x1800 0 0x19FF 0 \
0x0108 0 0 0 0x1400 0 0x14FF 0 \
0x0108 0 0 0 0x1000 0 0x10FF 0 \
\
0x0108 0 0 0 0x0C00 0 0x0CFF 0 \
0x0108 0 0 0 0x0800 0 0x09FF 0 \
0x0108 0 0 0 0x0500 0 0xFFFFFFFF 0 \
\
0x0200 0 0x00 0xFFFFFFFF 0 0 0 0 \
\
0x0300 0 0 0 0x00100000 0 0xFFAFFFFF 0 \
\
0x0308 0 0 0 0x000F0000 0 0x000FFFFF 0 \
0x0308 0 0 0 0x00080000 0 0x000BFFFF 0 \
\
0x0308 0 0 0 0x00080000 0 0x000FFFFF 0 \
0x0308 0 0 0 0x00080000 0 0xFFF7FFFF 0 \
\
0x0400 0 0x06 0xFF 0 0 0 0
#ifdef _CAIRO_
//
// Cairo specific tree of goodies
//
ContentIndex [WorldR AdminFull SystemFull CreatorFull]
FilterMemory = REG_DWORD 0x00000080
MaxDefaultFilter = REG_DWORD 0x00000100
UseOle = REG_DWORD 0x00000000
ChangeNotificationInterval = REG_DWORD 0x0000000F
MaxWordLists = REG_DWORD 0x00000014
MinSizeMergeWordlists = REG_DWORD 0x00000400
MinDiskFreeForceMerge = REG_DWORD 0x0000000f
MaxShadowFreeForceMerge = REG_DWORD 0x00000014
MaxShadowIndexSize = REG_DWORD 0x0000000f
MaxWordlistSize = REG_DWORD 0x00000014
MinWordlistMemory = REG_DWORD 0x00000005
LowResourceSleep = REG_DWORD 0x0000003c
MaxWordlistMemoryLoad = REG_DWORD 0x0000005f
MaxFreshCount = REG_DWORD 0x00001388
MaxQueueChunks = REG_DWORD 0x00000014
MasterMergeCheckpointInterval = REG_DWORD 0x00000100
FilterBufferSize = REG_DWORD 0x00000080
MaxFilesizeFiltered = REG_DWORD 0x00000100
MaxFilesizeMultiplier = REG_DWORD 0x00000003
GenerateRelevantWords = REG_DWORD 0x00000001
MaxRelevantWords = REG_DWORD 0x0000000a
UsePhraseLattice = REG_DWORD 0x00000001
ClusteringTime = REG_DWORD 0x0000ffff
MinIdleQueryThreads = REG_DWORD 0x00000001
MaxActiveQueryThreads = REG_DWORD 0x00000003
MaxRowsPerTimeSlice = REG_DWORD 0x00000064
MaxMergeInterval = REG_DWORD 0x0000000a
ThreadPriorityMerge = REG_DWORD 0xfffffffe
ThreadPriorityFilter = REG_DWORD 0x00000001
ThreadClassFilter = REG_DWORD 0x00000040
MaxUpdates = REG_DWORD 0x00000064
FilterRetries = REG_DWORD 0x00000004
FilterContents = REG_DWORD 0x00000000
MasterMergeTime = REG_DWORD 0x00000000
DaemonResponseTimeout = REG_DWORD 0x00000005
MaxPendingDocuments = REG_DWORD 0x00000020
MaxIdealIndexes = REG_DWORD 0x00000005
MaxIndexes = REG_DWORD 0x00000032
MinMergeIdleTime = REG_DWORD 0x0000005a
Language
InstalledLangs = REG_MULTI_SZ "English_US" "English_UK" "French_French" "German_German" "Italian_Italian" "Swedish_Default" "Spanish_Modern" "Dutch_Dutch" "Portuguese_Portuguese" "Portuguese_Brazilian" "Neutral"
English_US
Locale = REG_DWORD 1033
WBreakerClass = REG_SZ {59E09780-8099-101B-8DF3-00000B65C3B5}
StemmerClass = REG_SZ {eeed4c20-7f1b-11ce-be57-00aa0051fe20}
NoiseFile = REG_SZ noise.enu
English_UK
Locale = REG_DWORD 2057
WBreakerClass = REG_SZ {59E097e4-8099-101B-8DF3-00000B65C3B5}
StemmerClass = REG_SZ {d99f7670-7f1a-11ce-be57-00aa0051fe20}
NoiseFile = REG_SZ noise.eng
French_French
Locale = REG_DWORD 1036
WBreakerClass = REG_SZ {59E09848-8099-101B-8DF3-00000B65C3B5}
StemmerClass = REG_SZ {2a6eb050-7f1c-11ce-be57-00aa0051fe20}
NoiseFile = REG_SZ noise.fra
German_German
Locale = REG_DWORD 1031
WBreakerClass = REG_SZ {9B08E210-E51B-11CD-BC7F-00AA003DB18E}
StemmerClass = REG_SZ {510a4910-7f1c-11ce-be57-00aa0051fe20}
NoiseFile = REG_SZ noise.deu
Italian_Italian
Locale = REG_DWORD 1040
WBreakerClass = REG_SZ {fd86b5d0-12c6-11ce-bd31-00aa004bbb1f}
StemmerClass = REG_SZ {6d36ce10-7f1c-11ce-be57-00aa0051fe20}
NoiseFile = REG_SZ noise.ita
Swedish_Default
Locale = REG_DWORD 1053
WBreakerClass = REG_SZ {01c6b350-12c7-11ce-bd31-00aa004bbb1f}
StemmerClass = REG_SZ {9478f640-7f1c-11ce-be57-00aa0051fe20}
NoiseFile = REG_SZ noise.sve
Spanish_Modern
Locale = REG_DWORD 3082
WBreakerClass = REG_SZ {0285b5c0-12c7-11ce-bd31-00aa004bbb1f}
StemmerClass = REG_SZ {b0516ff0-7f1c-11ce-be57-00aa0051fe20}
NoiseFile = REG_SZ noise.esn
Dutch_Dutch
Locale = REG_DWORD 1043
WBreakerClass = REG_SZ {66b37110-8bf2-11ce-be59-00aa0051fe20}
StemmerClass = REG_SZ {860d28d0-8bf4-11ce-be59-00aa0051fe20}
NoiseFile = REG_SZ noise.nld
Portuguese_Portuguese
Locale = REG_DWORD 2070
WBreakerClass = REG_SZ {683aa110-8bf2-11ce-be59-00aa0051fe20}
StemmerClass = REG_SZ {86a77ec0-8bf4-11ce-be59-00aa0051fe20}
NoiseFile = REG_SZ noise.ptg
Portuguese_Brazilian
Locale = REG_DWORD 1046
WBreakerClass = REG_SZ {7baa4e90-8bf4-11ce-be59-00aa0051fe20}
StemmerClass = REG_SZ {871275e0-8bf4-11ce-be59-00aa0051fe20}
NoiseFile = REG_SZ noise.ptb
Neutral
Locale = REG_DWORD 0
WBreakerClass = REG_SZ {369647e0-17b0-11ce-9950-00aa004bbb1f}
StemmerClass = REG_SZ
NoiseFile = REG_SZ noise.dat
Cairo [WorldR AdminFull SystemFull CreatorFull]
DS [WorldR AdminFull SystemFull CreatorFull]
MachineState = REG_DWORD 0
DomainName = REG_SZ WORKGROUP
OuName = REG_SZ
DSMachineChecksum = REG_DWORD 0
DSMachineSyncFlag = REG_DWORD 0
ReliableTimeSource = REG_DWORD 0
Locator [WorldR AdminFull SystemFull CreatorFull]
#endif // _CAIRO_
Enum [WorldR SystemFull]
Hardware Profiles [WorldR AdminFull SystemFull CreatorFull]
0001 [WorldR AdminFull SystemFull CreatorFull]
Software [WorldRWD AdminFull SystemFull CreatorFull]
System [WorldR AdminRWD SystemFull]
CurrentControlSet [WorldR AdminFull SystemFull CreatorFull]
Control [SystemOpRWD WorldR AdminFull SystemFull CreatorFull]
Class
Enum [SystemOpRWD WorldR AdminFull SystemFull CreatorFull]
Services [SystemOpRWD WorldR AdminFull SystemFull CreatorFull]
Services [WorldR AdminFull SystemOpRWD SystemFull CreatorFull]
Modem
Type = SC_Type_KernelDriver
Start = SC_Start_DemandLoad
Group = Extended base
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000004
PlugPlayServiceType = REG_DWORD 0x00000002
Parameters
Spooler
Type = REG_DWORD 0x00000110
Start = SC_Start_DemandLoad
Group = SpoolerGroup
ErrorControl = SC_Error_Normal
ImagePath = REG_EXPAND_SZ %SystemRoot%\system32\spoolss.exe
ObjectName = REG_SZ LocalSystem
Parameters
Mup
Type = SC_Type_FileSystem
Start = SC_Start_DemandLoad
DisplayName = REG_SZ Mup
Group = Network
ErrorControl = SC_Error_Normal
ImagePath = REG_EXPAND_SZ \SystemRoot\System32\drivers\mup.sys
Parameters
RpcSs
Type = SC_Type_Win32ServiceOwnProcess
DisplayName = REG_SZ Remote Procedure Call (RPC) Service
ErrorControl = SC_Error_Normal
ImagePath = REG_EXPAND_SZ %SystemRoot%\system32\RpcSs.exe
ObjectName = REG_SZ LocalSystem
Start = SC_Start_AutoLoad
Parameters
Security
//
// The Security key lets any user start this service.
//
Security = REG_BINARY 204 \
0x80140001 0x000000b4 0x000000c0 0x00000014 0x00000034 \
0x00200002 0x00000001 0x00188002 0x000f01ff 0x00000101 \
0x01000000 0x00000000 0x00000220 0x00800002 0x00000005 \
0x00180300 0x0002008d 0x00000101 0x01000000 0x00000000 \
0x00000000 0x00180300 0x000f01ff 0x00000201 0x05000000 \
0x00000020 0x00000220 0x00180300 0x0002008f 0x00000201 \
0x05000000 0x00000020 0x00000223 0x00180300 0x0000009d \
0x00000101 0x05000000 0x00000004 0x00000223 0x00180300 \
0x0000009d 0x00000201 0x05000000 0x00000020 0x00000221 \
0x00000101 0x05000000 0x00000012 0x00000101 0x05000000 \
0x00000012
#ifdef _CAIRO_
AlertSystem
Type = SC_Type_Win32ServiceOwnProcess
Start = SC_Start_DisableLoad
ObjectName = REG_SZ LocalSystem
DependOnService = REG_MULTI_SZ "RpcSs
DisplayName = Alert System
ErrorControl = SC_Error_Normal
ImagePath = REG_EXPAND_SZ %SystemRoot%\System32\alertsys.exe
Parameters
ComponentID
{5e3c2710-44f3-11ce-bdc8-00aa004ba935}
AlertMessageFile = REG_EXPAND_SZ %SystemRoot%\system32\orasvc.exe
CairoOra
Performance
Close = REG_SZ CloseData
Collect = REG_SZ CollectData
Library = REG_SZ oramon.dll
Open = REG_SZ OpenData
CiFilter
Type = SC_Type_Win32ServiceOwnProcess
Start = SC_Start_DisableLoad
ObjectName = REG_SZ LocalSystem
DependOnService = REG_MULTI_SZ "RpcSs
DisplayName = Ci Filter Daemon
ErrorControl = SC_Error_Normal
ImagePath = REG_EXPAND_SZ %SystemRoot%\System32\cifilter.exe
Security
//
// The Security key lets any user start this service.
//
Security = REG_BINARY 180 \
0x80140001 0x0000009C 0x000000A8 0x00000014 0x00000034 \
0x00200002 0x00000001 0x00188002 0x000F01FF 0x00000101 \
0x01000000 0x00000000 0x00000220 0x00680002 0x00000004 \
0x00180300 0x0002008D 0x00000101 0x01000000 0x00000000 \
0x00000000 0x00180300 0x000F01FF 0x00000201 0x05000000 \
0x00000020 0x00000220 0x00180300 0x0002008F 0x00000201 \
0x05000000 0x00000020 0x00000223 0x00180300 0x0000009D \
0x00000101 0x05000000 0x00000004 0x00000223 0x00000101 \
0x05000000 0x00000012 0x00000101 0x05000000 0x00000012
Filtering
Performance
Close = REG_SZ DoneFILTERPerformanceData
Collect = REG_SZ CollectFILTERPerformanceData
Library = REG_SZ Query.dll
Open = REG_SZ InitializeFILTERPerformanceData
Linkage
Bind = REG_MULTI_SZ "\Dummy"
Export = REG_MULTI_SZ "\Dummy"
Route = REG_MULTI_SZ "\Dummy"
ContentIndex
Performance
Close = REG_SZ DoneCIPerformanceData
Collect = REG_SZ CollectCIPerformanceData
Library = REG_SZ Query.dll
Open = REG_SZ InitializeCIPerformanceData
Linkage
Bind = REG_MULTI_SZ "\Dummy"
Export = REG_MULTI_SZ "\Dummy"
Route = REG_MULTI_SZ "\Dummy"
#endif // _CAIRO_
Netlogon
Parameters
DisablePasswordChange = REG_DWORD 0
NetDDE
Type = SC_Type_Win32ServiceShareProcess
Start = SC_Start_DisableLoad
ErrorControl = SC_Error_Normal
ImagePath = REG_EXPAND_SZ %SystemRoot%\system32\netdde.exe
DependOnService = REG_MULTI_SZ "NetDDEDSDM"
DisplayName = REG_SZ Network DDE
ObjectName = REG_SZ LocalSystem
Group = REG_SZ NetDDEGroup
Security
//
// The Security key lets any user start this service.
//
Security = REG_BINARY 180 \
0x80140001 0x0000009C 0x000000A8 0x00000014 0x00000034 \
0x00200002 0x00000001 0x00188002 0x000F01FF 0x00000101 \
0x01000000 0x00000000 0x00000220 0x00680002 0x00000004 \
0x00180300 0x0002008D 0x00000101 0x01000000 0x00000000 \
0x00000000 0x00180300 0x000F01FF 0x00000201 0x05000000 \
0x00000020 0x00000220 0x00180300 0x0002008F 0x00000201 \
0x05000000 0x00000020 0x00000223 0x00180300 0x0000009D \
0x00000101 0x05000000 0x00000004 0x00000223 0x00000101 \
0x05000000 0x00000012 0x00000101 0x05000000 0x00000012
NetDDEdsdm
Type = SC_Type_Win32ServiceShareProcess
Start = SC_Start_DisableLoad
ErrorControl = SC_Error_Normal
ImagePath = REG_EXPAND_SZ %SystemRoot%\system32\netdde.exe
DependOnService = REG_MULTI_SZ ""
DisplayName = REG_SZ Network DDE DSDM
ObjectName = REG_SZ LocalSystem
Security
//
// The Security key lets any user start this service.
//
Security = REG_BINARY 180 \
0x80140001 0x0000009C 0x000000A8 0x00000014 0x00000034 \
0x00200002 0x00000001 0x00188002 0x000F01FF 0x00000101 \
0x01000000 0x00000000 0x00000220 0x00680002 0x00000004 \
0x00180300 0x0002008D 0x00000101 0x01000000 0x00000000 \
0x00000000 0x00180300 0x000F01FF 0x00000201 0x05000000 \
0x00000020 0x00000220 0x00180300 0x0002008F 0x00000201 \
0x05000000 0x00000020 0x00000223 0x00180300 0x0000009D \
0x00000101 0x05000000 0x00000004 0x00000223 0x00000101 \
0x05000000 0x00000012 0x00000101 0x05000000 0x00000012
TapiSrv
Type = SC_Type_Win32ServiceOwnProcess
Start = SC_Start_DemandLoad
ErrorControl = SC_Error_Normal
ImagePath = REG_EXPAND_SZ %SystemRoot%\system32\tapisrv.exe
ObjectName = REG_SZ LocalSystem
DisplayName = REG_SZ Telephony Service
Security
//
// The Security key lets any user start this service.
//
Security = REG_BINARY 204 \
0x80140001 0x000000b4 0x000000c0 0x00000014 0x00000034 \
0x00200002 0x00000001 0x00188002 0x000f01ff 0x00000101 \
0x01000000 0x00000000 0x00000220 0x00800002 0x00000005 \
0x00180300 0x0002008d 0x00000101 0x01000000 0x00000000 \
0x00000000 0x00180300 0x000f01ff 0x00000201 0x05000000 \
0x00000020 0x00000220 0x00180300 0x0002008f 0x00000201 \
0x05000000 0x00000020 0x00000223 0x00180300 0x0000009d \
0x00000101 0x05000000 0x00000004 0x00000223 0x00180300 \
0x0000009d 0x00000201 0x05000000 0x00000020 0x00000221 \
0x00000101 0x05000000 0x00000012 0x00000101 0x05000000 \
0x00000012
Performance
Close = REG_SZ CloseTapiPerformanceData
Collect = REG_SZ CollectTapiPerformanceData
Library = REG_SZ tapiperf.dll
Open = REG_SZ OpenTapiPerformanceData
ClipSrv
Type = SC_Type_Win32ServiceOwnProcess
Start = SC_Start_DisableLoad
ErrorControl = SC_Error_Normal
ImagePath = REG_EXPAND_SZ %SystemRoot%\system32\clipsrv.exe
DependOnService = REG_MULTI_SZ "NetDDE"
DisplayName = REG_SZ ClipBook Server
ObjectName = REG_SZ LocalSystem
Security
//
// The Security key lets any user start this service.
//
Security = REG_BINARY 180 \
0x80140001 0x0000009C 0x000000A8 0x00000014 0x00000034 \
0x00200002 0x00000001 0x00188002 0x000F01FF 0x00000101 \
0x01000000 0x00000000 0x00000220 0x00680002 0x00000004 \
0x00180300 0x0002008D 0x00000101 0x01000000 0x00000000 \
0x00000000 0x00180300 0x000F01FF 0x00000201 0x05000000 \
0x00000020 0x00000220 0x00180300 0x0002008F 0x00000201 \
0x05000000 0x00000020 0x00000223 0x00180300 0x0000009D \
0x00000101 0x05000000 0x00000004 0x00000223 0x00000101 \
0x05000000 0x00000012 0x00000101 0x05000000 0x00000012
PlugPlay
Type = SC_Type_Win32ServiceShareProcess
Start = SC_Start_AutoLoad
Group = PlugPlay
ErrorControl = SC_Error_Normal
ImagePath = REG_EXPAND_SZ %SystemRoot%\system32\services.exe
ObjectName = REG_SZ LocalSystem
DisplayName = REG_SZ Plug and Play
PlugPlayServiceType = REG_DWORD 0x00000003
EventLog [WorldR AdminFull SystemFull CreatorFull]
Type = SC_Type_Win32ServiceShareProcess
Start = SC_Start_DisableLoad
Group = Event log
ErrorControl = SC_Error_Normal
ImagePath = REG_EXPAND_SZ %SystemRoot%\system32\services.exe
ObjectName = REG_SZ LocalSystem
PlugPlayServiceType = REG_DWORD 0x00000003
Application
File = REG_EXPAND_SZ %SystemRoot%\system32\config\AppEvent.Evt
MaxSize = REG_DWORD 0x80000
Retention = REG_DWORD 604800
DrWatson
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\drwtsn32.exe
TypesSupported = REG_DWORD 0x07
hpmon
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\hpmon.dll
TypesSupported = REG_DWORD 0x07
ntbackup
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\ntbackup.exe
TypesSupported = REG_DWORD 0x07
Perfctrs
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\perfctrs.dll
TypesSupported = REG_DWORD 0x07
Perfmon
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\perfmon.exe
TypesSupported = REG_DWORD 0x07
Perflib
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\prflbmsg.dll
TypesSupported = REG_DWORD 0x07
Type 1 Installer
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\t1instal.dll
TypesSupported = REG_DWORD 0x0007
Windows 3.1 Migration
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\advapi32.dll
TypesSupported = REG_DWORD 0x07
Winlogon
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\winlogon.exe
TypesSupported = REG_DWORD 0x07
Userenv
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\userenv.dll
TypesSupported = REG_DWORD 0x07
Autochk
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\winlogon.exe
TypesSupported = REG_DWORD 0x07
#if defined(_CAIRO_)
Ci
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\query.dll
CatagoryMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\query.dll
TypesSupported = REG_DWORD 0x7
CatagoryCount = REG_DWORD 0x1
CairoOra
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\oramon.dll
TypesSupported = REG_DWORD 0x07
#endif
System
File = REG_EXPAND_SZ %SystemRoot%\system32\config\SysEvent.Evt
MaxSize = REG_DWORD 0x80000
Retention = REG_DWORD 604800
Application Popup
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\ntdll.dll
TypesSupported = REG_DWORD 0x07
abiosdsk
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
aha154x
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
aha174x
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
aic78xx
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
always
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
ami0nt
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
amsint
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
flashpnt
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
cpqfws2e
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
arrow
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
atapi
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
atdisk
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
dac960nt
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
dce376nt
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
dtc329x
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
ati
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\ati.sys
TypesSupported = REG_DWORD 0x07
beep
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
buslogic
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
busmouse
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\BusMouse.sys
TypesSupported = REG_DWORD 0x07
cdaudio
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
cdfs
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
changer
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
cirrus
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
cpqarray
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
delldsa
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
dell_dgx
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
diskperf
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
dptscsi
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
et4000
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
eventlog
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\netevent.dll
TypesSupported = REG_DWORD 0x07
fastfat
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
fd16_700
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
fd7000ex
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
fd8XX
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
floppy
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
fs_rec
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
ftdisk
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\FtDisk.sys
TypesSupported = REG_DWORD 0x07
i8042prt
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\i8042prt.sys
TypesSupported = REG_DWORD 0x07
inport
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\InPort.sys
TypesSupported = REG_DWORD 0x07
JazzG300
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
JazzG364
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
JazzSnd
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
Jzvxl484
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
kbdclass
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\KbdClass.sys
TypesSupported = REG_DWORD 0x07
mitsumi
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
mga
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\mga.sys
TypesSupported = REG_DWORD 0x07
mga_mil
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\mga_mil.sys
TypesSupported = REG_DWORD 0x07
mkecr5xx
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
Modem
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\Modem.sys
TypesSupported = REG_DWORD 0x07
mouclass
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\MouClass.sys
TypesSupported = REG_DWORD 0x07
msadlib
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
msfs
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
Mup
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
ncr53c9x
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
ncrc700
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
ncrc710
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
ncr77c22
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
symc810
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
ndis
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\netevent.dll
TypesSupported = REG_DWORD 0x07
NetDDE
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\netdde.exe
TypesSupported = REG_DWORD 0x1F
npfs
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
ntfs
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
null
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
oliscsi
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
parallel
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\Parallel.sys
TypesSupported = REG_DWORD 0x07
parport
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\ParPort.sys
TypesSupported = REG_DWORD 0x07
parvdm
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\ParVdm.sys
TypesSupported = REG_DWORD 0x07
pcmcia
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\Pcmcia.sys
TypesSupported = REG_DWORD 0x07
pnpisa
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\pnpisa.sys
TypesSupported = REG_DWORD 0x07
psidisp
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
ql10wnt
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
qv
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\qv.sys
TypesSupported = REG_DWORD 0x07
s3
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\s3.sys
TypesSupported = REG_DWORD 0x07
SAM
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\samsrv.dll
TypesSupported = REG_DWORD 0x07
Save Dump
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\SaveDump.exe
TypesSupported = REG_DWORD 0x07
Schedule
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\netevent.dll
TypesSupported = REG_DWORD 0x07
ParameterMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\kernel32.dll
cdrom
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
disk
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
sfloppy
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
scsiport
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
scsiprnt
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
scsiscan
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
serial
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\Serial.sys
TypesSupported = REG_DWORD 0x07
sermouse
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\SerMouse.sys
TypesSupported = REG_DWORD 0x07
Service Control Manager
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\netevent.dll
TypesSupported = REG_DWORD 0x07
ParameterMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\kernel32.dll
DCOM
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\netevent.dll
TypesSupported = REG_DWORD 0x07
ParameterMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\kernel32.dll
Simbad
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
slcd32
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
sndblst
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
sparrow
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
spock
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
tdi
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
//
// Trident will be added on the next version of NT
//
// trident
// EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
// TypesSupported = REG_DWORD 0x07
//
t128
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
t13b
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
tmv1
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
ultra14f
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
ultra124
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
ultra24f
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
UPS
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\netmsg.dll
TypesSupported = REG_DWORD 0x07
VgaStart
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\vga.sys
TypesSupported = REG_DWORD 0x07
VgaSave
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\vga.sys
TypesSupported = REG_DWORD 0x07
v7vram
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
wd33c93
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
wdvga
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
wd90c24a
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll
TypesSupported = REG_DWORD 0x07
weitekp9
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\weitekp9.sys
TypesSupported = REG_DWORD 0x07
xga
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\Drivers\xga.sys
TypesSupported = REG_DWORD 0x07
#if defined(_CAIRO_)
AS
Description = This is a Cairo Alert
dfs
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\Drivers\Dfs.sys
TypesSupported = REG_DWORD 0x07
Ofs
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\query.dll
CatagoryMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\query.dll
TypesSupported = REG_DWORD 0x7
CatagoryCount = REG_DWORD 0x1
#endif
Security
File = REG_EXPAND_SZ %SystemRoot%\System32\config\SecEvent.Evt
MaxSize = REG_DWORD 0x80000
Retention = REG_DWORD 604800
PrimaryModule = REG_SZ Security
Security
EventMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\MsAuditE.dll
ParameterMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\MsObjs.dll
CategoryMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\MsAuditE.dll
CategoryCount = REG_DWORD 0x7
TypesSupported = REG_DWORD 0x1C
ObjectNames
//
// NOTE: The value provided in this section
// match an object type (by name) with
// the corresponding access bit names
// for that object type. This is done
// by specifying the message ID of
// specific-access-bit-0's message ID
// for the object. All bits for that
// object are assumed to be the 16
// messages starting with that message
// ID.
//
// For NT base system objects, the
// object access type messages are
// defined in
// \nt\private\nt\seaudit\msobjs\msobjs.mc.
//
//
// Executive objects
//
// Note: The following executive objects
// are not visible to non-kernel mode
// code and are thus, not objects that
// will generate audit messages.
//
// Adaptor
// Controller
// Driver
//
Device = REG_DWORD 0x00001100
Directory = REG_DWORD 0x00001110
Event = REG_DWORD 0x00001120
EventPair = REG_DWORD 0x00001130
File = REG_DWORD 0x00001140
Key = REG_DWORD 0x00001150
Mutant = REG_DWORD 0x00001160
Port = REG_DWORD 0x00001170
Process = REG_DWORD 0x00001180
Profile = REG_DWORD 0x00001190
Section = REG_DWORD 0x000011A0
Semaphore = REG_DWORD 0x000011B0
SymbolicLink = REG_DWORD 0x000011C0
Thread = REG_DWORD 0x000011D0
Timer = REG_DWORD 0x000011E0
Token = REG_DWORD 0x000011F0
Type = REG_DWORD 0x00001200
//
// Objects added after 1.0
//
IoCompletion = REG_DWORD 0x00001300
//
// Mailslots and NamedPipes use the same access bits
// as files.
//
MailSlot = REG_DWORD 0x00001140
NamedPipe = REG_DWORD 0x00001140
//
// Objects added after 3.51
Channel = REG_DWORD 0x00001400
//
// Objects moved from USER32
//
WindowStation = REG_DWORD 0x00001A00
Desktop = REG_DWORD 0x00001A10
Security Account Manager
ParameterMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\MsObjs.dll
ObjectNames
//
// Security Account Manager (SAM) objects
//
SAM_SERVER = REG_DWORD 0x00001500
SAM_DOMAIN = REG_DWORD 0x00001510
SAM_GROUP = REG_DWORD 0x00001520
SAM_ALIAS = REG_DWORD 0x00001530
SAM_USER = REG_DWORD 0x00001540
LSA
ParameterMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\MsObjs.dll
ObjectNames
//
// Local Security Authority (LSA) objects
//
PolicyObject = REG_DWORD 0x00001600
SecretObject = REG_DWORD 0x00001610
TrustedDomainObject = REG_DWORD 0x00001620
UserAccountObject = REG_DWORD 0x00001630
Spooler
ParameterMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\MsObjs.dll
ObjectNames
//
// Printer objects
//
Server = REG_DWORD 0x00001B00
Printer = REG_DWORD 0x00001B10
Document = REG_DWORD 0x00001B20
SC Manager
ParameterMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\MsObjs.dll
ObjectNames
//
// Service Controller objects
//
SC_MANAGER Object = REG_DWORD 0x00001C00
SERVICE Object = REG_DWORD 0x00001C10
NetDDE Object
ParameterMessageFile = REG_EXPAND_SZ %SystemRoot%\System32\MsObjs.dll
ObjectNames
//
// NetDDE objects
//
DDE Share = REG_DWORD 0x00001D00
//
// Driver list:
//
//
// Begin with the miniport drivers
//
Ncr53c9x
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000001
Spock
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000002
Oliscsi
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000003
Ncrc700
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000004
Ncrc710
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000005
Aha154x
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000006
Sparrow
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000007
Aha174x
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000008
DptScsi
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000009
Ultra14f
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x0000000a
Ultra124
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x0000000b
Ultra24f
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x0000000c
BusLogic
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x0000001b
Fd7000ex
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x0000000e
Fd8xx
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x0000000f
Parameters
Device0
DriverParameter = IRQ=5
Fd16_700
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000010
Wd33c93
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000011
Parameters
Device0
DriverParameter = IRQ=10;DMA=6
DisableDisconnect = REG_DWORD 0x00000001
T128
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000012
Parameters
Device0
DriverParameter = IRQ=5
T13B
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000013
Parameters
Device0
DriverParameter = IRQ=5
Always
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000014
Arrow
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000015
dce376nt
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000016
dtc329x
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000017
tmv1
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000018
Parameters
Device0
DriverParameter = IRQ=15
atapi
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000019
symc810
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x0000001a
ami0nt
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x0000000d
slcd32
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x0000001c
mkecr5xx
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x0000001d
aic78xx
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x0000001e
mitsumi
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x0000001f
dac960nt
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000020
Ql10wnt
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000023
amsint
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000024
flashpnt
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000025
cpqfws2e
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000026
//
// WD1003-compatible disk controllers
//
Atdisk
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
ErrorControl = SC_Error_Ignore
Group = Primary disk
Tag = REG_DWORD 0x00000001
Floppy
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Primary disk
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000002
Abiosdsk
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
ErrorControl = SC_Error_Ignore
Group = Primary disk
Tag = REG_DWORD 0x00000003
Cpqarray
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000100
Delldsa
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = SCSI miniport
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000101
//
// SCSI class drivers
//
Disk
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtBoot
Group = SCSI Class
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000002
DependOnGroup = REG_MULTI_SZ "SCSI miniport"
Sfloppy
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Primary disk
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000004
DependOnGroup = REG_MULTI_SZ "SCSI miniport"
Scsiscan
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = SCSI Class
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000003
DependOnGroup = REG_MULTI_SZ "SCSI miniport"
Cdrom
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = SCSI CDROM Class
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000002
DependOnGroup = REG_MULTI_SZ "SCSI miniport"
Autorun = REG_DWORD 0x01
//
// Global filter drivers
//
Ftdisk
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = Filter
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000003
Simbad
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = Filter
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000001
Diskperf
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = Filter
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000004
Cdaudio
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Filter
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000006
Changer
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Filter
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000005
//
// Boot file system drivers
// (NTLDR/osloader.exe will load the appropriate filesystem
// automatically, regardless of its "Start" value.)
//
Fs_Rec
Type = SC_Type_Recognizer
Start = SC_Start_LoadAtSystemInit
Group = Boot file system
ErrorControl = SC_Error_Ignore
Fastfat
Type = SC_Type_FileSystem
Start = SC_Start_DisableLoad
Group = Boot file system
ErrorControl = SC_Error_Normal
//
// Base drivers
//
Null
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Base
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000001
Beep
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Base
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000002
KSecDD
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Base
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000001
//
// Keyboard Port drivers
//
i8042prt
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = Keyboard Port
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000001
Parameters
ResendIterations = REG_DWORD 3
PollingIterations = REG_DWORD 12000
PollingIterationsMaximum = REG_DWORD 12000
PollStatusIterations = REG_DWORD 1
KeyboardDataQueueSize = REG_DWORD 100
KeyboardDeviceBaseName = REG_SZ KeyboardPort
MouseDataQueueSize = REG_DWORD 100
NumberOfButtons = REG_DWORD 2
SampleRate = REG_DWORD 60
MouseResolution = REG_DWORD 3
PointerDeviceBaseName = REG_SZ PointerPort
MouseSynchIn100ns = REG_DWORD 20000000
EnableWheelDetection = REG_DWORD 1
//
// Pointer Port drivers
//
Busmouse
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = Pointer Port
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000003
Parameters
MouseDataQueueSize = REG_DWORD 100
NumberOfButtons = REG_DWORD 2
SampleRate = REG_DWORD 50
PointerDeviceBaseName = REG_SZ PointerPort
Inport
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = Pointer Port
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000001
Parameters
MouseDataQueueSize = REG_DWORD 100
NumberOfButtons = REG_DWORD 2
SampleRate = REG_DWORD 50
HzMode = REG_DWORD 2
PointerDeviceBaseName = REG_SZ PointerPort
Sermouse
Type = SC_Type_KernelDriver
Start = SC_Start_DisableLoad
Group = Pointer Port
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000002
Parameters
MouseDataQueueSize = REG_DWORD 100
NumberOfButtons = REG_DWORD 2
SampleRate = REG_DWORD 40
PointerDeviceBaseName = REG_SZ PointerPort
//
// Keyboard Class drivers
//
Kbdclass
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Keyboard Class
ErrorControl = SC_Error_Normal
Tag = REG_DWORD 0x00000001
Parameters
KeyboardDataQueueSize = REG_DWORD 100
MaximumPortsServiced = REG_DWORD 3
ConnectMultiplePorts = REG_DWORD 0
KeyboardDeviceBaseName = REG_SZ KeyboardClass
//
// Pointer Class drivers
//
Mouclass
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Pointer Class
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000001
Parameters
MouseDataQueueSize = REG_DWORD 100
MaximumPortsServiced = REG_DWORD 3
ConnectMultiplePorts = REG_DWORD 1
PointerDeviceBaseName = REG_SZ PointerClass
//
// Netcard Detection driver
//
NetDetect
Type = SC_Type_KernelDriver
Start = SC_Start_DemandLoad
ErrorControl = SC_Error_Normal
DisplayName = NetDetect
ImagePath = REG_EXPAND_SZ \SystemRoot\system32\drivers\netdtect.sys
//
// Video drivers
//
ati
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = False
InstalledDisplayDrivers = REG_MULTI_SZ "ati" "8514a"
cirrus
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = True
InstalledDisplayDrivers = REG_MULTI_SZ "vga" "cirrus" "vga256" "vga64K"
Dell_DGX
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = False
InstalledDisplayDrivers = REG_MULTI_SZ "framebuf"
et4000
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = True
InstalledDisplayDrivers = REG_MULTI_SZ "vga" "w32" "vga256" "vga64K"
Jazzg364
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = False
Monitor = REG_SZ drivers\jazz.bvp
InstalledDisplayDrivers = REG_MULTI_SZ "framebuf"
Jazzg300
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = False
Monitor = REG_SZ drivers\jazz.bvp
InstalledDisplayDrivers = REG_MULTI_SZ "framebuf"
Jzvxl484
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = False
Monitor = REG_SZ drivers\jazz.bvp
InstalledDisplayDrivers = REG_MULTI_SZ "jzvxl484"
mga
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = False
InstalledDisplayDrivers = REG_MULTI_SZ "mga"
mga_mil
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = False
InstalledDisplayDrivers = REG_MULTI_SZ "mga"
ncr77c22
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = True
InstalledDisplayDrivers = REG_MULTI_SZ "vga" "vga256"
psidisp
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = False
InstalledDisplayDrivers = REG_MULTI_SZ "psidisp"
qv
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = True
InstalledDisplayDrivers = REG_MULTI_SZ "vga" "qv"
s3
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = False
InstalledDisplayDrivers = REG_MULTI_SZ "s3"
tga
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = False
InstalledDisplayDrivers = REG_MULTI_SZ "tga"
//
// Trident will be added on the next version of NT
//
// trident
// Type = SC_Type_KernelDriver
// Start = SC_Start_LoadAtSystemInit
// Group = Video
// ErrorControl = SC_Error_Ignore
// Device0
// VgaCompatible = True
// InstalledDisplayDrivers = REG_MULTI_SZ "vga" "vga256"
//
v7vram
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = True
InstalledDisplayDrivers = REG_MULTI_SZ "vga" "vga256"
wdvga
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = True
InstalledDisplayDrivers = REG_MULTI_SZ "vga" "vga256" "vga64k"
wd90c24a
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = True
InstalledDisplayDrivers = REG_MULTI_SZ "vga" "vga256" "wd90c24a"
weitekp9
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = False
InstalledDisplayDrivers = REG_MULTI_SZ "weitekp9"
Xga
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video
ErrorControl = SC_Error_Ignore
Device0
VgaCompatible = False
Monitor = REG_SZ drivers\vga.bvp
InstalledDisplayDrivers = REG_MULTI_SZ "xga" "vga256"
VgaStart
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video Init
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000001
ImagePath = REG_EXPAND_SZ \SystemRoot\System32\drivers\vga.sys
Device0
VgaCompatible = True
InstalledDisplayDrivers = REG_MULTI_SZ "vga"
ForceVga = True
VgaSave
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = Video Save
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000001
ImagePath = REG_EXPAND_SZ \SystemRoot\System32\drivers\vga.sys
Device0
VgaCompatible = True
InstalledDisplayDrivers = REG_MULTI_SZ "vga"
//
// Ndis drivers
//
NDIS
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = NDIS
DisplayName = Microsoft NDIS System Driver
ErrorControl = SC_Error_Normal
MediaTypes
Parameters
ProcessorAffinityMask = REG_DWORD 0xffffffff
NetDetect
EISA
BONSAI
Id = REG_DWORD 0x0062110e
Mask = REG_DWORD 0x00ffffff
token = BONSAI
DE425
Id = REG_DWORD 0x5042a310
Mask = REG_DWORD 0xf0ffffff
token = DE425
DEC300
Id = REG_DWORD 0x0230a310
Mask = REG_DWORD 0x0fffffff
token = DEC300
DEC422
Id = REG_DWORD 0x2042a310
Mask = REG_DWORD 0xf0ffffff
token = DEC422
DURANGO
Id = REG_DWORD 0x0260110e
Mask = REG_DWORD 0x0fffffff
token = DURANGO
ELNK3EISA
Id = REG_DWORD 0x90506d50
Mask = REG_DWORD 0xf0ffffff
token = ELNK3EISA
MAPLE
Id = REG_DWORD 0x0160110e
Mask = REG_DWORD 0x0fffffff
token = MAPLE
NE3200
Id = REG_DWORD 0x0007cc3a
Mask = REG_DWORD 0x00ffffff
token = NE3200
NETFLX
Id = REG_DWORD 0x0061110e
Mask = REG_DWORD 0x00ffffff
token = NETFLX
NPEISA.1
id = REG_DWORD 0x0002093a
Mask = REG_DWORD 0x00ffffff
token = NPEISA
NPEISA.2
id = REG_DWORD 0x0003093a
Mask = REG_DWORD 0x00ffffff
token = NPEISA
P1990
Id = REG_DWORD 0x00604f42
Mask = REG_DWORD 0x00ffffff
token = P1990
RODAN
Id = REG_DWORD 0x0063110e
Mask = REG_DWORD 0x00ffffff
token = RODAN
MCA
EE16MC
token = EE16MC
Id = REG_DWORD 0x0000628b
ELNK3MCA.1
token = ELNK3MCA
Id = REG_DWORD 0x0000627c
ELNK3MCA.2
token = ELNK3MCA
Id = REG_DWORD 0x0000627d
ELNK3MCA.3
token = ELNK3MCA
Id = REG_DWORD 0x000061db
ELNK3MCA.4
token = ELNK3MCA
Id = REG_DWORD 0x000062f6
ELNK3MCA.5
token = ELNK3MCA
Id = REG_DWORD 0x000062f7
ELNKMC
token = ELNKMC
Id = REG_DWORD 0x00006042
IBMTOKA
token = IBMTOKA
Id = REG_DWORD 0x0000e000
IBMTOKMC
token = IBMTOKMC
Id = REG_DWORD 0x0000e001
NPMCA
token = NPMCA
Id = REG_DWORD 0x00000069
UBPS
token = UBPS
Id = REG_DWORD 0x00007012
WD8003EA
token = WD8003EA
Id = REG_DWORD 0x000067c0
WD8003WA
token = WD8003WA
Id = REG_DWORD 0x000067c2
WD8013EPA
token = WD8013EPA
Id = REG_DWORD 0x000061c8
WD8013WPA
token = WD8013WPA
Id = REG_DWORD 0x000061c9
PCI
AMDPCI
token = AMDPCI
Id = REG_DWORD 0x20001022
DC21040
token = DC21040
Id = REG_DWORD 0x00021011
DC21041
token = DC21041
Id = REG_DWORD 0x00141011
DC21140
token = DC21140
Id = REG_DWORD 0x00091011
DC21142
token = DC21142
Id = REG_DWORD 0x00191011
DEFPA
token = DEFPA
Id = REG_DWORD 0x000f1011
//
// Parallel arbitrator drivers
//
Parport
Type = SC_Type_KernelDriver
Start = SC_Start_AutoLoad
Group = Parallel arbitrator
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000001
//
// PnP ISA enabler driver (pnpisa.sys not installed by default--user
// must install from drvlib to enable).
//
pnpisa
DisplayName = REG_SZ PnP ISA Enabler Driver
ErrorControl = SC_Error_Ignore
Group = Base
Start = SC_Start_LoadAtSystemInit
Tag = REG_DWORD 0x0000000e
Type = SC_Type_KernelDriver
//
// Extended base drivers
//
Serial
Type = SC_Type_KernelDriver
Start = SC_Start_AutoLoad
Group = Extended base
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000001
Parameters
Parallel
DependOnGroup = REG_MULTI_SZ "Parallel arbitrator"
DependOnService = REG_MULTI_SZ "Parport"
Type = SC_Type_KernelDriver
Start = SC_Start_AutoLoad
Group = Extended base
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000002
Parameters
ParVdm
DependOnGroup = REG_MULTI_SZ "Parallel arbitrator"
DependOnService = REG_MULTI_SZ "Parport"
Type = SC_Type_KernelDriver
Start = SC_Start_AutoLoad
Group = Extended base
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000002
Parameters
Scsiprnt
Type = SC_Type_KernelDriver
Start = SC_Start_AutoLoad
Group = Extended base
ErrorControl = SC_Error_Ignore
DependOnGroup = REG_MULTI_SZ "SCSI miniport"
Tag = REG_DWORD 0x00000003
PCIDump
Type = SC_Type_KernelDriver
Start = SC_Start_LoadAtSystemInit
Group = PCI Configuration
ErrorControl = SC_Error_Ignore
Tag = REG_DWORD 0x00000001
Pcmcia
ErrorControl = REG_DWORD 0x00000001
Group = System Bus Extender
Start = REG_DWORD 0x00000000
Tag = REG_DWORD 0x00000001
Type = REG_DWORD 0x00000001
DataBase
3Com Corporation
3C589
Driver = elnk3
Option = ELNK3ISA509
InfFileName = oemnade3.inf
DeviceType = NET
Accton
EN2212
DeviceType = NET
Driver = ne2000
InfFileName = oemnadzz.inf
Option = ACCTONEN2216
EN2216-PCMCIA-ETHERNET
DeviceType = NET
Driver = ne2000
InfFileName = oemnadzz.inf
Option = ACCTONEN2216
Adaptec, Inc.
APA-1460 SCSI Host Adapter
Driver = sparrow
DeviceType = SCSI
Compaq
Ethernet LAN Card
AttributeMemorySize = REG_DWORD 0x00001000
DeviceType = NET
Driver = cpqndis
InfFileName = oemnadzz.inf
D-Link
DE-650
Driver = ne2000
DeviceType = NET
Option = DLINKDE650
InfFileName = oemnadzz.inf
Diehl ISDN
ISDN-DIVA/PCM
DeviceType = NET
Driver = Diehl_DIVA_TED5ES
Future Domain Corporation
SCSI PCMCIA Credit Card Controller
Driver = fd16_700
DeviceType = SCSI
IBM
TOKEN RING
Driver = REG_SZ ibmtok
DeviceType = REG_SZ NET
InfFileName = REG_SZ oemnadtk.inf
Option = REG_SZ IBMTOK
IBM Corp.
Ethernet
AttributeMemorySize = REG_DWORD 0x1000
CardMemorySize = REG_DWORD 0
Driver = ne2000
Option = NE2000IBMCOMPAT
InfFileName = oemnadni.inf
DeviceType = NET
Kingston Technology Corp.
EtheRx
AttributeMemorySize = REG_DWORD 0x1000
CardMemorySize = REG_DWORD 0
Driver = ne2000
Option = NE2000IBMCOMPAT
InfFileName = oemnadni.inf
DeviceType = NET
KME
KXLC002
Driver = qlmini
DeviceType = SCSI
MADGE
SMART 16/4 PCMCIA RINGNODE
Driver = madgemport
Option = MSMDGMPPCMCIA
InfFileName = oemnadma.inf
DeviceType = NET
Microdyne
NE4200
AttributeMemorySize = REG_DWORD 0x1000
CardMemorySize = REG_DWORD 0
Driver = ne2000
Option = NE2000IBMCOMPAT
InfFileName = oemnadni.inf
DeviceType = NET
National Semiconductor
InfoMover NE4100
AttributeMemorySize = REG_DWORD 0x1000
CardMemorySize = REG_DWORD 0
Driver = ne2000
Option = NE2000IBMCOMPAT
InfFileName = oemnadni.inf
DeviceType = NET
OLICOM
TR 16/4 II
DeviceType = NET
Driver = octk16
Option = PCMCIA
InfFileName = oemnadzz.inf
ETHERCOM
DeviceType = NET
Driver = oce2xm
Option = GOCARD
InfFileName = oemnadzz.inf
Socket Communications Inc
Socket EA PCMCIA LAN Adapter Revision D
AttributeMemorySize = REG_DWORD 0
CardMemorySize = REG_DWORD 0
Driver = ne2000
Option = NE2000SOCKETEA
InfFileName = oemnadn2.inf
DeviceType = NET
Socket EA PCMCIA LAN Adapter Revision E
AttributeMemorySize = REG_DWORD 0
CardMemorySize = REG_DWORD 0
Driver = ne2000
Option = NE2000SOCKETEA
InfFileName = oemnadn2.inf
DeviceType = NET
Xircom
CreditCard 10Base-T
Option =
InfFileName = oemnadzz.inf
DeviceType = NET
5331
Driver = ce2xps
AttributeMemorySize = REG_DWORD 0x1000
5FFA
Driver = cendis3
AttributeMemorySize = REG_DWORD 0x1000
64BA
AttributeMemorySize = REG_DWORD 0x1000
Driver = REG_SZ ce2xps
9C9B
Driver = cendis3
AttributeMemorySize = REG_DWORD 0x1000
9F5B
Driver = ce2ndis3
AttributeMemorySize = REG_DWORD 0x1000
9FAB
Driver = cendis3
AttributeMemorySize = REG_DWORD 0x1000
B00D
Driver = cendis3
AttributeMemorySize = REG_DWORD 0x1000
CreditCard Ethernet+Modem 28.8
AttributeMemorySize = REG_DWORD 0x1000
DeviceType = NET
Driver = cem28xps
InfFileName = oemnadzz.inf
CreditCard Ethernet+Modem II
Driver = cm2ndis3
AttributeMemorySize = REG_DWORD 0x1000
Option =
InfFileName = oemnadzz.inf
DeviceType = NET
CreditCard Token Ring
Driver = ctndnt
AttributeMemorySize = REG_DWORD 0x1000
Option =
InfFileName = oemnadzz.inf
DeviceType = NET
Parameters
Interrupt = REG_DWORD 0x00000000
//
// Other file systems
//
Ntfs
Type = SC_Type_FileSystem
Start = SC_Start_DisableLoad
Group = File system
ErrorControl = SC_Error_Normal
#if defined(_CAIRO_)
Ofs
Type = SC_Type_FileSystem
Start = SC_Start_DisableLoad
Group = File system
ErrorControl = SC_Error_Normal
#endif // defined(_CAIRO_)
Npfs
Type = SC_Type_FileSystem
Start = SC_Start_LoadAtSystemInit
Group = File system
ErrorControl = SC_Error_Normal
Aliases
#ifdef _CAIRO_
lsass = REG_MULTI_SZ "lsarpc" "samr"
#else
lsass = REG_MULTI_SZ "netlogon" "lsarpc" "samr"
#endif
ntsvcs = REG_MULTI_SZ "srvsvc" "wkssvc" "eventlog" "browser" "msgsvc" "svcctl"
Msfs
Type = SC_Type_FileSystem
Start = SC_Start_LoadAtSystemInit
Group = File system
ErrorControl = SC_Error_Normal
Cdfs
Type = SC_Type_FileSystem
Start = SC_Start_DisableLoad
Group = File system
ErrorControl = SC_Error_Normal
DependOnGroup = REG_MULTI_SZ "SCSI CDROM Class"
Schedule
Type = SC_Type_Win32ServiceOwnProcess
Start = SC_Start_DemandLoad
ErrorControl = SC_Error_Normal
ImagePath = REG_EXPAND_SZ %SystemRoot%\System32\AtSvc.Exe
ObjectName = REG_SZ LocalSystem
UPS
Type = SC_Type_Win32ServiceOwnProcess
Start = SC_Start_DemandLoad
ErrorControl = SC_Error_Normal
ImagePath = REG_EXPAND_SZ %SystemRoot%\System32\ups.exe
ObjectName = REG_SZ LocalSystem
WinTrust [AdminFull SystemFull WorldR]
SubjectPackages
MS Subjects 1
$DLL = REG_EXPAND_SZ %SystemRoot%\system32\MsSip1.dll
MS Subjects 2
$DLL = REG_EXPAND_SZ %SystemRoot%\system32\MsSip2.dll
MS Subjects 3
$DLL = REG_EXPAND_SZ %SystemRoot%\system32\MsSip3.dll
TrustProviders
Software Publisher
$DLL = REG_EXPAND_SZ %SystemRoot%\system32\SoftPub.dll
Setup [WorldR AdminFull SystemFull CreatorFull]
SetupType = SETUPTYPE_RETAIL
CmdLine = setup -g -s a:\ -t STF_INSTALL_MODE = CUSTOM -t STF_UPGRADE = NO
SystemSetupInProgress = True
#if defined(_CAIRO_)
//
// BUGBUG - This value entry should be removed after Cairo and NT 3.51 get merged.
// This value will prevent textmode setup from finding NT 3.x systems
// to upgrade to Cairo.
//
CairoSystem = REG_DWORD 1
#endif
|