Class: AdvancedSecurityPolicy
- Inherits:
-
Object
- Object
- AdvancedSecurityPolicy
- Defined in:
- lib/puppet_x/asp/security_policy.rb
Overview
clase AdvancedSecurityPolicy
Class Method Summary collapse
- .asp_mapping ⇒ Object
-
.find_mapping_from_policy_desc(desc) ⇒ Object
returns the key and hash value given the policy desc.
-
.find_mapping_from_policy_name(name) ⇒ Object
returns the key and hash value given the policy name.
Class Method Details
.asp_mapping ⇒ Object
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 |
# File 'lib/puppet_x/asp/security_policy.rb', line 28 def self.asp_mapping @asp_mapping ||= { 'Prevent enabling lock screen camera' => { name: 'Software\Policies\Microsoft\Windows\Personalization\NoLockScreenCamera', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Personalization', value_name: 'NoLockScreenCamera', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Prevent enabling lock screen slide show' => { name: 'Software\Policies\Microsoft\Windows\Personalization\NoLockScreenSlideshow', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Personalization', value_name: 'NoLockScreenSlideshow', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow Input Personalization' => { name: 'Software\Policies\Microsoft\InputPersonalization\AllowInputPersonalization', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\InputPersonalization', value_name: 'AllowInputPersonalization', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'MSS: (AutoAdminLogon) Enable Automatic Logon (not recommended)' => { name: 'Software\Microsoft\Windows NT\CurrentVersion\Winlogon\AutoAdminLogon', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows NT\CurrentVersion\Winlogon', value_name: 'AutoAdminLogon', reg_type: 'SZ', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'MSS: (DisableIPSourceRouting IPv6) IP source routing protection level (protects against packet spoofing)' => { name: 'System\CurrentControlSet\Services\Tcpip6\Parameters\DisableIPSourceRouting', configuration: 'Computer', registry_key: 'System\CurrentControlSet\Services\Tcpip6\Parameters', value_name: 'DisableIPSourceRouting', reg_type: 'DWORD', data_type: 'string', }, 'MSS: (DisableIPSourceRouting) IP source routing protection level (protects against packet spoofing)' => { name: 'System\CurrentControlSet\Services\Tcpip\Parameters\DisableIPSourceRouting', configuration: 'Computer', registry_key: 'System\CurrentControlSet\Services\Tcpip\Parameters', value_name: 'DisableIPSourceRouting', reg_type: 'DWORD', data_type: 'string', disabled_value: '0', }, 'MSS: (EnableICMPRedirect) Allow ICMP redirects to override OSPF generated routes' => { name: 'System\CurrentControlSet\Services\Tcpip\Parameters\EnableICMPRedirect', configuration: 'Computer', registry_key: 'System\CurrentControlSet\Services\Tcpip\Parameters', value_name: 'EnableICMPRedirect', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'MSS: (KeepAliveTime) How often keep-alive packets are sent in milliseconds' => { name: 'System\CurrentControlSet\Services\Tcpip\Parameters\KeepAliveTime', configuration: 'Computer', registry_key: 'System\CurrentControlSet\Services\Tcpip\Parameters', value_name: 'KeepAliveTime', reg_type: 'DWORD', data_type: 'string', }, 'MSS: (NoNameReleaseOnDemand) Allow the computer to ignore NetBIOS name release requests except from WINS servers' => { name: 'System\CurrentControlSet\Services\Netbt\Parameters\NoNameReleaseOnDemand', configuration: 'Computer', registry_key: 'System\CurrentControlSet\Services\Netbt\Parameters', value_name: 'NoNameReleaseOnDemand', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'MSS: (PerformRouterDiscovery) Allow IRDP to detect and configure Default Gateway addresses (could lead to DoS)' => { name: 'System\CurrentControlSet\Services\Tcpip\Parameters\PerformRouterDiscovery', configuration: 'Computer', registry_key: 'System\CurrentControlSet\Services\Tcpip\Parameters', value_name: 'PerformRouterDiscovery', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'MSS: (SafeDllSearchMode) Enable Safe DLL search mode (recommended)' => { name: 'System\CurrentControlSet\Control\Session Manager\SafeDllSearchMode', configuration: 'Computer', registry_key: 'System\CurrentControlSet\Control\Session Manager', value_name: 'SafeDllSearchMode', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'MSS: (ScreenSaverGracePeriod) The time in seconds before the screen saver grace period expires (0 recommended)' => { name: 'Software\Microsoft\Windows NT\CurrentVersion\Winlogon\ScreenSaverGracePeriod', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows NT\CurrentVersion\Winlogon', value_name: 'ScreenSaverGracePeriod', reg_type: 'SZ', data_type: 'string', }, 'MSS: (TcpMaxDataRetransmissions IPv6) How many times unacknowledged data is retransmitted' => { name: 'System\CurrentControlSet\Services\Tcpip6\Parameters\TcpMaxDataRetransmissions', configuration: 'Computer', registry_key: 'System\CurrentControlSet\Services\Tcpip6\Parameters', value_name: 'TcpMaxDataRetransmissions', reg_type: 'DWORD', data_type: 'string', }, 'MSS: (TcpMaxDataRetransmissions) How many times unacknowledged data is retransmitted' => { name: 'System\CurrentControlSet\Services\Tcpip\Parameters\TcpMaxDataRetransmissions', configuration: 'Computer', registry_key: 'System\CurrentControlSet\Services\Tcpip\Parameters', value_name: 'TcpMaxDataRetransmissions', reg_type: 'DWORD', data_type: 'string', }, 'MSS: (WarningLevel) Percentage threshold for the security event log at which the system will generate a warning' => { name: 'System\CurrentControlSet\Services\Eventlog\Security\WarningLevel', configuration: 'Computer', registry_key: 'System\CurrentControlSet\Services\Eventlog\Security', value_name: 'WarningLevel', reg_type: 'DWORD', data_type: 'string', }, 'NetBIOS node type' => { name: 'System\CurrentControlSet\Services\Netbt\Parameters\NodeType', configuration: 'Computer', registry_key: 'System\CurrentControlSet\Services\Netbt\Parameters', value_name: 'NodeType', reg_type: 'DWORD', data_type: 'string', }, 'Turn off multicast name resolution' => { name: 'Software\Policies\Microsoft\Windows NT\DNSClient\EnableMulticast', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\DNSClient', value_name: 'EnableMulticast', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Enable Font Providers' => { name: 'Software\Policies\Microsoft\Windows\System\EnableFontProviders', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\System', value_name: 'EnableFontProviders', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Enable insecure guest logons' => { name: 'Software\Policies\Microsoft\Windows\LanmanWorkstation\AllowInsecureGuestAuth', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\LanmanWorkstation', value_name: 'AllowInsecureGuestAuth', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn on Mapper I/O (LLTDIO) driver (EnableLLTDIO)' => { name: 'Software\Policies\Microsoft\Windows\LLTD\EnableLLTDIO', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\LLTD', value_name: 'EnableLLTDIO', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn on Mapper I/O (LLTDIO) driver (AllowLLTDIOOndomain)' => { name: 'Software\Policies\Microsoft\Windows\LLTD\AllowLLTDIOOndomain', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\LLTD', value_name: 'AllowLLTDIOOndomain', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn on Mapper I/O (LLTDIO) driver (AllowLLTDIOOnPublicNet)' => { name: 'Software\Policies\Microsoft\Windows\LLTD\AllowLLTDIOOnPublicNet', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\LLTD', value_name: 'AllowLLTDIOOnPublicNet', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn on Mapper I/O (LLTDIO) driver (ProhibitLLTDIOOnPrivateNet)' => { name: 'Software\Policies\Microsoft\Windows\LLTD\ProhibitLLTDIOOnPrivateNet', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\LLTD', value_name: 'ProhibitLLTDIOOnPrivateNet', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn on Responder (RSPNDR) driver (EnableRspndr)' => { name: 'Software\Policies\Microsoft\Windows\LLTD\EnableRspndr', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\LLTD', value_name: 'EnableRspndr', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn on Responder (RSPNDR) driver (AllowRspndrOndomain)' => { name: 'Software\Policies\Microsoft\Windows\LLTD\AllowRspndrOndomain', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\LLTD', value_name: 'AllowRspndrOndomain', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn on Responder (RSPNDR) driver (AllowRspndrOnPublicNet)' => { name: 'Software\Policies\Microsoft\Windows\LLTD\AllowRspndrOnPublicNet', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\LLTD', value_name: 'AllowRspndrOnPublicNet', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn on Responder (RSPNDR) driver (ProhibitRspndrOnPrivateNet)' => { name: 'Software\Policies\Microsoft\Windows\LLTD\ProhibitRspndrOnPrivateNet', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\LLTD', value_name: 'ProhibitRspndrOnPrivateNet', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off Microsoft Peer-to-Peer Networking Services' => { name: 'Software\Policies\Microsoft\Peernet\Disabled', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Peernet', value_name: 'Disabled', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Prohibit installation and configuration of Network Bridge on your DNS domain network' => { name: 'Software\Policies\Microsoft\Windows\Network Connections\NC_AllowNetBridge_NLA', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Network Connections', value_name: 'NC_AllowNetBridge_NLA', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Require domain users to elevate when setting a network`s location' => { name: 'Software\Policies\Microsoft\Windows\Network Connections\NC_StdDomainUserSetLocation', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Network Connections', value_name: 'NC_StdDomainUserSetLocation', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Prohibit use of Internet Connection Sharing on your DNS domain network' => { name: 'Software\Policies\Microsoft\Windows\Network Connections\NC_ShowSharedAccessUI', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Network Connections', value_name: 'NC_ShowSharedAccessUI', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Configuration of wireless settings using Windows Connect Now (EnableRegistrars)' => { name: 'Software\Policies\Microsoft\Windows\WCN\Registrars\EnableRegistrars', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WCN\Registrars', value_name: 'EnableRegistrars', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configuration of wireless settings using Windows Connect Now (DisableUPnPRegistrar)' => { name: 'Software\Policies\Microsoft\Windows\WCN\Registrars\DisableUPnPRegistrar', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WCN\Registrars', value_name: 'DisableUPnPRegistrar', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configuration of wireless settings using Windows Connect Now (DisableInBand802DOT11Registrar)' => { name: 'Software\Policies\Microsoft\Windows\WCN\Registrars\DisableInBand802DOT11Registrar', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WCN\Registrars', value_name: 'DisableInBand802DOT11Registrar', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configuration of wireless settings using Windows Connect Now (DisableFlashConfigRegistrar)' => { name: 'Software\Policies\Microsoft\Windows\WCN\Registrars\DisableFlashConfigRegistrar', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WCN\Registrars', value_name: 'DisableFlashConfigRegistrar', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configuration of wireless settings using Windows Connect Now (DisableWPDRegistrar)' => { name: 'Software\Policies\Microsoft\Windows\WCN\Registrars\DisableWPDRegistrar', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WCN\Registrars', value_name: 'DisableWPDRegistrar', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Prohibit access of the Windows Connect Now wizards' => { name: 'Software\Policies\Microsoft\Windows\WCN\UI\DisableWcnUi', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WCN\UI', value_name: 'DisableWcnUi', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Minimize the number of simultaneous connections to the Internet or a Windows Domain' => { name: 'Software\Policies\Microsoft\Windows\WcmSvc\GroupPolicy\fMinimizeConnections', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WcmSvc\GroupPolicy', value_name: 'fMinimizeConnections', reg_type: 'DWORD', data_type: 'string', }, 'Prohibit connection to non-domain networks when connected to domain authenticated network' => { name: 'Software\Policies\Microsoft\Windows\WcmSvc\GroupPolicy\fBlockNonDomain', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WcmSvc\GroupPolicy', value_name: 'fBlockNonDomain', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off notifications network usage' => { name: 'Software\Policies\Microsoft\Windows\CurrentVersion\PushNotifications\NoCloudApplicationNotification', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\CurrentVersion\PushNotifications', value_name: 'NoCloudApplicationNotification', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Apply UAC restrictions to local accounts on network logons' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\System\LocalAccountTokenFilterPolicy', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\System', value_name: 'LocalAccountTokenFilterPolicy', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'WDigest Authentication' => { name: 'System\CurrentControlSet\Control\SecurityProviders\WDigest\UseLogonCredential', configuration: 'Computer', registry_key: 'System\CurrentControlSet\Control\SecurityProviders\WDigest', value_name: 'UseLogonCredential', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Encryption Oracle Remediation' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\System\CredSSP\Parameters\AllowEncryptionOracle', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\System\CredSSP\Parameters', value_name: 'AllowEncryptionOracle', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Include command line in process creation events' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\System\Audit\ProcessCreationIncludeCmdLine_Enabled', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\System\Audit', value_name: 'ProcessCreationIncludeCmdLine_Enabled', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow remote access to the Plug and Play interface' => { name: 'Software\Policies\Microsoft\Windows\DeviceInstall\Settings\AllowRemoteRPC', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\DeviceInstall\Settings', value_name: 'AllowRemoteRPC', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Boot-Start Driver Initialization Policy' => { name: 'System\CurrentControlSet\Policies\EarlyLaunch\DriverLoadPolicy', configuration: 'Computer', registry_key: 'System\CurrentControlSet\Policies\EarlyLaunch', value_name: 'DriverLoadPolicy', reg_type: 'DWORD', data_type: 'string', }, 'Configure registry policy processing: Do not apply during periodic background processing' => { name: 'Software\Policies\Microsoft\Windows\Group Policy\{35378EAC-683F-11D2-A89A-00C04FBBCFA2}\NoBackgroundPolicy', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Group Policy\{35378EAC-683F-11D2-A89A-00C04FBBCFA2}', value_name: 'NoBackgroundPolicy', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Configure registry policy processing: Process even if the Group Policy objects have not changed' => { name: 'Software\Policies\Microsoft\Windows\Group Policy\{35378EAC-683F-11D2-A89A-00C04FBBCFA2}\NoGPOListChanges', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Group Policy\{35378EAC-683F-11D2-A89A-00C04FBBCFA2}', value_name: 'NoGPOListChanges', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Turn off background refresh of Group Policy' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableBkGndGroupPolicy', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\System', value_name: 'DisableBkGndGroupPolicy', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Continue experiences on this device' => { name: 'Software\Policies\Microsoft\Windows\System\EnableCdp', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\System', value_name: 'EnableCdp', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off access to the Store' => { name: 'Software\Policies\Microsoft\Windows\Explorer\NoUseStoreOpenWith', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Explorer', value_name: 'NoUseStoreOpenWith', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off downloading of print drivers over HTTP' => { name: 'Software\Policies\Microsoft\Windows NT\Printers\DisableWebPnPDownload', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Printers', value_name: 'DisableWebPnPDownload', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off handwriting personalization data sharing' => { name: 'Software\Policies\Microsoft\Windows\TabletPC\PreventHandwritingDataSharing', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\TabletPC', value_name: 'PreventHandwritingDataSharing', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off handwriting recognition error reporting' => { name: 'Software\Policies\Microsoft\Windows\HandwritingErrorReports\PreventHandwritingErrorReports', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\HandwritingErrorReports', value_name: 'PreventHandwritingErrorReports', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off Internet Connection Wizard if URL connection is referring to Microsoft.com' => { name: 'Software\Policies\Microsoft\Windows\Internet Connection Wizard\ExitOnMSICW', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Internet Connection Wizard', value_name: 'ExitOnMSICW', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off Internet download for Web publishing and online ordering wizards' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoWebServices', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer', value_name: 'NoWebServices', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off Internet File Association service' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoInternetOpenWith', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer', value_name: 'NoInternetOpenWith', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off printing over HTTP' => { name: 'Software\Policies\Microsoft\Windows NT\Printers\DisableHTTPPrinting', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Printers', value_name: 'DisableHTTPPrinting', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off Registration if URL connection is referring to Microsoft.com' => { name: 'Software\Policies\Microsoft\Windows\Registration Wizard Control\NoRegistration', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Registration Wizard Control', value_name: 'NoRegistration', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off Search Companion content file updates' => { name: 'Software\Policies\Microsoft\SearchCompanion\DisableContentFileUpdates', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\SearchCompanion', value_name: 'DisableContentFileUpdates', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off the "Order Prints" picture task' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoOnlinePrintsWizard', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer', value_name: 'NoOnlinePrintsWizard', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off the "Publish to Web" task for files and folders' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoPublishingWizard', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer', value_name: 'NoPublishingWizard', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off the Windows Messenger Customer Experience Improvement Program' => { name: 'Software\Policies\Microsoft\Messenger\Client\CEIP', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Messenger\Client', value_name: 'CEIP', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '2', disabled_value: '1', }, 'Turn off Windows Customer Experience Improvement Program' => { name: 'Software\Policies\Microsoft\SQMClient\Windows\CEIPEnable', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\SQMClient\Windows', value_name: 'CEIPEnable', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Turn off Windows Error Reporting' => { name: 'Software\Policies\Microsoft\Windows\Windows Error Reporting\Disabled', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Windows Error Reporting', value_name: 'Disabled', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Support device authentication using certificate (DevicePKInitEnabled)' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\System\kerberos\parameters\DevicePKInitEnabled', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\System\kerberos\parameters', value_name: 'DevicePKInitEnabled', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Support device authentication using certificate (DevicePKInitBehavior)' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\System\kerberos\parameters\DevicePKInitBehavior', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\System\kerberos\parameters', value_name: 'DevicePKInitBehavior', reg_type: 'DWORD', data_type: 'string', }, 'Enumeration policy for external devices incompatible with Kernel DMA Protection' => { name: 'Software\Policies\Microsoft\Windows\Kernel DMA Protection\DeviceEnumerationPolicy', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Kernel DMA Protection', value_name: 'DeviceEnumerationPolicy', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Disallow copying of user input methods to the system account for sign-in' => { name: 'Software\Policies\Microsoft\Control Panel\International\BlockUserInputMethodsForSignIn', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Control Panel\International', value_name: 'BlockUserInputMethodsForSignIn', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Always use classic logon' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\System\LogonType', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\System', value_name: 'LogonType', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Do not display network selection UI' => { name: 'Software\Policies\Microsoft\Windows\System\DontDisplayNetworkSelectionUI', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\System', value_name: 'DontDisplayNetworkSelectionUI', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Do not enumerate connected users on domain-joined computers' => { name: 'Software\Policies\Microsoft\Windows\System\DontEnumerateConnectedUsers', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\System', value_name: 'DontEnumerateConnectedUsers', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Enumerate local users on domain-joined computers' => { name: 'Software\Policies\Microsoft\Windows\System\EnumerateLocalUsers', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\System', value_name: 'EnumerateLocalUsers', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off app notifications on the lock screen' => { name: 'Software\Policies\Microsoft\Windows\System\DisableLockScreenAppNotifications', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\System', value_name: 'DisableLockScreenAppNotifications', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn on convenience PIN sign-in' => { name: 'Software\Policies\Microsoft\Windows\System\AllowDomainPINLogon', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\System', value_name: 'AllowDomainPINLogon', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow Clipboard synchronization across devices' => { name: 'Software\Policies\Microsoft\Windows\System\AllowCrossDeviceClipboard', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\System', value_name: 'AllowCrossDeviceClipboard', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow upload of User Activities' => { name: 'Software\Policies\Microsoft\Windows\System\UploadUserActivities', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\System', value_name: 'UploadUserActivities', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Block user from showing account details on sign-in' => { name: 'Software\Policies\Microsoft\Windows\System\BlockUserFromShowingAccountDetailsOnSignin', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\System', value_name: 'BlockUserFromShowingAccountDetailsOnSignin', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Untrusted Font Blocking' => { name: 'Software\Policies\Microsoft\Windows NT\MitigationOptions\MitigationOptions_FontBocking', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\MitigationOptions', value_name: 'MitigationOptions_FontBocking', reg_type: 'SZ', data_type: 'string', }, 'Allow network connectivity during connected-standby (on battery)' => { name: 'Software\Policies\Microsoft\Power\PowerSettings\f15576e8-98b7-4186-b944-eafa664402d9\DCSettingIndex', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Power\PowerSettings\f15576e8-98b7-4186-b944-eafa664402d9', value_name: 'DCSettingIndex', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow network connectivity during connected-standby (plugged in)' => { name: 'Software\Policies\Microsoft\Power\PowerSettings\f15576e8-98b7-4186-b944-eafa664402d9\ACSettingIndex', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Power\PowerSettings\f15576e8-98b7-4186-b944-eafa664402d9', value_name: 'ACSettingIndex', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Require a password when a computer wakes (on battery)' => { name: 'Software\Policies\Microsoft\Power\PowerSettings\0e796bdb-100d-47d6-a2d5-f7d2daa51f51\DCSettingIndex', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Power\PowerSettings\0e796bdb-100d-47d6-a2d5-f7d2daa51f51', value_name: 'DCSettingIndex', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Require a password when a computer wakes (plugged in)' => { name: 'Software\Policies\Microsoft\Power\PowerSettings\0e796bdb-100d-47d6-a2d5-f7d2daa51f51\ACSettingIndex', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Power\PowerSettings\0e796bdb-100d-47d6-a2d5-f7d2daa51f51', value_name: 'ACSettingIndex', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configure Offer Remote Assistance' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\fAllowUnsolicited', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'fAllowUnsolicited', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configure Solicited Remote Assistance' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\fAllowToGetHelp', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'fAllowToGetHelp', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Enable RPC Endpoint Mapper Client Authentication' => { name: 'Software\Policies\Microsoft\Windows NT\Rpc\EnableAuthEpResolution', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Rpc', value_name: 'EnableAuthEpResolution', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Restrict Unauthenticated RPC clients' => { name: 'Software\Policies\Microsoft\Windows NT\Rpc\RestrictRemoteClients', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Rpc', value_name: 'RestrictRemoteClients', reg_type: 'DWORD', data_type: 'string', disabled_value: '0', }, 'Microsoft Support Diagnostic Tool: Turn on MSDT interactive communication with support provider' => { name: 'Software\Policies\Microsoft\Windows\ScriptedDiagnosticsProvider\Policy\DisableQueryRemoteServer', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\ScriptedDiagnosticsProvider\Policy', value_name: 'DisableQueryRemoteServer', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Enable/Disable PerfTrack' => { name: 'Software\Policies\Microsoft\Windows\WDI\{9c5a40da-b965-4fc3-8781-88dd50a6299d}\ScenarioExecutionEnabled', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WDI\{9c5a40da-b965-4fc3-8781-88dd50a6299d}', value_name: 'ScenarioExecutionEnabled', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off the advertising ID' => { name: 'Software\Policies\Microsoft\Windows\AdvertisingInfo\DisabledByGroupPolicy', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\AdvertisingInfo', value_name: 'DisabledByGroupPolicy', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Enable Windows NTP Client' => { name: 'Software\Policies\Microsoft\W32time\TimeProviders\NtpClient\Enabled', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\W32time\TimeProviders\NtpClient', value_name: 'Enabled', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Enable Windows NTP Server' => { name: 'Software\Policies\Microsoft\W32time\TimeProviders\NtpServer\Enabled', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\W32time\TimeProviders\NtpServer', value_name: 'Enabled', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow a Windows app to share application data between users' => { name: 'Software\Policies\Microsoft\Windows\CurrentVersion\AppModel\StateManager\AllowSharedLocalAppData', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\CurrentVersion\AppModel\StateManager', value_name: 'AllowSharedLocalAppData', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Let Windows apps *' => { name: 'Software\Policies\Microsoft\Windows\AppPrivacy\LetAppsAccessAccountInfo', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\AppPrivacy', value_name: 'LetAppsAccessAccountInfo', reg_type: 'DWORD', data_type: 'string', }, 'Allow Microsoft accounts to be optional' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\System\MSAOptional', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\System', value_name: 'MSAOptional', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Block launching Windows Store apps with Windows Runtime API access from hosted content.' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\System\BlockHostedAppAccessWinRT', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\System', value_name: 'BlockHostedAppAccessWinRT', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Disallow Autoplay for non-volume devices' => { name: 'Software\Policies\Microsoft\Windows\Explorer\NoAutoplayfornonVolume', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Explorer', value_name: 'NoAutoplayfornonVolume', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Set the default behavior for AutoRun' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoAutorun', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer', value_name: 'NoAutorun', reg_type: 'DWORD', data_type: 'string', }, 'Turn off Autoplay' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoDriveTypeAutoRun', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer', value_name: 'NoDriveTypeAutoRun', reg_type: 'DWORD', data_type: 'string', }, 'Use enhanced anti-spoofing when available' => { name: 'Software\Policies\Microsoft\Biometrics\FacialFeatures\EnhancedAntiSpoofing', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Biometrics\FacialFeatures', value_name: 'EnhancedAntiSpoofing', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow Use of Camera' => { name: 'Software\Policies\Microsoft\Camera\AllowCamera', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Camera', value_name: 'AllowCamera', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off Microsoft consumer experiences' => { name: 'Software\Policies\Microsoft\Windows\CloudContent\DisableWindowsConsumerFeatures', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\CloudContent', value_name: 'DisableWindowsConsumerFeatures', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Require pin for pairing' => { name: 'Software\Policies\Microsoft\Windows\Connect\RequirePinForPairing', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Connect', value_name: 'RequirePinForPairing', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Do not display the password reveal button' => { name: 'Software\Policies\Microsoft\Windows\CredUI\DisablePasswordReveal', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\CredUI', value_name: 'DisablePasswordReveal', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Enumerate administrator accounts on elevation' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\CredUI\EnumerateAdministrators', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\CredUI', value_name: 'EnumerateAdministrators', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow Telemetry' => { name: 'Software\Policies\Microsoft\Windows\DataCollection\AllowTelemetry', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\DataCollection', value_name: 'AllowTelemetry', reg_type: 'DWORD', data_type: 'string', }, 'Disable pre-release features or settings' => { name: 'Software\Policies\Microsoft\Windows\PreviewBuilds\EnableConfigFlighting', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\PreviewBuilds', value_name: 'EnableConfigFlighting', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Do not show feedback notifications' => { name: 'Software\Policies\Microsoft\Windows\DataCollection\DoNotShowFeedbackNotifications', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\DataCollection', value_name: 'DoNotShowFeedbackNotifications', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Toggle user control over Insider builds' => { name: 'Software\Policies\Microsoft\Windows\PreviewBuilds\AllowBuildPreview', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\PreviewBuilds', value_name: 'AllowBuildPreview', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off desktop gadgets' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\Windows\Sidebar\TurnOffSidebar', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\Windows\Sidebar', value_name: 'TurnOffSidebar', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn Off user-installed desktop gadgets' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\Windows\Sidebar\TurnOffUserInstalledGadgets', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\Windows\Sidebar', value_name: 'TurnOffUserInstalledGadgets', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Application: Control Event Log behavior when the log file reaches its maximum size' => { name: 'Software\Policies\Microsoft\Windows\EventLog\Application\Retention', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\EventLog\Application', value_name: 'Retention', reg_type: 'SZ', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Application: Specify the maximum log file size (KB)' => { name: 'Software\Policies\Microsoft\Windows\EventLog\Application\MaxSize', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\EventLog\Application', value_name: 'MaxSize', reg_type: 'DWORD', data_type: 'string', }, 'Security: Control Event Log behavior when the log file reaches its maximum size' => { name: 'Software\Policies\Microsoft\Windows\EventLog\Security\Retention', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\EventLog\Security', value_name: 'Retention', reg_type: 'SZ', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Security: Specify the maximum log file size (KB)' => { name: 'Software\Policies\Microsoft\Windows\EventLog\Security\MaxSize', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\EventLog\Security', value_name: 'MaxSize', reg_type: 'DWORD', data_type: 'string', }, 'Setup: Control Event Log behavior when the log file reaches its maximum size' => { name: 'Software\Policies\Microsoft\Windows\EventLog\Setup\Retention', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\EventLog\Setup', value_name: 'Retention', reg_type: 'SZ', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Setup: Specify the maximum log file size (KB)' => { name: 'Software\Policies\Microsoft\Windows\EventLog\Setup\MaxSize', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\EventLog\Setup', value_name: 'MaxSize', reg_type: 'DWORD', data_type: 'string', }, 'System: Control Event Log behavior when the log file reaches its maximum size' => { name: 'Software\Policies\Microsoft\Windows\EventLog\System\Retention', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\EventLog\System', value_name: 'Retention', reg_type: 'SZ', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'System: Specify the maximum log file size (KB)' => { name: 'Software\Policies\Microsoft\Windows\EventLog\System\MaxSize', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\EventLog\System', value_name: 'MaxSize', reg_type: 'DWORD', data_type: 'string', }, 'Configure Windows SmartScreen' => { name: 'Software\Policies\Microsoft\Windows\System\EnableSmartScreen', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\System', value_name: 'EnableSmartScreen', reg_type: 'DWORD', data_type: 'string', }, 'Configure Windows SmartScreen (Level)' => { name: 'Software\Policies\Microsoft\Windows\System\ShellSmartScreenLevel', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\System', value_name: 'ShellSmartScreenLevel', reg_type: 'SZ', data_type: 'string', }, 'Turn off Data Execution Prevention for Explorer' => { name: 'Software\Policies\Microsoft\Windows\Explorer\NoDataExecutionPrevention', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Explorer', value_name: 'NoDataExecutionPrevention', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off heap termination on corruption' => { name: 'Software\Policies\Microsoft\Windows\Explorer\NoHeapTerminationOnCorruption', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Explorer', value_name: 'NoHeapTerminationOnCorruption', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off shell protocol protected mode' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\PreXPSP2ShellProtocolBehavior', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer', value_name: 'PreXPSP2ShellProtocolBehavior', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off location' => { name: 'Software\Policies\Microsoft\Windows\LocationAndSensors\DisableLocation', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\LocationAndSensors', value_name: 'DisableLocation', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow Extensions' => { name: 'Software\Policies\Microsoft\MicrosoftEdge\Extensions\ExtensionsEnabled', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\MicrosoftEdge\Extensions', value_name: 'ExtensionsEnabled', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow InPrivate Browsing' => { name: 'Software\Policies\Microsoft\MicrosoftEdge\Main\AllowInPrivate', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\MicrosoftEdge\Main', value_name: 'AllowInPrivate', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configure cookies' => { name: 'Software\Policies\Microsoft\MicrosoftEdge\Main\Cookies', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\MicrosoftEdge\Main', value_name: 'Cookies', reg_type: 'DWORD', data_type: 'string', }, 'Configure Pop-up Blocker' => { name: 'Software\Policies\Microsoft\MicrosoftEdge\Main\AllowPopups', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\MicrosoftEdge\Main', value_name: 'AllowPopups', reg_type: 'SZ', data_type: 'string', }, 'Configure search suggestions in Address bar' => { name: 'Software\Policies\Microsoft\MicrosoftEdge\SearchScopes\ShowSearchSuggestionsGlobal', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\MicrosoftEdge\SearchScopes', value_name: 'ShowSearchSuggestionsGlobal', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configure Password Manager' => { name: 'Software\Policies\Microsoft\MicrosoftEdge\Main\FormSuggest Passwords', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\MicrosoftEdge\Main', value_name: 'FormSuggest Passwords', reg_type: 'SZ', data_type: 'string', }, 'Configure SmartScreen Filter' => { name: 'Software\Policies\Microsoft\MicrosoftEdge\PhishingFilter\EnabledV9', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\MicrosoftEdge\PhishingFilter', value_name: 'EnabledV9', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Prevent access to the about: flags page in Microsoft Edge' => { name: 'Software\Policies\Microsoft\MicrosoftEdge\Main\PreventAccessToAboutFlagsInMicrosoftEdge', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\MicrosoftEdge\Main', value_name: 'PreventAccessToAboutFlagsInMicrosoftEdge', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Prevent bypassing SmartScreen prompts for files' => { name: 'Software\Policies\Microsoft\MicrosoftEdge\PhishingFilter\PreventOverrideAppRepUnknown', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\MicrosoftEdge\PhishingFilter', value_name: 'PreventOverrideAppRepUnknown', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Prevent bypassing SmartScreen prompts for sites' => { name: 'Software\Policies\Microsoft\MicrosoftEdge\PhishingFilter\PreventOverride', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\MicrosoftEdge\PhishingFilter', value_name: 'PreventOverride', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Prevent using Localhost IP address for WebRTC' => { name: 'Software\Policies\Microsoft\MicrosoftEdge\Main\HideLocalHostIP', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\MicrosoftEdge\Main', value_name: 'HideLocalHostIP', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Prevent the usage of OneDrive for file storage (DisableFileSync)' => { name: 'Software\Policies\Microsoft\Windows\Skydrive\DisableFileSync', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Skydrive', value_name: 'DisableFileSync', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Prevent the usage of OneDrive for file storage (DisableFileSyncNGSC)' => { name: 'Software\Policies\Microsoft\Windows\OneDrive\DisableFileSyncNGSC', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\OneDrive', value_name: 'DisableFileSyncNGSC', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Do not allow passwords to be saved' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\DisablePasswordSaving', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'DisablePasswordSaving', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Do not allow client printer redirection' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\fDisableCpm', configuration: 'Computer', registry_key: 'SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'fDisableCpm', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Restrict Remote Desktop Services users to a single Remote Desktop Services session' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\fSingleSessionPerUser', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'fSingleSessionPerUser', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Do not allow COM port redirection' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\fDisableCcm', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'fDisableCcm', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Do not allow LPT port redirection' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\fDisableLPT', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'fDisableLPT', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Do not allow supported Plug and Play device redirection' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\fDisablePNPRedir', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'fDisablePNPRedir', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Always prompt for password upon connection' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\fPromptForPassword', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'fPromptForPassword', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Require secure RPC communication' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\fEncryptRPCTraffic', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'fEncryptRPCTraffic', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Require use of specific security layer for remote (RDP) connections' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\SecurityLayer', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'SecurityLayer', reg_type: 'DWORD', data_type: 'string', }, 'Require user authentication for remote connections by using Network Level Authentication' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\UserAuthentication', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'UserAuthentication', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Set client connection encryption level' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\MinEncryptionLevel', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'MinEncryptionLevel', reg_type: 'DWORD', data_type: 'string', }, 'Set time limit for active but idle Remote Desktop Services sessions' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\MaxIdleTime', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'MaxIdleTime', reg_type: 'DWORD', data_type: 'string', }, 'Set time limit for disconnected sessions' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\MaxDisconnectionTime', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'MaxDisconnectionTime', reg_type: 'DWORD', data_type: 'string', }, 'Do not delete temp folders upon exit' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\DeleteTempDirsOnExit', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'DeleteTempDirsOnExit', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Do not use temporary folders per session' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\PerSessionTempDir', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'PerSessionTempDir', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Prevent downloading of enclosures' => { name: 'Software\Policies\Microsoft\Internet Explorer\Feeds\DisableEnclosureDownload', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Internet Explorer\Feeds', value_name: 'DisableEnclosureDownload', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow Cortana' => { name: 'Software\Policies\Microsoft\Windows\Windows Search\AllowCortana', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Windows Search', value_name: 'AllowCortana', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Set what information is shared in Search' => { name: 'Software\Policies\Microsoft\Windows\Windows Search\ConnectedSearchPrivacy', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Windows Search', value_name: 'ConnectedSearchPrivacy', reg_type: 'DWORD', data_type: 'string', }, 'Allow indexing of encrypted files' => { name: 'Software\Policies\Microsoft\Windows\Windows Search\AllowIndexingEncryptedStoresOrItems', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Windows Search', value_name: 'AllowIndexingEncryptedStoresOrItems', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow search and Cortana to use location' => { name: 'Software\Policies\Microsoft\Windows\Windows Search\AllowSearchToUseLocation', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Windows Search', value_name: 'AllowSearchToUseLocation', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow Cortana above lock screen' => { name: 'Software\Policies\Microsoft\Windows\Windows Search\AllowCortanaAboveLock', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Windows Search', value_name: 'AllowCortanaAboveLock', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off KMS Client Online AVS Validation' => { name: 'Software\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform\NoGenTicket', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform', value_name: 'NoGenTicket', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Disable all apps from Windows Store' => { name: 'Software\Policies\Microsoft\WindowsStore\DisableStoreApps', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\WindowsStore', value_name: 'DisableStoreApps', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Turn off Automatic Download and Install of updates' => { name: 'Software\Policies\Microsoft\WindowsStore\AutoDownload', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\WindowsStore', value_name: 'AutoDownload', reg_type: 'DWORD', data_type: 'string', }, 'Turn off the offer to update to the latest version of Windows' => { name: 'Software\Policies\Microsoft\WindowsStore\DisableOSUpgrade', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\WindowsStore', value_name: 'DisableOSUpgrade', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off the Store application' => { name: 'Software\Policies\Microsoft\WindowsStore\RemoveWindowsStore', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\WindowsStore', value_name: 'RemoveWindowsStore', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Join Microsoft MAPS' => { name: 'Software\Policies\Microsoft\Windows Defender\Spynet\SpynetReporting', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows Defender\Spynet', value_name: 'SpynetReporting', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configure Watson events' => { name: 'Software\Policies\Microsoft\Windows Defender\Reporting\DisableGenericRePorts', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows Defender\Reporting', value_name: 'DisableGenericRePorts', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Configure Default consent' => { name: 'Software\Policies\Microsoft\Windows\Windows Error Reporting\Consent\DefaultConsent', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Windows Error Reporting\Consent', value_name: 'DefaultConsent', reg_type: 'DWORD', data_type: 'string', }, 'Automatically send memory dumps for OS-generated error reports' => { name: 'Software\Policies\Microsoft\Windows\Windows Error Reporting\AutoApproveOSDumps', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Windows Error Reporting', value_name: 'AutoApproveOSDumps', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow suggested apps in Windows Ink Workspace' => { name: 'Software\Policies\Microsoft\WindowsInkWorkspace\AllowSuggestedAppsInWindowsInkWorkspace', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\WindowsInkWorkspace', value_name: 'AllowSuggestedAppsInWindowsInkWorkspace', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow Windows Ink Workspace' => { name: 'Software\Policies\Microsoft\WindowsInkWorkspace\AllowWindowsInkWorkspace', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\WindowsInkWorkspace', value_name: 'AllowWindowsInkWorkspace', reg_type: 'DWORD', data_type: 'string', }, 'Allow user control over installs' => { name: 'Software\Policies\Microsoft\Windows\Installer\EnableUserControl', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Installer', value_name: 'EnableUserControl', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Always install with elevated privileges' => { name: 'Software\Policies\Microsoft\Windows\Installer\AlwaysInstallElevated', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Installer', value_name: 'AlwaysInstallElevated', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Prevent Internet Explorer security prompt for Windows Installer scripts' => { name: 'Software\Policies\Microsoft\Windows\Installer\SafeForScripting', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Installer', value_name: 'SafeForScripting', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn on PowerShell Script Block Logging' => { name: 'Software\Policies\Microsoft\Windows\PowerShell\ScriptBlockLogging\EnableScriptBlockLogging', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\PowerShell\ScriptBlockLogging', value_name: 'EnableScriptBlockLogging', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn on PowerShell Transcription' => { name: 'Software\Policies\Microsoft\Windows\PowerShell\Transcription\EnableTranscripting', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\PowerShell\Transcription', value_name: 'EnableTranscripting', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow Basic authentication (Client)' => { name: 'Software\Policies\Microsoft\Windows\WinRM\Client\AllowBasic', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WinRM\Client', value_name: 'AllowBasic', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow unencrypted traffic (Client)' => { name: 'Software\Policies\Microsoft\Windows\WinRM\Client\AllowUnencryptedTraffic', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WinRM\Client', value_name: 'AllowUnencryptedTraffic', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Disallow Digest authentication' => { name: 'Software\Policies\Microsoft\Windows\WinRM\Client\AllowDigest', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WinRM\Client', value_name: 'AllowDigest', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Allow Basic authentication (Service)' => { name: 'Software\Policies\Microsoft\Windows\WinRM\Service\AllowBasic', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WinRM\Service', value_name: 'AllowBasic', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow remote server management through WinRM' => { name: 'Software\Policies\Microsoft\Windows\WinRM\Service\AllowAutoConfig', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WinRM\Service', value_name: 'AllowAutoConfig', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow unencrypted traffic (Service)' => { name: 'Software\Policies\Microsoft\Windows\WinRM\Service\AllowUnencryptedTraffic', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WinRM\Service', value_name: 'AllowUnencryptedTraffic', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Disallow WinRM from storing RunAs credentials' => { name: 'Software\Policies\Microsoft\Windows\WinRM\Service\DisableRunAs', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WinRM\Service', value_name: 'DisableRunAs', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow Remote Shell Access' => { name: 'Software\Policies\Microsoft\Windows\WinRM\Service\WinRS\AllowRemoteShellAccess', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WinRM\Service\WinRS', value_name: 'AllowRemoteShellAccess', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Prevent users from modifying settings' => { name: 'Software\Policies\Microsoft\Windows Defender Security Center\App and Browser protection\DisallowExploitProtectionOverride', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows Defender Security Center\App and Browser protection', value_name: 'DisallowExploitProtectionOverride', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configure SMB v1 client driver' => { name: 'System\CurrentControlSet\Services\MrxSmb10\Start', configuration: 'Computer', registry_key: 'System\CurrentControlSet\Services\MrxSmb10', value_name: 'Start', reg_type: 'DWORD', data_type: 'string', }, 'Configure SMB v1 client' => { name: 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\DependOnService', configuration: 'Computer', registry_key: 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation', value_name: 'DependOnService', reg_type: 'MULTISZ', data_type: 'string', }, 'Configure SMB v1 server' => { name: 'System\CurrentControlSet\Services\LanmanServer\Parameters\SMB1', configuration: 'Computer', registry_key: 'System\CurrentControlSet\Services\LanmanServer\Parameters', value_name: 'SMB1', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Remote host allows delegation of non-exportable credentials' => { name: 'Software\Policies\Microsoft\Windows\CredentialsDelegation\AllowProtectedCreds', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\CredentialsDelegation', value_name: 'AllowProtectedCreds', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off picture password sign-in' => { name: 'Software\Policies\Microsoft\Windows\System\BlockDomainPicturePassword', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\System', value_name: 'BlockDomainPicturePassword', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off Windows Location Provider' => { name: 'Software\Policies\Microsoft\Windows\LocationAndSensors\DisableWindowsLocationProvider', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\LocationAndSensors', value_name: 'DisableWindowsLocationProvider', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configure local setting override for reporting to Microsoft MAPS' => { name: 'Software\Policies\Microsoft\Microsoft Antimalware\SpyNet\LocalSettingOverrideSpyNetReporting', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Microsoft Antimalware\SpyNet', value_name: 'LocalSettingOverrideSpyNetReporting', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Require Mutual Authentication (NETLOGON)' => { name: 'Software\Policies\Microsoft\Windows\NetworkProvider\HardenedPaths\NETLOGON', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\NetworkProvider\HardenedPaths', value_name: '\\\\*\NETLOGON', reg_type: 'SZ', data_type: 'string', }, 'Require Mutual Authentication (SYSVOL)' => { name: 'Software\Policies\Microsoft\Windows\NetworkProvider\HardenedPaths\SYSVOL', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\NetworkProvider\HardenedPaths', value_name: '\\\\*\SYSVOL', reg_type: 'SZ', data_type: 'string', }, 'Allow Online Tips' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\AllowOnlineTips', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer', value_name: 'AllowOnlineTips', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configure Authenticated Proxy usage for the Connected User Experience and Telemetry service' => { name: 'Software\Policies\Microsoft\Windows\DataCollection\DisableEnterpriseAuthProxy', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\DataCollection', value_name: 'DisableEnterpriseAuthProxy', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow Message Service Cloud Sync' => { name: 'Software\Policies\Microsoft\Windows\Messaging\AllowMessageSync', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Messaging', value_name: 'AllowMessageSync', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Block all consumer Microsoft account user authentication' => { name: 'Software\Policies\Microsoft\MicrosoftAccount\DisableUserAuth', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\MicrosoftAccount', value_name: 'DisableUserAuth', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off Windows Error Reporting (PCHealth)' => { name: 'Software\Policies\Microsoft\PCHealth\ErrorReporting\DoReport', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\PCHealth\ErrorReporting', value_name: 'DoReport', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Do not allow drive redirection' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\fDisableCdm', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'fDisableCdm', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn on behavior monitoring' => { name: 'Software\Policies\Microsoft\Windows Defender\Real-Time Protection\DisableBehaviorMonitoring', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows Defender\Real-Time Protection', value_name: 'DisableBehaviorMonitoring', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Scan removable drives' => { name: 'Software\Policies\Microsoft\Windows Defender\Scan\DisableRemovableDriveScanning', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows Defender\Scan', value_name: 'DisableRemovableDriveScanning', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Turn on e-mail scanning' => { name: 'Software\Policies\Microsoft\Windows Defender\Scan\DisableEmailScanning', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows Defender\Scan', value_name: 'DisableEmailScanning', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Configure Attack Surface Reduction rules' => { name: 'Software\Policies\Microsoft\Windows Defender\Windows Defender Exploit Guard\ASR\ExploitGuard_ASR_Rules', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows Defender\Windows Defender Exploit Guard\ASR', value_name: 'ExploitGuard_ASR_Rules', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Prevent users and apps from accessing dangerous websites' => { name: 'Software\Policies\Microsoft\Windows Defender\Windows Defender Exploit Guard\Network Protection\EnableNetworkProtection', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows Defender\Windows Defender Exploit Guard\Network Protection', value_name: 'EnableNetworkProtection', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configure detection for potentially unwanted applications' => { name: 'Software\Policies\Microsoft\Windows Defender\PUAProtection', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows Defender', value_name: 'PUAProtection', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Limits print driver installation to Administrators' => { name: 'Software\Policies\Microsoft\Windows NT\Printers\PointAndPrint\RestrictDriverInstallationToAdministrators', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Printers\PointAndPrint', value_name: 'RestrictDriverInstallationToAdministrators', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configure DNS over HTTPS (DoH) name resolution' => { name: 'Software\Policies\Microsoft\Windows NT\DNSClient\DoHPolicy', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\DNSClient', value_name: 'DoHPolicy', reg_type: 'DWORD', data_type: 'string', }, 'Allow Print Spooler to accept client connections' => { name: 'Software\Policies\Microsoft\Windows NT\Printers\RegisterSpoolerRemoteRpcEndPoint', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Printers', value_name: 'RegisterSpoolerRemoteRpcEndPoint', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '2', }, 'Point and Print Restrictions when installing drivers for a new connection' => { name: 'Software\Policies\Microsoft\Windows NT\Printers\PointAndPrint\NoWarningNoElevationOnInstall', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Printers\PointAndPrint', value_name: 'NoWarningNoElevationOnInstall', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Point and Print Restrictions when updating drivers for an existing connection' => { name: 'Software\Policies\Microsoft\Windows NT\Printers\PointAndPrint\UpdatePromptSettings', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Printers\PointAndPrint', value_name: 'UpdatePromptSettings', reg_type: 'DWORD', data_type: 'string', }, 'Prevent device metadata retrieval from the Internet' => { name: 'SOFTWARE\Policies\Microsoft\Windows\Device Metadata\PreventDeviceMetadataFromNetwork', configuration: 'Computer', registry_key: 'SOFTWARE\Policies\Microsoft\Windows\Device Metadata', value_name: 'PreventDeviceMetadataFromNetwork', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off cloud consumer account state content' => { name: 'Software\Policies\Microsoft\Windows\CloudContent\DisableConsumerAccountStateContent', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\CloudContent', value_name: 'DisableConsumerAccountStateContent', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Disable OneSettings Downloads' => { name: 'Software\Policies\Microsoft\Windows\DataCollection\DisableOneSettingsDownloads', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\DataCollection', value_name: 'DisableOneSettingsDownloads', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Enable OneSettings Auditing' => { name: 'Software\Policies\Microsoft\Windows\DataCollection\EnableOneSettingsAuditing', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\DataCollection', value_name: 'EnableOneSettingsAuditing', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Limit Diagnostic Log Collection' => { name: 'Software\Policies\Microsoft\Windows\DataCollection\LimitDiagnosticLogCollection', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\DataCollection', value_name: 'LimitDiagnosticLogCollection', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Limit Dump Collection' => { name: 'Software\Policies\Microsoft\Windows\DataCollection\LimitDumpCollection', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\DataCollection', value_name: 'LimitDumpCollection', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off Push To Install service' => { name: 'Software\Policies\Microsoft\PushToInstall\DisablePushToInstall', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\PushToInstall', value_name: 'DisablePushToInstall', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow Cloud Search' => { name: 'SOFTWARE\Policies\Microsoft\Windows\Windows Search\AllowCloudSearch', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Windows Search', value_name: 'AllowCloudSearch', reg_type: 'DWORD', data_type: 'string', }, 'Manage preview builds (setting)' => { name: 'Software\Policies\Microsoft\Windows\WindowsUpdate\ManagePreviewBuilds', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WindowsUpdate', value_name: 'ManagePreviewBuilds', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow UI Automation redirection' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\EnableUiaRedirection', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'EnableUiaRedirection', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Do not allow location redirection' => { name: 'Software\Policies\Microsoft\Windows NT\Terminal Services\fDisableLocationRedir', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'fDisableLocationRedir', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Manage preview builds (policy)' => { name: 'Software\Policies\Microsoft\Windows\WindowsUpdate\ManagePreviewBuildsPolicyValue', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\WindowsUpdate', value_name: 'ManagePreviewBuildsPolicyValue', reg_type: 'DWORD', data_type: 'string', }, 'Enable screen saver' => { name: 'Software\Policies\Microsoft\Windows\Control Panel\Desktop\ScreenSaveActive', configuration: 'User', registry_key: 'Software\Policies\Microsoft\Windows\Control Panel\Desktop', value_name: 'ScreenSaveActive', reg_type: 'SZ', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Force specific screen saver' => { name: 'Software\Policies\Microsoft\Windows\Control Panel\Desktop\SCRNSAVE.EXE', configuration: 'User', registry_key: 'Software\Policies\Microsoft\Windows\Control Panel\Desktop', value_name: 'SCRNSAVE.EXE', reg_type: 'SZ', data_type: 'string', }, 'Password protect the screen saver' => { name: 'Software\Policies\Microsoft\Windows\Control Panel\Desktop\ScreenSaverIsSecure', configuration: 'User', registry_key: 'Software\Policies\Microsoft\Windows\Control Panel\Desktop', value_name: 'ScreenSaverIsSecure', reg_type: 'SZ', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Screen saver timeout' => { name: 'Software\Policies\Microsoft\Windows\Control Panel\Desktop\ScreenSaveTimeOut', configuration: 'User', registry_key: 'Software\Policies\Microsoft\Windows\Control Panel\Desktop', value_name: 'ScreenSaveTimeOut', reg_type: 'SZ', data_type: 'string', }, 'Turn off toast notifications on the lock screen' => { name: 'SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\PushNotifications\NoToastApplicationNotificationOnLockScreen', configuration: 'User', registry_key: 'SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\PushNotifications', value_name: 'NoToastApplicationNotificationOnLockScreen', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off Help Experience Improvement Program' => { name: 'Software\Policies\Microsoft\Assistance\Client\1.0\NoImplicitFeedback', configuration: 'User', registry_key: 'Software\Policies\Microsoft\Assistance\Client\1.0', value_name: 'NoImplicitFeedback', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Do not preserve zone information in file attachments' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\Attachments\SaveZoneInformation', configuration: 'User', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\Attachments', value_name: 'SaveZoneInformation', reg_type: 'DWORD', data_type: 'string', }, 'Notify antivirus programs when opening attachments' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\Attachments\ScanWithAntiVirus', configuration: 'User', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\Attachments', value_name: 'ScanWithAntiVirus', reg_type: 'DWORD', data_type: 'string', }, 'Configure Windows spotlight on lock screen' => { name: 'Software\Policies\Microsoft\Windows\CloudContent\ConfigureWindowsSpotlight', configuration: 'User', registry_key: 'Software\Policies\Microsoft\Windows\CloudContent', value_name: 'ConfigureWindowsSpotlight', reg_type: 'DWORD', data_type: 'string', }, 'Do not suggest third-party content in Windows spotlight' => { name: 'Software\Policies\Microsoft\Windows\CloudContent\DisableThirdPartySuggestions', configuration: 'User', registry_key: 'Software\Policies\Microsoft\Windows\CloudContent', value_name: 'DisableThirdPartySuggestions', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Do not use diagnostic data for tailored experiences' => { name: 'Software\Policies\Microsoft\Windows\CloudContent\DisableTailoredExperiencesWithDiagnosticData', configuration: 'User', registry_key: 'Software\Policies\Microsoft\Windows\CloudContent', value_name: 'DisableTailoredExperiencesWithDiagnosticData', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off all Windows spotlight features' => { name: 'Software\Policies\Microsoft\Windows\CloudContent\DisableWindowsSpotlightFeatures', configuration: 'User', registry_key: 'Software\Policies\Microsoft\Windows\CloudContent', value_name: 'DisableWindowsSpotlightFeatures', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Prevent users from sharing files within their profile' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoInplaceSharing', configuration: 'User', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer', value_name: 'NoInplaceSharing', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Always install with elevated privileges user' => { name: 'Software\Policies\Microsoft\Windows\Installer\AlwaysInstallElevated', configuration: 'User', registry_key: 'Software\Policies\Microsoft\Windows\Installer', value_name: 'AlwaysInstallElevated', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Prevent Codec Download' => { name: 'Software\Policies\Microsoft\WindowsMediaPlayer\PreventCodecDownload', configuration: 'User', registry_key: 'Software\Policies\Microsoft\WindowsMediaPlayer', value_name: 'PreventCodecDownload', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configure RPC packet level privacy setting for incoming connections' => { name: 'SYSTEM\CurrentControlSet\Control\Print\RpcAuthnLevelPrivacyEnabled', configuration: 'Computer', registry_key: 'SYSTEM\CurrentControlSet\Control\Print', value_name: 'RpcAuthnLevelPrivacyEnabled', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configure NetBIOS settings' => { name: 'Software\Policies\Microsoft\Windows NT\DNSClient\EnableNetbios', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\DNSClient', value_name: 'EnableNetbios', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '2', disabled_value: '0', }, 'Configure Redirection Guard' => { name: 'Software\Policies\Microsoft\Windows NT\Printers\RedirectionGuardPolicy', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Printers', value_name: 'RedirectionGuardPolicy', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configure RPC connection settings: Protocol to use for outgoing RPC connections' => { name: 'Software\Policies\Microsoft\Windows NT\Printers\RPC\RpcUseNamedPipeProtocol', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Printers\RPC', value_name: 'RpcUseNamedPipeProtocol', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Configure RPC connection settings: Use authentication for outgoing RPC connections' => { name: 'Software\Policies\Microsoft\Windows NT\Printers\RPC\RpcAuthentication', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Printers\RPC', value_name: 'RpcAuthentication', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Configure RPC listener settings: Protocols to allow for incoming RPC connections' => { name: 'Software\Policies\Microsoft\Windows NT\Printers\RPC\RpcProtocols', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Printers\RPC', value_name: 'RpcProtocols', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '5', disabled_value: '0', }, 'Configure RPC listener settings: Authentication protocol to use for incoming RPC connections' => { name: 'Software\Policies\Microsoft\Windows NT\Printers\RPC\ForceKerberosForRpc', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Printers\RPC', value_name: 'ForceKerberosForRpc', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Configure RPC over TCP port' => { name: 'Software\Policies\Microsoft\Windows NT\Printers\RPC\RpcTcpPort', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Printers\RPC', value_name: 'RpcTcpPort', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '0', disabled_value: '1', }, 'Manage processing of Queue-specific files' => { name: 'Software\Policies\Microsoft\Windows NT\Printers\CopyFilesPolicy', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows NT\Printers', value_name: 'CopyFilesPolicy', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow Custom SSPs and APs to be loaded into LSASS' => { name: 'Software\Policies\Microsoft\Windows\System\AllowCustomSSPsAPs', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\System', value_name: 'AllowCustomSSPsAPs', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Turn off cloud optimized content' => { name: 'Software\Policies\Microsoft\Windows\CloudContent\DisableCloudOptimizedContent', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\CloudContent', value_name: 'DisableCloudOptimizedContent', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Enable App Installer' => { name: 'Software\Policies\Microsoft\Windows\AppInstaller\EnableAppInstaller', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\AppInstaller', value_name: 'EnableAppInstaller', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Enable App Installer Experimental Features' => { name: 'Software\Policies\Microsoft\Windows\AppInstaller\EnableExperimentalFeatures', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\AppInstaller', value_name: 'EnableExperimentalFeatures', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Enable App Installer Hash Override' => { name: 'Software\Policies\Microsoft\Windows\AppInstaller\EnableHashOverride', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\AppInstaller', value_name: 'EnableHashOverride', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Enable App Installer ms-appinstaller protocol' => { name: 'Software\Policies\Microsoft\Windows\AppInstaller\EnableMSAppInstallerProtocol', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\AppInstaller', value_name: 'EnableMSAppInstallerProtocol', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Do not allow WebAuthn redirection' => { name: 'SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services\fDisableWebAuthn', configuration: 'Computer', registry_key: 'SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services', value_name: 'fDisableWebAuthn', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Allow search highlights' => { name: 'Software\Policies\Microsoft\Windows\Windows Search\EnableDynamicContentInWSB', configuration: 'Computer', registry_key: 'Software\Policies\Microsoft\Windows\Windows Search', value_name: 'EnableDynamicContentInWSB', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, 'Enable MPR notifications for the system' => { name: 'Software\Microsoft\Windows\CurrentVersion\Policies\System\EnableMPR', configuration: 'Computer', registry_key: 'Software\Microsoft\Windows\CurrentVersion\Policies\System', value_name: 'EnableMPR', reg_type: 'DWORD', data_type: 'boolean', enabled_value: '1', disabled_value: '0', }, } end |
.find_mapping_from_policy_desc(desc) ⇒ Object
returns the key and hash value given the policy desc
16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/puppet_x/asp/security_policy.rb', line 16 def self.find_mapping_from_policy_desc(desc) name = desc.downcase _key, value = asp_mapping.find do |key, _hash| key.downcase == name end unless value raise KeyError, "#{desc} is not a valid policy" end value end |
.find_mapping_from_policy_name(name) ⇒ Object
returns the key and hash value given the policy name
8 9 10 11 12 13 |
# File 'lib/puppet_x/asp/security_policy.rb', line 8 def self.find_mapping_from_policy_name(name) key, value = asp_mapping.find do |_key, hash| hash[:name].casecmp(name).zero? end [key, value] end |