HP.ClientManagement.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 |
# # Copyright 2018-2022 HP Development Company, L.P. # All Rights Reserved. # # NOTICE: All information contained herein is, and remains the property of HP Development Company, L.P. # # The intellectual and technical concepts contained herein are proprietary to HP Development Company, L.P # and may be covered by U.S. and Foreign Patents, patents in process, and are protected by # trade secret or copyright law. Dissemination of this information or reproduction of this material # is strictly forbidden unless prior written permission is obtained from HP Development Company, L.P. Add-Type -AssemblyName System.Web Set-StrictMode -Version 3.0 #requires -Modules "HP.Private" Add-Type -TypeDefinition @' public enum BiosUpdateCriticality { Recommended=0, Critical=1 } '@ <# .SYNOPSIS Retrieve an HP BIOS Setting object by name .DESCRIPTION Read an HP-specific BIOS setting, identified by the specified name. .PARAMETER Name The name of the setting to retrieve. This parameter is mandatory, and has no default. .PARAMETER Format This parameter allows to specify the formatting of the result. Possible values are: * BCU: format as HP BIOS Config Utility input format * CSV: format as a comma-separated values list * XML: format as XML * JSON: format as JSON If not specified, the default PowerShell formatting is used. .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .NOTES Required HP BIOS. .EXAMPLE Get-HPBIOSSetting -Name "Serial Number" -Format BCU #> function Get-HPBIOSSetting { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPBIOSSetting")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $true)] [Parameter(ParameterSetName = 'ReuseSession',Position = 0,Mandatory = $true)] $Name, [Parameter(ParameterSetName = 'NewSession',Position = 1,Mandatory = $false)] [Parameter(ParameterSetName = 'ReuseSession',Position = 1,Mandatory = $false)] [ValidateSet('XML','JSON','BCU','CSV')] $Format, [Parameter(ParameterSetName = 'NewSession',Position = 2,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 3,Mandatory = $true)] [CimSession]$CimSession ) $ns = getNamespace Write-Verbose "Reading HP BIOS Setting '$Name' from $ns on '$ComputerName'" $result = $null $params = @{ Class = "HP_BIOSSetting" Namespace = $ns Filter = "Name='$name'" } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } try { $result = Get-CimInstance @params -ErrorAction stop } catch [Microsoft.Management.Infrastructure.CimException] { if ($_.Exception.Message.trim() -eq "Access denied") { throw [System.UnauthorizedAccessException]"Access denied: Please ensure you have the rights to perform this operation." } throw [System.NotSupportedException]"$($_.Exception.Message): Please ensure this is a supported HP device." } if (-not $result) { $Err = "Setting not found: '" + $name + "'" throw [System.Management.Automation.ItemNotFoundException]$Err } Add-Member -InputObject $result -Force -NotePropertyName "Class" -NotePropertyValue $result.CimClass.CimClassName | Out-Null Write-Verbose "Retrieved HP BIOS Setting '$name' ok." switch ($format) { { $_ -eq 'CSV' } { return convertSettingToCSV ($result) } { $_ -eq 'XML' } { return convertSettingToXML ($result) } { $_ -eq 'BCU' } { return convertSettingToBCU ($result) } { $_ -eq 'JSON' } { return convertSettingToJSON ($result) } default { return $result } } } <# .SYNOPSIS Get device UUID via standard OS providers .DESCRIPTION This function gets the system UUID via standard OS providers. This should normally match the result from Get-HPBIOSUUID. .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE Get-HPDeviceUUID #> function Get-HPDeviceUUID () { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPDeviceUUID")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 1,Mandatory = $true)] [CimSession]$CimSession ) $params = @{ ClassName = 'Win32_ComputerSystemProduct' Namespace = 'root\cimv2' } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } $obj = Get-CimInstance @params -ErrorAction stop ([string](getWmiField $obj "UUID")).trim().ToUpper() } <# .SYNOPSIS Get BIOS UUID from the BIOS .DESCRIPTION This function gets the system UUID from the BIOS. This should normally match the result from Get-HPDeviceUUID. .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE Get-HPBIOSUUID #> function Get-HPBIOSUUID { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPBIOSUUID")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 1,Mandatory = $true)] [CimSession]$CimSession ) $params = @{ Name = 'Universally Unique Identifier (UUID)' } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } $obj = Get-HPBIOSSetting @params -ErrorAction stop if ($obj.Value -match '-') { return (getFormattedBiosSettingValue $obj) } else { $raw = ([guid]::new($obj.Value)).ToByteArray() $raw[0],$raw[3] = $raw[3],$raw[0] $raw[1],$raw[2] = $raw[2],$raw[1] $raw[4],$raw[5] = $raw[5],$raw[4] $raw[6],$raw[7] = $raw[7],$raw[6] return ([guid]::new($raw)).ToString().ToUpper().trim() } } <# .SYNOPSIS Get the current BIOS version .DESCRIPTION This function gets the current BIOS version. If available, and the -includeFamily switch is specified, the BIOS family is also included. .PARAMETER IncludeFamily Include BIOS family in the result .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE Get-HPBIOSVersion #> function Get-HPBIOSVersion { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPBIOSVersion")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $false)] [Parameter(ParameterSetName = 'ReuseSession',Position = 0,Mandatory = $false)] [switch]$IncludeFamily, [Parameter(ParameterSetName = 'NewSession',Position = 1,Mandatory = $false)] [Parameter(Position = 1,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 2,Mandatory = $true)] [CimSession]$CimSession ) $params = @{ ClassName = 'Win32_BIOS' Namespace = 'root\cimv2' } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } $obj = Get-CimInstance @params -ErrorAction stop $verfield = getWmiField $obj "SMBIOSBIOSVersion" $ver = $null Write-Verbose "Received object with $verfield" try { $ver = extractBIOSVersion $verfield } catch { throw [System.InvalidOperationException]"The BIOS version on this system could not be parsed. This BIOS may not be supported." } if ($includeFamily.IsPresent) { $result = $ver + " " + $verfield.Split()[0] } else { $result = $ver } $result.TrimStart("0").trim() } <# .SYNOPSIS Get the BIOS author (manufacturer) .DESCRIPTION This function gets the BIOS manufacturer via the Win32_BIOS WMI class. In some cases, the BIOS manufacturer may be different than the device manufacturer. .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE Get-HPBIOSAuthor #> function Get-HPBIOSAuthor { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPBIOSAuthor")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 1,Mandatory = $true)] [CimSession]$CimSession ) $params = @{ ClassName = 'Win32_BIOS' Namespace = 'root\cimv2' } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } $obj = Get-CimInstance @params -ErrorAction stop ([string](getWmiField $obj "Manufacturer")).trim() } <# .SYNOPSIS Get the Device manufacturer .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .DESCRIPTION This function gets the device manufacturer via standard Windows WMI providers. In some cases, the BIOS manufacturer may be different than the device manufacturer. .EXAMPLE Get-HPDeviceManufacturer #> function Get-HPDeviceManufacturer { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPDeviceManufacturer")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 1,Mandatory = $true)] [CimSession]$CimSession ) $params = @{ ClassName = 'Win32_ComputerSystem' Namespace = 'root\cimv2' } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } $obj = Get-CimInstance @params -ErrorAction stop ([string](getWmiField $obj "Manufacturer")).trim() } <# .SYNOPSIS Get the device serial number .DESCRIPTION Get the system serial number via Windows WMI. This command is equivalent to reading the SerialNumber property in the Win32_BIOS WMI class. .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE Get-HPDeviceSerialNumber #> function Get-HPDeviceSerialNumber { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPDeviceSerialNumber")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 1,Mandatory = $true)] [CimSession]$CimSession ) $params = @{ ClassName = 'Win32_BIOS' Namespace = 'root\cimv2' } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } $obj = Get-CimInstance @params -ErrorAction stop ([string](getWmiField $obj "SerialNumber")).trim() } <# .SYNOPSIS Get the device model string, which is the marketing name of the device. .DESCRIPTION Get the device model string, which is the marketing name of the device. .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE Get-HPDeviceModel #> function Get-HPDeviceModel { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPDeviceModel")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 1,Mandatory = $true)] [CimSession]$CimSession ) $params = @{ ClassName = 'Win32_ComputerSystem' Namespace = 'root\cimv2' } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } $obj = Get-CimInstance @params -ErrorAction stop ([string](getWmiField $obj "Model")).trim() } <# .SYNOPSIS Get the device PartNumber (or SKU) .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .DESCRIPTION Get the device part number for the current device. This function is equivalent to reading the field SystemSKUNumber from the WMI class Win32_ComputerSystem. .EXAMPLE Get-HPDevicePartNumber #> function Get-HPDevicePartNumber { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPDevicePartNumber")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 1,Mandatory = $true)] [CimSession]$CimSession ) $params = @{ ClassName = 'Win32_ComputerSystem' Namespace = 'root\cimv2' } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } $obj = Get-CimInstance @params -ErrorAction stop ([string](getWmiField $obj "SystemSKUNumber")).trim().ToUpper() } <# .SYNOPSIS Get the product ID .DESCRIPTION This product ID (Platform ID) is a 4-character hexadecimal string. It corresponds to the Product field in the Win32_BaseBoard WMI class. .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE Get-HPDeviceProductID #> function Get-HPDeviceProductID { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPDeviceProductID")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 1,Mandatory = $true)] [CimSession]$CimSession ) $params = @{ ClassName = 'Win32_BaseBoard' Namespace = 'root\cimv2' } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } $obj = Get-CimInstance @params -ErrorAction stop ([string](getWmiField $obj "Product")).trim().ToUpper() } <# .SYNOPSIS Get the device asset tag .DESCRIPTION Retrieves the asset tag for a device (also called the Asset Tracking Number). Some computers may have a blank asset tag, others may have the asset tag pre-populated with the serial number value. .PARAMETER ComputerName Alias -Target. Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE Get-HPDeviceAssetTag #> function Get-HPDeviceAssetTag { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPDeviceAssetTag")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 1,Mandatory = $true)] [CimSession]$CimSession ) $params = @{ Name = 'Asset Tracking Number' } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } $obj = Get-HPBIOSSetting @params -ErrorAction stop getFormattedBiosSettingValue $obj } <# .SYNOPSIS Get the value of a BIOS setting. .DESCRIPTION This function retrieves the value of a BIOS setting. Whereas the Get-HPBIOSSetting retrieves all setting fields, Get-HPBIOSSettingValue retrieves only the setting's value. .NOTES Requires HP BIOS. .PARAMETER name The name of the setting to retrieve .PARAMETER ComputerName Alias -Target. Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE Get-HPBIOSSettingValue -Name 'Asset Tracking Number' #> function Get-HPBIOSSettingValue { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPBIOSSettingValue")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $true)] [Parameter(ParameterSetName = 'ReuseSession',Position = 0,Mandatory = $true)] [string]$Name, [Parameter(ParameterSetName = 'NewSession',Position = 1,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 2,Mandatory = $false)] [CimSession]$CimSession ) $params = @{ Name = $Name } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } $obj = Get-HPBIOSSetting @params if ($obj) { getFormattedBiosSettingValue $obj } } <# .SYNOPSIS Retrieve all BIOS settings .DESCRIPTION Retrieve all BIOS settings on a machine, either as native objects, or as a specified format. .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER Format This parameter allows to specify the formatting of the result. Possible values are: * BCU: format as HP BIOS Config Utility input format * CSV: format as a comma-separated values list * XML: format as XML * JSON: format as JSON * brief: (default) format as a list of names .PARAMETER NoReadonly When true, don't include read-only settings into the response. Default is false. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE Get-HPBIOSSettingsList -Format BCU .NOTES - Although the function supports BCU, note that redirecting the function's output to a file will not be usable by BCU, because PowerShell will insert a unicode BOM in the file. To obtain a compatible file, either remove the BOM manually or consider using bios-cli.ps1. - BIOS settings of type 'password' are not output when using XML, JSON, BCU, or CSV formats. - By convention, when representing multiple values in an enumeration as a single string, the value with an asterisk in front is the currently active value. For example, given the string "One,*Two,Three" representing three possible enumeration choices, the current active value is "Two". - Requires HP BIOS. #> function Get-HPBIOSSettingsList { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPBIOSSettingsList")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $false)] [Parameter(ParameterSetName = 'ReuseSession',Position = 0,Mandatory = $false)] [Parameter(Position = 0,Mandatory = $false)] [ValidateSet('XML','JSON','BCU','CSV','brief')] [string]$Format, [Parameter(ParameterSetName = 'NewSession',Position = 1,Mandatory = $false)] [Parameter(ParameterSetName = 'ReuseSession',Position = 1,Mandatory = $false)] [Parameter(Position = 1,Mandatory = $false)] [switch]$NoReadonly, [Parameter(ParameterSetName = 'NewSession',Position = 2,Mandatory = $false)] [Alias('Target')] [Parameter(Position = 2,Mandatory = $false)] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 3,Mandatory = $false)] [Parameter(Position = 3,Mandatory = $false)] [CimSession]$CimSession ) $ns = getNamespace Write-Verbose "Getting all BIOS settings from '$ComputerName'" $params = @{ ClassName = 'HP_BIOSSetting' Namespace = $ns } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } try { $cs = Get-CimInstance @params -ErrorAction stop } catch [Microsoft.Management.Infrastructure.CimException]{ if ($_.Exception.Message.trim() -eq "Access denied") { throw [System.UnauthorizedAccessException]"Access denied: Please ensure you have the rights to perform this operation." } throw [System.NotSupportedException]"$($_.Exception.Message): Please ensure this is a supported HP device." } switch ($format) { { $_ -eq 'BCU' } { # to BCU format $now = Get-Date Write-Output "BIOSConfig 1.0" Write-Output ";" Write-Output "; Created by CMSL function Get-HPBIOSSettingsList" Write-Output "; Date=$now" Write-Output ";" Write-Output "; Found $($cs.count) settings" Write-Output ";" foreach ($c in $cs) { if ($c.CimClass.CimClassName -ne "HPBIOS_BIOSPassword") { if ((-not $noreadonly.IsPresent) -or ($c.IsReadOnly -eq 0)) { convertSettingToBCU ($c) } } } return } { $_ -eq 'XML' } { # to IA format Write-Output "<?xml version=""1.0"" encoding=""UTF-8"" standalone=""yes"" ?>" Write-Output "<ImagePal>" Write-Output " <BIOSSettings>" foreach ($c in $cs) { if ($c.CimClass.CimClassName -ne "HPBIOS_BIOSPassword") { if ((-not $noreadonly.IsPresent) -or ($c.IsReadOnly -eq 0)) { convertSettingToXML ($c) } } } Write-Output " </BIOSSettings>" Write-Output "</ImagePal>" return } { $_ -eq 'JSON' } { # to JSON format $first = $true "[" | Write-Output foreach ($c in $cs) { Add-Member -InputObject $c -Force -NotePropertyName "Class" -NotePropertyValue $c.CimClass.CimClassName | Out-Null if ($c.CimClass.CimClassName -ne "HPBIOS_BIOSPassword") { if ((-not $noreadonly.IsPresent) -or ($c.IsReadOnly -eq 0)) { if ($first -ne $true) { Write-Output "," } convertSettingToJSON ($c) $first = $false } } } "]" | Write-Output } { $_ -eq 'CSV' } { # to CSV format Write-Output ("NAME,CURRENT_VALUE,READONLY,TYPE,PHYSICAL_PRESENCE_REQUIRED,MIN,MAX,"); foreach ($c in $cs) { if ($c.CimClass.CimClassName -ne "HPBIOS_BIOSPassword") { if ((-not $noreadonly.IsPresent) -or ($c.IsReadOnly -eq 0)) { convertSettingToCSV ($c) } } } return } { $_ -eq 'brief' } { foreach ($c in $cs) { if ((-not $noreadonly.IsPresent) -or ($c.IsReadOnly -eq 0)) { Write-Output $c.Name } } return } default { if (-not $noreadonly.IsPresent) { return $cs } else { return $cs | Where-Object IsReadOnly -EQ 0 } } } } <# .SYNOPSIS This is a private function for internal use only .DESCRIPTION This is a private function for internal use only .EXAMPLE .NOTES - This is a private function for internal use only #> function Set-HPPrivateBIOSSettingValuePayload { param( [Parameter(ParameterSetName = 'Payload',Position = 0,Mandatory = $true,ValueFromPipeline = $true)] [string]$Payload ) $portable = $Payload | ConvertFrom-Json if ($portable.purpose -ne "hp:sureadmin:biossetting") { throw "The payload should be generated by New-HPSureAdminBIOSSettingValuePayload function" } [SureAdminSetting]$setting = [System.Text.Encoding]::UTF8.GetString($portable.Data) | ConvertFrom-Json Set-HPPrivateBIOSSetting -Setting $setting } <# .SYNOPSIS Set the value of a BIOS setting .DESCRIPTION This function sets the value of an HP BIOS setting. Note that the setting may have various constraints restricting the input that can be provided. .PARAMETER Name The name of a setting. Note that the setting name is usually case sensitive. .PARAMETER Value The new value of a setting .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER Password The setup password, if a password is active .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .PARAMETER SkipPrecheck Skip reading the setting value from the BIOS, before applying it. This is useful as an optimization when the setting is guaranteed to exist on the system, or when preparing an HP Sure Admin platform for a remote platform which may contain settings not present on the local platform. .NOTES - Requires HP BIOS. - Use single quotes around the password to prevent PowerShell from interpreting special characters in the string. - By convention, when representing multiple values in an enumeration as a single string, the value with an asterisk in front is the currently active value. For example, given the string "One,*Two,Three" representing three possible enumeration choices, the current active value is "Two". .EXAMPLE Set-HPBIOSSettingValue -Name "Asset Tracking Number" -Value "Hello World" -password 's3cr3t' #> function Set-HPBIOSSettingValue { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Set-HPBIOSSettingValue")] param( [Parameter(ParameterSetName = "NewSession",Position = 0,Mandatory = $false)] [Parameter(ParameterSetName = "ReuseSession",Position = 0,Mandatory = $false)] [AllowEmptyString()] [string]$Password, [Parameter(ParameterSetName = "NewSession",Position = 1,Mandatory = $true)] [Parameter(ParameterSetName = "ReuseSession",Position = 1,Mandatory = $true)] [string]$Name, [Parameter(ParameterSetName = "NewSession",Position = 2,Mandatory = $true)] [Parameter(ParameterSetName = "ReuseSession",Position = 2,Mandatory = $true)] [AllowEmptyString()] [string]$Value, [Parameter(ParameterSetName = "NewSession",Position = 3,Mandatory = $false)] [Parameter(ParameterSetName = "ReuseSession",Position = 3,Mandatory = $false)] [switch]$SkipPrecheck, [Parameter(ParameterSetName = 'NewSession',Position = 4,Mandatory = $false)] [Alias('Target')] $ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 4,Mandatory = $true)] [CimSession]$CimSession ) [SureAdminSetting]$setting = New-Object -TypeName SureAdminSetting $setting.Name = $Name $setting.Value = $Value $params = @{ Setting = $setting Password = $Password CimSession = $CimSession ComputerName = $ComputerName SkipPrecheck = $SkipPrecheck } Set-HPPrivateBIOSSetting @params } <# .SYNOPSIS Check if the BIOS Setup password is set .DESCRIPTION This function returns $true if a BIOS password is currently active, or $false otherwise. .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .NOTES Requires HP BIOS. .EXAMPLE Get-HPBIOSSetupPasswordIsSet .LINK [Set-HPBIOSSetupPassword](Set-HPBIOSSetupPassword) .LINK [Get-HPBIOSSetupPasswordIsSet](Get-HPBIOSSetupPasswordIsSet) #> function Get-HPBIOSSetupPasswordIsSet () { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPBIOSSetupPasswordIsSet")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 1,Mandatory = $true)] [CimSession]$CimSession ) $params = @{ Name = "Setup Password" } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } $obj = Get-HPBIOSSetting @params return [boolean]$obj.IsSet } <# .SYNOPSIS Set the BIOS Setup password .DESCRIPTION Set the BIOS Setup password to the specific value. The password must comply with the current active security policy. .PARAMETER NewPassword The new password to set. A value is required. To clear the password, use Clear-HPBIOSSetupPassword .PARAMETER Password The existing setup password, if any. If there is no password set, this parameter may be omitted. Use Get-HPBIOSSetupPasswordIsSet to determine if a password is currently set. .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE Set-HPBIOSSetupPassword -NewPassword 'newpw' -Password 'oldpw' .LINK [Clear-HPBIOSSetupPassword](Clear-HPBIOSSetupPassword) .LINK [Get-HPBIOSSetupPasswordIsSet](Get-HPBIOSSetupPasswordIsSet) .NOTES - Requires HP BIOS. - Use single quotes around the password to prevent PowerShell from interpreting special characters in the string. - Multiple attempts to change the password with an incorrect existing password may trigger BIOS lockout mode, which can be cleared by rebooting the system. #> function Set-HPBIOSSetupPassword { [CmdletBinding(DefaultParameterSetName = 'NoPassthruNewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/set-HPBIOSSetupPassword")] param( [Parameter(ParameterSetName = 'NoPassthruNewSession',Position = 0,Mandatory = $true)] [Parameter(ParameterSetName = 'NoPassthruReuseSession',Position = 0,Mandatory = $true)] [string]$NewPassword, [Parameter(ParameterSetName = 'NoPassthruNewSession',Position = 1,Mandatory = $false)] [Parameter(ParameterSetName = 'NoPassthruReuseSession',Position = 1,Mandatory = $false)] [string]$Password, [Parameter(ParameterSetName = 'NoPassthruNewSession',Position = 2,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'NoPassthruReuseSession',Position = 3,Mandatory = $true)] [CimSession]$CimSession ) $params = @{} $settingName = 'Setup Password' if ($PSCmdlet.ParameterSetName -eq 'NoPassthruNewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'NoPassthruReuseSession') { $params.CimSession = $CimSession } $iface = getBiosSettingInterface @params $r = $iface | Invoke-CimMethod -ErrorAction Stop -MethodName 'SetBIOSSetting' -Arguments @{ Name = $settingName Password = '<utf-16/>' + $Password Value = '<utf-16/>' + $newPassword } if ($r.Return -ne 0) { $Err = "$(biosErrorCodesToString($r.Return))" throw [System.InvalidOperationException]$Err } } <# .SYNOPSIS Clear the BIOS Setup password .DESCRIPTION This function clears the BIOS setup password. To set the password, use Set-HPBIOSSetupPassword .PARAMETER Password The existing setup password. Use Get-HPBIOSSetupPasswordIsSet to determine if a password is currently set. .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE Clear-HPBIOSSetupPassword -Password 'oldpw' .NOTES - Requires HP BIOS. - Use single quotes around the password to prevent PowerShell from interpreting special characters in the string. - Multiple attempts to change the password with an incorrect existing password may trigger BIOS lockout mode, which can be cleared by rebooting the system. .LINK [Set-HPBIOSSetupPassword](Set-HPBIOSSetupPassword) .LINK [Get-HPBIOSSetupPasswordIsSet](Get-HPBIOSSetupPasswordIsSet) #> function Clear-HPBIOSSetupPassword { [CmdletBinding(DefaultParameterSetName = 'NoPassthruNewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Clear-HPBIOSSetupPassword")] param( [Parameter(ParameterSetName = 'NoPassthruNewSession',Position = 0,Mandatory = $true)] [Parameter(ParameterSetName = 'NoPassthruReuseSession',Position = 0,Mandatory = $true)] [string]$Password, [Parameter(ParameterSetName = 'NoPassthruNewSession',Position = 1,Mandatory = $false)] [Alias('Target')] $ComputerName = ".", [Parameter(ParameterSetName = 'NoPassthruReuseSession',Position = 2,Mandatory = $true)] [CimSession]$CimSession ) $settingName = 'Setup Password' $params = @{} if ($PSCmdlet.ParameterSetName -eq 'NoPassthruNewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'NoPassthruReuseSession') { $params.CimSession = $CimSession } $iface = getBiosSettingInterface @params $r = $iface | Invoke-CimMethod -MethodName SetBiosSetting -Arguments @{ Name = "Setup Password"; Value = "<utf-16/>"; Password = "<utf-16/>" + $Password; } if ($r.Return -ne 0) { $Err = "$(biosErrorCodesToString($r.Return))" throw [System.InvalidOperationException]$Err } } <# .SYNOPSIS Check if the BIOS Power-On password is set .DESCRIPTION This function returns $true if a BIOS power-on password is currently active, or $false otherwise. .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .NOTES Changes in the state of the BIOS Power-On Password may not be visible until the system is rebooted and the POST prompt is accepted to enable the BIOS Power-On password. .EXAMPLE Get-HPBIOSPowerOnPasswordIsSet .LINK [Set-HPBIOSPowerOnPassword](Set-HPBIOSPowerOnPassword) .LINK [Clear-HPBIOSPowerOnPassword](Clear-HPBIOSPowerOnPassword) #> function Get-HPBIOSPowerOnPasswordIsSet () { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPBIOSPowerOnPasswordIsSet")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 1,Mandatory = $true)] [CimSession]$CimSession ) $params = @{ Name = "Power-On Password" } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } $obj = Get-HPBIOSSetting @params return [boolean]$obj.IsSet } <# .SYNOPSIS Set the BIOS Power-On password .DESCRIPTION This function clears any active power-on password. The Password must comply with password complexity requirements active on the system. .PARAMETER NewPassword The password to set. A value is required. To clear the password, use Clear-HPBIOSPowerOnPassword .PARAMETER Password The existing setup password (not power-on password), if any. If there is no setup password set, this parameter may be omitted. Use Get-HPBIOSSetupPasswordIsSet to determine if a setup password is currently set. .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .NOTES Changes in the state of the BIOS Power-On Password may not be visible until the system is rebooted and the POST prompt is accepted to enable the BIOS Power-On password. .EXAMPLE Set-HPBIOSPowerOnPassword -NewPassword 'newpw' -Password 'setuppw' .LINK [Clear-HPBIOSPowerOnPassword](Clear-HPBIOSPowerOnPassword) .LINK [Get-HPBIOSPowerOnPasswordIsSet](Get-HPBIOSPower\OnPasswordIsSet) .NOTES - Requires HP BIOS. - Use single quotes around the password to prevent PowerShell from interpreting special characters in the string. - On many platform families, changing the Power-On password requires that a BIOS password is active. #> function Set-HPBIOSPowerOnPassword { [CmdletBinding(DefaultParameterSetName = 'NoPassthruNewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Set-HPBIOSPowerOnPassword")] param( [Parameter(ParameterSetName = 'NoPassthruNewSession',Position = 0,Mandatory = $true)] [Parameter(ParameterSetName = 'NoPassthruReuseSession',Position = 0,Mandatory = $true)] [string]$NewPassword, [Parameter(ParameterSetName = 'NoPassthruNewSession',Position = 1,Mandatory = $false)] [Parameter(ParameterSetName = 'NoPassthruReuseSession',Position = 1,Mandatory = $false)] [string]$Password, [Parameter(ParameterSetName = 'NoPassthruNewSession',Position = 3,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'NoPassthruReuseSession',Position = 4,Mandatory = $true)] [CimSession]$CimSession ) $settingName = 'Power-On Password' $params = @{} if ($PSCmdlet.ParameterSetName -eq 'NoPassthruNewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'NoPassthruReuseSession') { $params.CimSession = $CimSession } $iface = getBiosSettingInterface @params $r = $iface | Invoke-CimMethod -MethodName SetBiosSetting -Arguments @{ Name = $settingName; Value = "<utf-16/>" + $newPassword; Password = "<utf-16/>" + $Password; } if ($r.Return -ne 0) { $Err = "$(biosErrorCodesToString($r.Return))" throw $Err } } <# .SYNOPSIS Clear the BIOS Power-On password .DESCRIPTION This function clears any active power-on password. .PARAMETER Password The existing setup (not power-on) password. Use Get-HPBIOSSetupPasswordIsSet to determine if a password is currently set. See important note regarding the BIOS Setup Password prerequisite below. .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE Clear-HPBIOSPowerOnPassword -Password 's3cr3t' .LINK [Set-HPBIOSPowerOnPassword](Set-HPBIOSPowerOnPassword) .LINK [Get-HPBIOSPowerOnPasswordIsSet](Get-HPBIOSPowerOnPasswordIsSet) .LINK [Get-HPBIOSSetupPasswordIsSet](Get-HPBIOSSetupPasswordIsSet) .NOTES - Requires HP BIOS. - Use single quotes around the password to prevent PowerShell from interpreting special characters in the string. - On many platform families, changing the Power-On password requires that a BIOS password is active. - If BIOS Setup Password is not set, it's required to be first set in order to clear the Power-On password. #> function Clear-HPBIOSPowerOnPassword { [CmdletBinding(DefaultParameterSetName = 'NoPassthruNewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Clear-HPBIOSPowerOnPassword")] param( [Parameter(ParameterSetName = 'NoPassthruNewSession',Position = 0,Mandatory = $false)] [Parameter(ParameterSetName = 'NoPassthruReuseSession',Position = 0,Mandatory = $false)] [string]$Password, [Parameter(ParameterSetName = 'NoPassthruNewSession',Position = 1,Mandatory = $false)] [Alias('Target')] $ComputerName = ".", [Parameter(ParameterSetName = 'NoPassthruReuseSession',Position = 2,Mandatory = $true)] [CimSession]$CimSession ) $settingName = 'Power-On Password' $params = @{} if ($PSCmdlet.ParameterSetName -eq 'NoPassthruNewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'NoPassthruReuseSession') { $params.CimSession = $CimSession } $iface = getBiosSettingInterface @params $r = $iface | Invoke-CimMethod -MethodName SetBiosSetting -Arguments @{ Name = "Power-On Password" Value = "<utf-16/>" Password = ("<utf-16/>" + $Password) } if ($r.Return -ne 0) { $Err = "$(biosErrorCodesToString($r.Return))" throw [System.InvalidOperationException]$Err } } <# .SYNOPSIS Set one or more BIOS settings from a file .DESCRIPTION This function sets multiple BIOS settings from a file. The file format may be specified via the -format parameter, however the function will try to infer the format from the file extension. .PARAMETER File The settings file (relative or absolute path) to process - Note that BIOS passwords are not encrypted in this file, so it is essential to protect its content until applied to the target system. .PARAMETER Format The file format (XML, JSON, CSV, or BCU). .PARAMETER Password The current BIOS setup password, if any. .PARAMETER NoSummary Suppress the one line summary at the end of the import .PARAMETER ErrorHandling This value is used by wrapping scripts to prevent this function from raising exceptions or warnings. 0 - operate normally 1 - raise exceptions as warnings 2 - no warnings or exceptions, fail silently .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE Set-HPBIOSSettingValuesFromFile -File .\file.bcu -NoSummary .NOTES - Requires HP BIOS. - Use single quotes around the password to prevent PowerShell from interpreting special characters in the string. #> function Set-HPBIOSSettingValuesFromFile { [CmdletBinding(DefaultParameterSetName = "NotPassThruNewSession", HelpUri = "https://developers.hp.com/hp-client-management/doc/Set-HPBIOSSettingValuesFromFile")] param( [Parameter(ParameterSetName = "NotPassThruNewSession",Position = 0,Mandatory = $true)] [Parameter(ParameterSetName = "NotPassThruReuseSession",Position = 0,Mandatory = $true)] [System.IO.FileInfo]$File, [Parameter(ParameterSetName = "NotPassThruNewSession",Position = 1,Mandatory = $false)] [Parameter(ParameterSetName = "NotPassThruReuseSession",Position = 1,Mandatory = $false)] [ValidateSet('XML','JSON','BCU','CSV')] [string]$Format = $null, [Parameter(ParameterSetName = "NotPassThruNewSession",Position = 2,Mandatory = $false)] [Parameter(ParameterSetName = "NotPassThruReuseSession",Position = 2,Mandatory = $false)] [string]$Password, [Parameter(ParameterSetName = "NotPassThruNewSession",Position = 3,Mandatory = $false)] [Parameter(ParameterSetName = "NotPassThruReuseSession",Position = 3,Mandatory = $false)] [switch]$NoSummary, [Parameter(ParameterSetName = "NotPassThruNewSession",Position = 4,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = "NotPassThruNewSession",Position = 5,Mandatory = $false)] [Parameter(ParameterSetName = "NotPassThruReuseSession",Position = 5,Mandatory = $false)] $ErrorHandling = 2, [Parameter(ParameterSetName = "NotPassThruReuseSession",Position = 6,Mandatory = $true)] [CimSession]$CimSession ) if (-not $Format) { $Format = (Split-Path -Path $File -Leaf).Split(".")[1].ToLower() Write-Verbose "Format from file extension: $Format" } Write-Verbose "Format specified: '$Format'. Reading file..." [System.Collections.Generic.List[SureAdminSetting]]$settingsList = Get-HPPrivateSettingsFromFile -FileName $File -Format $Format $params = @{ SettingsList = $settingsList ErrorHandling = $ErrorHandling ComputerName = $ComputerName CimSession = $CimSession Password = $Password NoSummary = $NoSummary } Set-HPPrivateBIOSSettingsList @params -Verbose:$VerbosePreference } <# .SYNOPSIS Reset BIOS settings to shipping defaults .DESCRIPTION Reset BIOS to shipping defaults. The actual defaults are platform specific. .PARAMETER Password The current BIOS setup password, if any. .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE Set-HPBIOSSettingDefaults -Password 's3cr3t' .NOTES - Requires HP BIOS. - Use single quotes around the password to prevent PowerShell from interpreting special characters in the string. #> function Set-HPBIOSSettingDefaults { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Set-HPBIOSSettingDefaults")] param( [Parameter(ParameterSetName = "NewSession",Position = 0,Mandatory = $false)] [Parameter(ParameterSetName = "ReuseSession",Position = 0,Mandatory = $false)] [AllowEmptyString()] [string]$Password, [Parameter(ParameterSetName = 'NewSession',Position = 1,Mandatory = $false)] [Alias('Target')] $ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 2,Mandatory = $true)] [CimSession]$CimSession ) $authorization = "<utf-16/>" + $Password Set-HPPrivateBIOSSettingDefaultsAuthorization -ComputerName $ComputerName -CimSession $CimSession -Authorization $authorization -Verbose:$VerbosePreference } function Set-HPPrivateBIOSSettingDefaultsAuthorization { param( [string]$Authorization, [string]$ComputerName, [CimSession]$CimSession ) Write-Verbose "Calling SetSystemDefaults() on $ComputerName" $params = @{} if ($CimSession) { $params.CimSession = $CimSession } else { $params.CimSession = newCimSession -Target $ComputerName } $iface = getBiosSettingInterface @params $r = $iface | Invoke-CimMethod -MethodName SetSystemDefaults -Arguments @{ Password = $Authorization; } if ($r.Return -ne 0) { $Err = "$(biosErrorCodesToString($r.Return))" throw $Err } } <# .SYNOPSIS This is a private function for internal use only .DESCRIPTION This is a private function for internal use only .EXAMPLE .NOTES - This is a private function for internal use only #> function Set-HPPrivateBIOSSettingDefaultsPayload { param( [Parameter(ParameterSetName = 'Payload',Position = 0,Mandatory = $true,ValueFromPipeline = $true)] [string]$Payload ) $portable = $Payload | ConvertFrom-Json if ($portable.purpose -ne "hp:sureadmin:resetsettings") { throw "The payload should be generated by New-HPSureAdminSettingDefaultsPayload function" } [SureAdminSetting]$setting = [System.Text.Encoding]::UTF8.GetString($portable.Data) | ConvertFrom-Json Set-HPPrivateBIOSSettingDefaultsAuthorization -Authorization $setting.AuthString } <# .SYNOPSIS Get system uptime .DESCRIPTION Get the system boot time and uptime .PARAMETER ComputerName Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER CimSession A pre-established CIM Session (as created by [New-CIMSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsessionoption?view=powershell-5.1) cmdlet). Use this to pass a preconfigured session object to optimize remote connections or specify the connection protocol (Wsman or DCOM). If not specified, the function will create its own one-time use CIM Session object, and default to DCOM protocol. .EXAMPLE (Get-HPDeviceUptime).BootTime #> function Get-HPDeviceUptime { [CmdletBinding(DefaultParameterSetName = 'NewSession',HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPDeviceUptime")] param( [Parameter(ParameterSetName = 'NewSession',Position = 0,Mandatory = $false)] [Alias('Target')] [string]$ComputerName = ".", [Parameter(ParameterSetName = 'ReuseSession',Position = 1,Mandatory = $true)] [CimSession]$CimSession ) $params = @{ ClassName = 'Win32_OperatingSystem' Namespace = 'root\cimv2' } if ($PSCmdlet.ParameterSetName -eq 'NewSession') { $params.CimSession = newCimSession -Target $ComputerName } if ($PSCmdlet.ParameterSetName -eq 'ReuseSession') { $params.CimSession = $CimSession } $result = Get-CimInstance @params -ErrorAction stop $resultobject = @{} $resultobject.BootTime = $result.LastBootUpTime $span = (Get-Date) - ($resultobject.BootTime) $resultobject.Uptime = "$($span.days) days, $($span.hours) hours, $($span.minutes) minutes, $($span.seconds) seconds" $resultobject } <# .SYNOPSIS Get current boot mode and uptime .DESCRIPTION Returns an object containing system uptime, last boot time, whether secure boot is enabled, and whether the system was booted in UEFI or Legacy mode. .EXAMPLE $IsUefi = (Get-HPDeviceBootInformation).Mode -eq "UEFI" #> function Get-HPDeviceBootInformation { [CmdletBinding(HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPDeviceBootInformation")] param() $mode = @{} try { $sb = Confirm-SecureBootUEFI $mode.Mode = "UEFI" $mode.SecureBoot = $sb } catch { $mode.Mode = "Legacy" $mode.SecureBoot = $false } try { $uptime = Get-HPDeviceUptime $mode.Uptime = $uptime.Uptime $mode.BootTime = $uptime.BootTime } catch { $mode.Uptime = "N/A" $mode.BootTime = "N/A" } $mode } <# .SYNOPSIS Check and apply available BIOS updates (or downgrades) .DESCRIPTION This function uses an internet service to retrieve the list of BIOS updates available for a platform, and optionally checks it against the current system. The result is a series of records, with the following definition: * Ver - the BIOS update version * Date - the BIOS release date * Bin - the BIOS update binary file Online Mode uses Seamless Firmware Update Service that can update the BIOS in the background while the operating system is running (no authentication needed). 2022 and newer HP computers with Intel processors support Seamless Firmware Update Service. Offline Mode updates the BIOS after reboot and this mode requires authentication (password or payload). .PARAMETER Platform The Platform ID to check. It can be obtained via Get-HPDeviceProductID. The Platform ID cannot be specified for a flash operation. If not specified, current Platform ID is checked. .PARAMETER Target Execute the command on specified target computer. If not specified, the command is executed on the local computer. .PARAMETER Format The file format (XML, JSON, CSV, list) to output. If not specified, a list of PowerShell objects is returned. .PARAMETER Latest If specified, only return or download the latest available BIOS version between remote and local. If -Platform is specified, local BIOS will not be read and the latest BIOS version available remotely will be returned. .PARAMETER Check If specified, return true if the latest version corresponds to the installed version or installed version is higher, false otherwise. This check is only valid when comparing against current platform. .PARAMETER All Include all known BIOS update information. This may include additional data such as dependencies, rollback support, and criticality. .PARAMETER Download Download the BIOS file to the current directory or a path specified by SaveAs. .PARAMETER Flash Apply the BIOS update to the current system. .PARAMETER Password Specify the BIOS password, if a password is active. This switch is only used when -flash is specified. - Use single quotes around the password to prevent PowerShell from interpreting special characters in the string. .PARAMETER Version The BIOS version to download. If not specified, the latest version available will be downloaded. .PARAMETER SaveAs The filename for the downloaded BIOS file. If not specified, the remote file name will be used. .PARAMETER Quiet Do not display a progress bar during BIOS file download. .PARAMETER Overwrite Force overwriting any existing file with the same name during BIOS file download. This switch is only used when -download is specified. .PARAMETER Yes Answer 'yes' to the 'Are you sure you want to flash' prompt. To prevent flashing the BIOS accidentally it is recommended to not specify Yes by default. .PARAMETER Force Force the BIOS to update even if the target BIOS is already installed. .PARAMETER BitLocker Provide an answer to the BitLocker check prompt (if any). The value may be one of: stop - (default option) stop if BitLocker is detected but not suspended, and prompt ignore - skip the BitLocker check suspend - suspend BitLocker if active, and continue .PARAMETER Url Alternate Url source to provide platform's BIOS update catalog (xml) .PARAMETER Offline This parameter selects the offline mode to flash the BIOS instead of the default online mode. If specified the actual flash will only occur after reboot at pre-OS environment. This mode is selected by default when downgrading the BIOS version and requires authentication so either a Password or a PayloadFile should be specified. .PARAMETER NoWait If specified, the script does not wait for the online flash background task to finish. If the user reboots the PC during the online flash it will complete only after reboot. .NOTES - Flash is only supported on Windows 10 1709 (Fall Creators Updated) and later. - UEFI boot mode is required for flashing; legacy mode is not supported. - The flash operation requires 64-bit PowerShell (not supported under 32-bit PowerShell). **WinPE notes** - Use '-BitLocker ignore' when using this function in WinPE, as BitLocker checks are not applicable in Windows PE. - Requires that the WInPE image is built with the WinPE-SecureBootCmdlets.cab component. .EXAMPLE Get-HPBIOSUpdates #> function Get-HPBIOSUpdates { [CmdletBinding(DefaultParameterSetName = "ViewSet", HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPBIOSUpdates")] param( [Parameter(ParameterSetName = "DownloadSet",Position = 0,Mandatory = $false)] [Parameter(ParameterSetName = "ViewSet",Position = 0,Mandatory = $false)] [Parameter(Position = 0,Mandatory = $false)] [ValidatePattern("^[a-fA-F0-9]{4}$")] [string]$Platform, [ValidateSet('XML','JSON','CSV','List')] [Parameter(ParameterSetName = "ViewSet",Position = 1,Mandatory = $false)] [string]$Format, [Parameter(ParameterSetName = "ViewSet",Position = 2,Mandatory = $false)] [switch]$Latest, [Parameter(ParameterSetName = "CheckSet",Position = 3,Mandatory = $false)] [switch]$Check, [Parameter(ParameterSetName = "FlashSetPassword",Position = 4,Mandatory = $false)] [Parameter(ParameterSetName = "DownloadSet",Position = 4,Mandatory = $false)] [Parameter(ParameterSetName = "ViewSet",Position = 4,Mandatory = $false)] [string]$Target = ".", [Parameter(ParameterSetName = "ViewSet",Position = 5,Mandatory = $false)] [switch]$All, [Parameter(ParameterSetName = "DownloadSet",Position = 6,Mandatory = $true)] [switch]$Download, [Parameter(ParameterSetName = "FlashSetPassword",Position = 7,Mandatory = $true)] [switch]$Flash, [Parameter(ParameterSetName = 'FlashSetPassword',Position = 8,Mandatory = $false)] [string]$Password, [Parameter(ParameterSetName = "FlashSetPassword",Position = 9,Mandatory = $false)] [Parameter(ParameterSetName = "DownloadSet",Position = 9,Mandatory = $false)] [string]$Version, [Parameter(ParameterSetName = "FlashSetPassword",Position = 10,Mandatory = $false)] [Parameter(ParameterSetName = "DownloadSet",Position = 10,Mandatory = $false)] [string]$SaveAs, [Parameter(ParameterSetName = "FlashSetPassword",Position = 11,Mandatory = $false)] [Parameter(ParameterSetName = "DownloadSet",Position = 11,Mandatory = $false)] [switch]$Quiet, [Parameter(ParameterSetName = "FlashSetPassword",Position = 12,Mandatory = $false)] [Parameter(ParameterSetName = "DownloadSet",Position = 12,Mandatory = $false)] [switch]$Overwrite, [Parameter(ParameterSetName = 'FlashSetPassword',Position = 13,Mandatory = $false)] [switch]$Yes, [Parameter(ParameterSetName = 'FlashSetPassword',Position = 14,Mandatory = $false)] [ValidateSet('Stop','Ignore','Suspend')] [string]$BitLocker = 'Stop', [Parameter(ParameterSetName = 'FlashSetPassword',Position = 15,Mandatory = $false)] [switch]$Force, [Parameter(ParameterSetName = 'FlashSetPassword',Position = 16,Mandatory = $false)] [string]$Url = "https://ftp.hp.com/pub/pcbios", [Parameter(ParameterSetName = 'FlashSetPassword',Position = 17,Mandatory = $false)] [switch]$Offline, [Parameter(ParameterSetName = 'FlashSetPassword',Position = 18,Mandatory = $false)] [switch]$NoWait ) if ($PSCmdlet.ParameterSetName -eq "FlashSetPassword") { Test-HPFirmwareFlashSupported -CheckPlatform if ((Get-HPPrivateIsSureAdminEnabled) -eq $true) { throw "Sure Admin is enabled, you must use Update-HPFirmware with a payload instead of a password" } } if (-not $platform) { # if platform is not provided, $platform is current platform $platform = Get-HPDeviceProductID -Target $target } $platform = $platform.ToUpper() Write-Verbose "Using platform ID $platform" $uri = [string]"$Url/{0}/{0}.xml" -f $platform.ToUpper() Write-Verbose "Retrieving catalog file $uri" $ua = Get-HPPrivateUserAgent try { [System.Net.ServicePointManager]::SecurityProtocol = Get-HPPrivateAllowedHttpsProtocols $data = Invoke-WebRequest -Uri $uri -UserAgent $ua -UseBasicParsing -ErrorAction Stop } catch [System.Net.WebException]{ if ($_.Exception.Message.contains("(404) Not Found")) { throw [System.Management.Automation.ItemNotFoundException]"Unable to retrieve BIOS data for a platform with ID $platform (data file not found)." } throw $_.Exception } [xml]$doc = [System.IO.StreamReader]::new($data.RawContentStream).ReadToEnd() if ((-not $doc) -or (-not (Get-Member -InputObject $doc -Type Property -Name "BIOS")) -or (-not (Get-Member -InputObject $doc.bios -Type Property -Name "Rel"))) { throw [System.FormatException]"Source data file is unsupported or corrupt" } #reach to Rel nodes to find Bin entries in xml #ignore any entry not ending in *.bin e.g. *.tgz, *.cab $unwanted_nodes = $doc.SelectNodes("//BIOS/Rel") | Where-Object { -not ($_.Bin -like "*.bin") } $unwanted_nodes | Where-Object { $ignore = $_.ParentNode.RemoveChild($_) } #trim the 0 from the start of the version and then sort on the version value $refined_doc = $doc.SelectNodes("//BIOS/Rel") | Select-Object -Property @{ Name = 'Ver'; expr = { $_.Ver.TrimStart("0") } },'Date','Bin','RB','L','DP' ` | Sort-Object -Property Ver -Descending #latest version $latestVer = $refined_doc[0] if (($PSCmdlet.ParameterSetName -eq "ViewSet") -or ($PSCmdlet.ParameterSetName -eq "CheckSet")) { Write-Verbose "Proceeding with parameter set => view" if ($check.IsPresent -eq $true) { [string]$haveVer = Get-HPBIOSVersion -Target $target #check should return true if local BIOS is same or newer than the latest available remote BIOS. return ([string]$haveVer.TrimStart("0") -ge [string]$latestVer[0].Ver) } $args = @{} if ($all.IsPresent) { $args.Property = (@{ Name = 'Ver'; expr = { $_.Ver.TrimStart("0") } },"Date","Bin",` (@{ Name = 'RollbackAllowed'; expr = { [bool][int]$_.RB.trim() } }),` (@{ Name = 'Importance'; expr = { [Enum]::ToObject([BiosUpdateCriticality],[int]$_.L.trim()) } }),` (@{ Name = 'Dependency'; expr = { [string]$_.DP.trim() } })) } else { $args.Property = (@{ Name = 'Ver'; expr = { $_.Ver.TrimStart("0") } },"Date","Bin") } # for current platform: latest should return whichever is latest, between local and remote. # for any other platform specified: latest should return latest entry from SystemID.XML since we don't know local BIOSVersion if ($latest) { if ($PSBoundParameters.ContainsKey('Platform')) { # platform specified, do not read information from local system and return latest platform published $args.First = 1 } else { $retrieved = 0 # determine the local BIOS version [string]$haveVer = Get-HPBIOSVersion -Target $target # latest should return whichever is latest, between local and remote for current system. if ([string]$haveVer -ge [string]$latestVer[0].Ver) { # local is the latest. So, retrieve attributes other than BIOSVersion to print for latest for ($i = 0; $i -lt $refined_doc.Length; $i++) { if ($refined_doc[$i].Ver -eq $haveVer) { $haveVerFromDoc = $refined_doc[$i] $pso = [pscustomobject]@{ Ver = $haveVerFromDoc.Ver Date = $haveVerFromDoc.Date Bin = $haveVerFromDoc.Bin } if ($all) { $pso | Add-Member -MemberType ScriptProperty -Name RollbackAllowed -Value { [bool][int]$haveVerFromDoc.RB.trim() } $pso | Add-Member -MemberType ScriptProperty -Name Importance -Value { [Enum]::ToObject([BiosUpdateCriticality],[int]$haveVerFromDoc.L.trim()) } $pso | Add-Member -MemberType ScriptProperty -Name Dependency -Value { [string]$haveVerFromDoc.DP.trim } } $retrieved = 1 if ($pso) { formatBiosVersionsOutputList ($pso) return } } } if ($retrieved -eq 0) { Write-Verbose "Retrieving entry from XML failed, get the information from CIM class." # calculating date from Win32_BIOS $year = (Get-CimInstance Win32_BIOS).ReleaseDate.Year $month = (Get-CimInstance Win32_BIOS).ReleaseDate.Month $day = (Get-CimInstance Win32_BIOS).ReleaseDate.Day $date = $year.ToString() + '-' + $month.ToString() + '-' + $day.ToString() Write-Verbose "Date calculated from CIM Class is: $date" $currentVer = Get-HPBIOSVersion $pso = [pscustomobject]@{ Ver = $currentVer Date = $date Bin = $null } if ($all) { $pso | Add-Member -MemberType ScriptProperty -Name RollbackAllowed -Value { $null } $pso | Add-Member -MemberType ScriptProperty -Name Importance -Value { $null } $pso | Add-Member -MemberType ScriptProperty -Name Dependency -Value { $null } } if ($pso) { $retrieved = 1 formatBiosVersionsOutputList ($pso) return } } } else { # remote is the latest $args.First = 1 } } } formatBiosVersionsOutputList ($refined_doc | Sort-Object -Property ver -Descending | Select-Object @args) } else { $download_params = @{} if ($version) { $version = $version.TrimStart('0') $latestVer = $refined_doc ` | Where-Object { $_.Ver.TrimStart("0") -eq $version } ` | Select-Object -Property Ver,Bin -First 1 } if (-not $latestVer) { throw [System.ArgumentOutOfRangeException]"Version $version was not found." } if (($flash.IsPresent) -and (-not $saveAs)) { $saveAs = Get-HPPrivateTemporaryFileName -FileName $latestVer.Bin $download_params.NoClobber = "yes" Write-Verbose "Temporary file name for download is $saveAs" } else { $download_params.NoClobber = if ($overwrite.IsPresent) { "yes" } else { "no" } } Write-Verbose "Proceeding with parameter set => download, overwrite=$($download_params.NoClobber)" $remote_file = $latestVer.Bin $local_file = $latestVer.Bin $remote_ver = $latestVer.Ver if ($PSCmdlet.ParameterSetName -eq "FlashSetPassword" -or $PSCmdlet.ParameterSetName -eq "FlashSetSigningKeyFile" -or $PSCmdlet.ParameterSetName -eq "FlashSetSigningKeyCert") { $running = Get-HPBIOSVersion $offlineMode = $false if ($running.TrimStart("0").trim() -ge $remote_ver.TrimStart("0").trim()) { if ($Force.IsPresent) { $offlineMode = $true Write-Verbose "Offline mode selected to downgrade BIOS" } else { Write-Host "This system is already running BIOS version $($remote_ver.TrimStart(`"0`").Trim()) or newer." Write-Host -ForegroundColor Cyan "You can specify -Force on the command line to proceed anyway." return } } if (-not $offlineMode -and $Offline.IsPresent) { $offlineMode = $true Write-Verbose "Offline mode selected" } } if ($saveAs) { $local_file = $saveAs } [Environment]::CurrentDirectory = $pwd #if (-not [System.IO.Path]::IsPathRooted($to)) { $to = ".\$to" } $download_params.url = [string]"$Url/{0}/{1}" -f $platform,$remote_file $download_params.Target = [IO.Path]::GetFullPath($local_file) $download_params.progress = ($quiet.IsPresent -eq $false) Invoke-HPPrivateDownloadFile @download_params -panic if ($PSCmdlet.ParameterSetName -eq "FlashSetPassword" -or $PSCmdlet.ParameterSetName -eq "FlashSetSigningKeyFile" -or $PSCmdlet.ParameterSetName -eq "FlashSetSigningKeyCert") { if (-not $yes) { Write-Host -ForegroundColor Cyan "Are you sure you want to flash this system with version '$remote_ver'?" Write-Host -ForegroundColor Cyan "Current BIOS version is $(Get-HPBIOSVersion)." Write-Host -ForegroundColor Cyan "A reboot will be required for the operation to complete." $response = Read-Host -Prompt "Type 'Y' to continue and anything else to abort. Or specify -Yes on the command line to skip this prompt" if ($response -ne "Y") { Write-Verbose "User did not confirm and did not disable confirmation - aborting." return } } Write-Verbose "Passing to flash process with file $($download_params.target)" $update_params = @{ file = $download_params.Target bitlocker = $bitlocker Force = $Force Password = $password } Update-HPFirmware @update_params -Verbose:$VerbosePreference -Offline:$offlineMode -NoWait:$NoWait } } } function Get-HPPrivateBIOSFamilyNameAndVersion { [CmdletBinding()] param( ) $params = @{ ClassName = 'Win32_BIOS' Namespace = 'root\cimv2' } $params.CimSession = newCimSession -Target "." $obj = Get-CimInstance @params -ErrorAction stop $verfield = (getWmiField $obj "SMBIOSBIOSVersion").Split() return $verfield[0],$verfield[2] } <# .SYNOPSIS Check and apply available BIOS updates using Windows Update packages .DESCRIPTION This function uses an internet service to get the list of BIOS capsule updates available for a platform family, and optionally install the update in the current system. The versions available through this function may differ from Get-HPBIOSUpdate since this relies on the Microsoft capsules availability. This can be delayed due to the Windows Update in-flight processes. .PARAMETER Family The Platform Family to check. If not specified, check the current platform family. .PARAMETER Severity If specified, returns the available BIOS for the specified severity: Latest or LatestCritical. .PARAMETER Download Download the BIOS file to the current directory or a path specified by saveAs. .PARAMETER Flash Apply the BIOS update to the current system. .PARAMETER Version The BIOS version to download. If not specified, the latest version available will be downloaded. .PARAMETER SaveAs The filename for the downloaded BIOS file. If not specified, the remote file name will be used. In order to use the downloaded file with Add-HPBIOSWindowsUpdateScripts the name must follow the standard: platform family (3 digit) + underscore + BIOS version (6 digits) + .cab, for instance: R70_011200.cab .PARAMETER Yes Answer 'yes' to the 'Are you sure you want to flash' prompt. To prevent flashing the BIOS accidentally it is recommended to not specify Yes by default. .PARAMETER Force Force the BIOS to update, even if the target BIOS is already installed. .PARAMETER Url Alternate Url source to provide platform's BIOS update catalog (xml). .PARAMETER Quiet Do not display a progress bar during BIOS file download. .PARAMETER List Display a list with all BIOS versions available for the specified platform. .NOTES - Requires Windows group policy support .EXAMPLE Get-HPBIOSWindowsUpdate .EXAMPLE Get-HPBIOSWindowsUpdate -List -Family R70 .EXAMPLE Get-HPBIOSWindowsUpdate -Flash -Severity Latest .EXAMPLE Get-HPBIOSWindowsUpdate -Flash -Severity LatestCritical .EXAMPLE Get-HPBIOSWindowsUpdate -Flash -Severity LatestCritical -Family R70 .EXAMPLE Get-HPBIOSWindowsUpdate -Flash -Severity LatestCritical -Family R70 -Version "01.09.00" .EXAMPLE Get-HPBIOSWindowsUpdate -Flash -Severity LatestCritical -Family R70 -Version "01.09.00" -SaveAs "R70_010900.cab" #> function Get-HPBIOSWindowsUpdate { [CmdletBinding(DefaultParameterSetName = "Severity",HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPBIOSWindowsUpdate")] param( [Parameter(Mandatory = $false,Position = 0,ParameterSetName = "Severity")] [ValidateSet('Latest','LatestCritical')] [string]$Severity = 'Latest', [Parameter(Mandatory = $true,Position = 0,ParameterSetName = "Specific")] [string]$Version, [Parameter(Mandatory = $false,Position = 1,ParameterSetName = "Severity")] [Parameter(Mandatory = $false,Position = 1,ParameterSetName = "Specific")] [Parameter(Mandatory = $false,Position = 0,ParameterSetName = "List")] [string]$Family, [Parameter(Mandatory = $false,Position = 2,ParameterSetName = "Severity")] [Parameter(Mandatory = $false,Position = 2,ParameterSetName = "Specific")] [Parameter(Mandatory = $false,Position = 1,ParameterSetName = "List")] [string]$Url = "https://hpia.hpcloud.hp.com/downloads/capsule", [Parameter(Mandatory = $false,Position = 3,ParameterSetName = "Severity")] [Parameter(Mandatory = $false,Position = 3,ParameterSetName = "Specific")] [switch]$Quiet, [Parameter(Mandatory = $false,Position = 4,ParameterSetName = "Severity")] [Parameter(Mandatory = $false,Position = 4,ParameterSetName = "Specific")] [string]$SaveAs, [Parameter(Mandatory = $false,Position = 5,ParameterSetName = "Severity")] [Parameter(Mandatory = $false,Position = 5,ParameterSetName = "Specific")] [switch]$Download, [Parameter(Mandatory = $false,Position = 6,ParameterSetName = "Severity")] [Parameter(Mandatory = $false,Position = 6,ParameterSetName = "Specific")] [switch]$Flash, [Parameter(Mandatory = $false,Position = 7,ParameterSetName = "Severity")] [Parameter(Mandatory = $false,Position = 7,ParameterSetName = "Specific")] [switch]$Yes, [Parameter(Mandatory = $false,Position = 8,ParameterSetName = "Severity")] [Parameter(Mandatory = $false,Position = 8,ParameterSetName = "Specific")] [switch]$Force, [Parameter(Mandatory = $true,Position = 2,ParameterSetName = "List")] [switch]$List ) if ($Family -and -not $Version) { $_,$biosVersion = Get-HPPrivateBIOSFamilyNameAndVersion $biosFamily = $Family } elseif (-not $Family -and $Version) { $biosFamily,$_ = Get-HPPrivateBIOSFamilyNameAndVersion $biosVersion = $Version } elseif (-not $Version -and -not $Family) { $biosFamily,$biosVersion = Get-HPPrivateBIOSFamilyNameAndVersion } else { $biosFamily = $Family $biosVersion = $Version } [string]$uri = [string]"$Url/{0}/{0}.json" -f $biosFamily.ToUpper() Write-Verbose "Retrieving $biosFamily catalog $uri" Write-Verbose "BIOS Version: $biosVersion" $ua = Get-HPPrivateUserAgent [System.Net.ServicePointManager]::SecurityProtocol = Get-HPPrivateAllowedHttpsProtocols try { $data = Invoke-WebRequest -Uri $uri -UserAgent $ua -UseBasicParsing -ErrorAction Stop } catch { Write-Verbose $_.Exception Write-Host "Platform $biosFamily is not supported yet" throw [System.Management.Automation.ItemNotFoundException]"Unable to retrieve the BIOS update catalog for platform family $biosFamily." } $doc = [System.IO.StreamReader]::new($data.RawContentStream).ReadToEnd() | ConvertFrom-Json if ($List.IsPresent) { $data = $doc | Sort-Object -Property biosVersion -Descending return $data | Format-Table -Property biosFamily,biosVersion,severity,isLatest,IsLatestCritical } if ($PSCmdlet.ParameterSetName -eq "Specific") { $filter = $doc | Where-Object { $_.BiosVersion -eq $biosVersion } # specific Write-Verbose "Locating a specific version" if ($null -eq $filter) { throw "The version specified is not available on the $biosFamily catalog" } } elseif ($Severity -eq "LatestCritical") { $filter = $doc | Where-Object { $_.isLatestCritical -eq $true } # latest critical Write-Verbose "Locating the latest critical version available" } else { $filter = $doc | Where-Object { $_.isLatest -eq $true } # latest Write-Verbose "Locating the latest version available" } $sort = $filter | Sort-Object -Property biosVersion -Descending @{ Family = $sort[0].biosFamily Version = $sort[0].BiosVersion } if ($Flash.IsPresent) { $running = Get-HPBIOSVersion if (-not $Yes.IsPresent) { Write-Host -ForegroundColor Cyan "Are you sure you want to flash this system with version '$($sort[0].biosVersion)'?" Write-Host -ForegroundColor Cyan "Current BIOS version is $running." Write-Host -ForegroundColor Cyan "A reboot will be required for the operation to complete." $response = Read-Host -Prompt "Type 'Y' to continue and anything else to abort. Or specify -Yes on the command line to skip this prompt" if ($response -ne "Y") { Write-Verbose "User did not confirm and did not disable confirmation - aborting." return } } if ((-not $Force.IsPresent) -and $running.TrimStart("0").trim() -ge $sort[0].BiosVersion.TrimStart("0").trim()) { Write-Host "This system is already running BIOS version $($sort[0].biosVersion) or newer." Write-Host -ForegroundColor Cyan "You can specify -Force on the command line to proceed anyway." return } } if ($Download.IsPresent -or $Flash.IsPresent) { Write-Verbose "Download from $($sort[0].url)" if ($SaveAs) { $localFile = $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($SaveAs) } else { $extension = ($sort[0].url -split '\.')[-1] $SaveAs = Get-HPPrivateTemporaryFileName -FileName "$($sort[0].biosFamily)_$($sort[0].biosVersion -Replace '\.').$extension" $localFile = [IO.Path]::GetFullPath($SaveAs) } Write-Verbose "LocalFile: $localFile" $download_params = @{ NoClobber = "yes" url = $sort[0].url Target = $localFile progress = ($Quiet.IsPresent -eq $false) } try { Invoke-HPPrivateDownloadFile @download_params } catch { Write-Verbose $_.Exception throw [System.Management.Automation.ItemNotFoundException]"Unable to download the BIOS update archive from $($download_params.url)." } Write-Host "Saved as $localFile" $hash = (Get-FileHash $localFile -Algorithm SHA1).Hash $bytes = [byte[]] -split ($hash -replace '..','0x$& ') $base64 = [System.Convert]::ToBase64String($bytes) if ($base64 -eq $sort[0].digest) { Write-Verbose "Integrity check passed" } else { throw "Cab file integrity check failed" } } if ($Flash.IsPresent) { Add-HPBIOSWindowsUpdateScripts -WindowsUpdateFile $localFile } } function Get-HPPrivatePSScriptsEntries { [CmdletBinding()] param( [Parameter(Mandatory = $false,Position = 0)] [string]$Path = "${env:SystemRoot}\System32\GroupPolicy\Machine\Scripts\psscripts.ini" ) $types = '[Logon]','[Logoff]','[Startup]','[Shutdown]' $cmdLinesSet = @{} $parametersSet = @{} if ([System.IO.File]::Exists($Path)) { $contents = Get-Content $Path if ($contents) { for ($i = 0; $i -lt $contents.Length; $i++) { if ($types.contains($contents[$i])) { $t = $contents[$i] $cmdLinesSet[$t] = [System.Collections.ArrayList]@() $parametersSet[$t] = [System.Collections.ArrayList]@() continue } if ($contents[$i].Length -gt 0) { $cmdLinesSet[$t].Add($contents[$i].substring(1)) | Out-Null $parametersSet[$t].Add($contents[$i + 1].substring(1)) | Out-Null $i++ } } } } $cmdLinesSet,$parametersSet } function Set-HPPrivatePSScriptsEntries { [CmdletBinding()] param( [Parameter(Mandatory = $true,Position = 0)] $CmdLines, [Parameter(Mandatory = $true,Position = 1)] $Parameters, [Parameter(Mandatory = $false,Position = 2)] [string]$Path = "${env:SystemRoot}\System32\GroupPolicy\Machine\Scripts\psscripts.ini" ) $types = '[Logon]','[Logoff]','[Startup]','[Shutdown]' $contents = "" foreach ($type in $types) { if ($CmdLines.contains($type)) { for ($i = 0; $i -lt $CmdLines[$type].Count; $i++) { if ($i -eq 0) { $contents += "$type`n" } $contents += "$($i)$($CmdLines[$type][$i])`n" $contents += "$($i)$($Parameters[$type][$i])`n" } $contents += "`n" } } if (-not [System.IO.File]::Exists($Path)) { New-Item -Force -Path $Path -Type File } $contents | Set-Content -Path $Path -Force } <# .SYNOPSIS Add a PowerShell script to the group policy .DESCRIPTION This function adds a PowerShell script to the group policy that runs at Startup or Shutdown. This function is invoked by Add-HPBIOSWindowsUpdateScripts. .PARAMETER Type Type of the script, if it runs at Startup or Shutdown. .PARAMETER CmdLine The command line, it is also possible to specify as CmdLine a path to a PowerShell script. .PARAMETER Parameters The parameters to be passed to the script at the execution time. .PARAMETER Path If needed, a custom path can be specified. .EXAMPLE Add-PSScriptsEntry -Type 'Shutdown' -CmdLine 'myscript.ps1' .EXAMPLE Add-PSScriptsEntry -Type 'Startup' -CmdLine 'myscript.ps1' .EXAMPLE Add-PSScriptsEntry -Type 'Startup' -CmdLine 'myscript.ps1' -Parameters 'myparam' #> function Add-PSScriptsEntry { [CmdletBinding(HelpUri = "https://developers.hp.com/hp-client-management/doc/Add-PSScriptsEntry")] param( [ValidateSet('Startup','Shutdown')] [Parameter(Mandatory = $true,Position = 0)] [string]$Type, [Parameter(Mandatory = $true,Position = 1)] [string]$CmdLine, [Parameter(Mandatory = $false,Position = 2)] [string]$Parameters, [Parameter(Mandatory = $false,Position = 3)] [string]$Path = "${env:SystemRoot}\System32\GroupPolicy\Machine\Scripts\psscripts.ini" ) $cmdLinesSet,$parametersSet = Get-HPPrivatePSScriptsEntries -Path $Path if (-not $cmdLinesSet.ContainsKey("[$Type]")) { $cmdLinesSet["[$Type]"] = [System.Collections.ArrayList]@() } if (-not $parametersSet.ContainsKey("[$Type]")) { $parametersSet["[$Type]"] = [System.Collections.ArrayList]@() } if (-not $cmdLinesSet["[$Type]"].contains("CmdLine=$CmdLine")) { $cmdLinesSet["[$Type]"].Add("CmdLine=$CmdLine") | Out-Null $parametersSet["[$Type]"].Add("Parameters=$Parameters") | Out-Null } Set-HPPrivatePSScriptsEntries -CmdLines $cmdLinesSet -Parameters $parametersSet -Path $Path } <# .SYNOPSIS Get HP-CMSL environment configuration .DESCRIPTION This function returns environment information to help debugging issues .EXAMPLE Get-HPCMSLEnvironment > MyEnvironment.txt #> function Get-HPCMSLEnvironment { [CmdletBinding(HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPCMSLEnvironment")] param() Get-ComputerInfo $psVersionTable try { $psISE } catch { 'Not running on Windows PowerShell ISE' } $modules = @( 'HP.Consent', 'HP.Private', 'HP.Utility', 'HP.ClientManagement', 'HP.Firmware', 'HP.Notifications', 'HP.Sinks', 'HP.Retail', 'HP.Softpaq', 'HP.Repo', 'HP.SmartExperiences' ) $modulesFullVersion = @{} foreach ($module in $modules) { $m = Get-Module -Name $module if ($null -eq $m) { $m = Get-Module -Name $module -ListAvailable } $path = "$($m.ModuleBase)\$module.psd1" $line = Select-String -Path $path -Pattern "FullModuleVersion = '(.+)'" if ($null -eq $line -or $line.PSobject.Properties.name -notcontains 'Matches') { $modulesFullVersion[$module] = $null continue } $lineMatch = $line.Matches.Value $lineMatch -match "'(.+)'" | Out-Null $fullModuleVersion = $Matches[1] $modulesFullVersion[$module] = $fullModuleVersion } $modulesFullVersion @{ SystemID = Get-HPDeviceProductID Os = Get-HPPrivateCurrentOs OsVer = Get-HPPrivateCurrentDisplayOSVer Bitness = Get-HPPrivateCurrentOsBitness } } <# .SYNOPSIS Remove a PowerShell script from the group policy .DESCRIPTION This function removes a PowerShell script from the group policy that runs at Startup or Shutdown. Returns true if some entry was removed. This function is invoked by Add-HPBIOSWindowsUpdateScripts. .PARAMETER Type Type of the script, if it runs at Startup or Shutdown. .PARAMETER CmdLine The command line, it is also possible to specify as CmdLine a path to a PowerShell script. .PARAMETER Parameters The parameters to be passed to the script at the execution time. .PARAMETER Path If needed, a custom path can be specified. .EXAMPLE Remove-PSScriptsEntry -Type 'Shutdown' -CmdLine 'myscript.ps1' .EXAMPLE Remove-PSScriptsEntry -Type 'Startup' -CmdLine 'myscript.ps1' .EXAMPLE Remove-PSScriptsEntry -Type 'Startup' -CmdLine 'myscript.ps1' -Parameters 'myparam' #> function Remove-PSScriptsEntry { [CmdletBinding(HelpUri = "https://developers.hp.com/hp-client-management/doc/Remove-PSScriptsEntry")] param( [ValidateSet('Startup','Shutdown')] [Parameter(Mandatory = $true,Position = 0)] [string]$Type, [Parameter(Mandatory = $true,Position = 1)] [string]$CmdLine, [Parameter(Mandatory = $false,Position = 2)] [string]$Parameters, [Parameter(Mandatory = $false,Position = 3)] [string]$Path = "${env:SystemRoot}\System32\GroupPolicy\Machine\Scripts\psscripts.ini" ) $cmdLinesSet,$parametersSet = Get-HPPrivatePSScriptsEntries -Path $Path if (-not $cmdLinesSet.ContainsKey("[$Type]") -and -not $parametersSet.ContainsKey("[$Type]")) { # File doesn't contain the type specified. There is nothing to be removed return } $removed = $false # If a parameter is specified we remove only the scripts with the specified parameter from the file while ($cmdLinesSet["[$Type]"].contains("CmdLine=$CmdLine") -and (-not $Parameters -or $parametersSet["[$Type]"].item($cmdLinesSet["[$Type]"].IndexOf("CmdLine=$CmdLine")) -eq "Parameters=$Parameters") ) { $index = $cmdLinesSet["[$Type]"].IndexOf("CmdLine=$CmdLine") $cmdLinesSet["[$Type]"].RemoveAt($index) | Out-Null $parametersSet["[$Type]"].RemoveAt($index) | Out-Null $removed = $true } Set-HPPrivatePSScriptsEntries -CmdLines $cmdLinesSet -Parameters $parametersSet -Path $Path return $removed } <# .SYNOPSIS Apply BIOS updates using a Windows Update package .DESCRIPTION This function extracts the Windows Update file and prepares the system to receive a BIOS update. This function is invoked by Get-HPBIOSWindowsUpdate. .PARAMETER WindowsUpdateFile Absolute path to the compressed CAB file downloaded with Get-HPBIOSWindowsUpdate. The file name must follow the standard: platform family (3 digit) + underscore + BIOS version (6 digits) + .cab, for instance: R70_011200.cab .NOTES Requires Windows group policy support .EXAMPLE Add-HPBIOSWindowsUpdateScripts -WindowsUpdateFile C:\R70_011200.cab #> function Add-HPBIOSWindowsUpdateScripts { [CmdletBinding(DefaultParameterSetName = "Default",HelpUri = "https://developers.hp.com/hp-client-management/doc/Add-HPBIOSWindowsUpdateScripts")] param( [Parameter(Mandatory = $true,Position = 0,ParameterSetName = "Default")] [string]$WindowsUpdateFile ) $gpt = "${env:SystemRoot}\System32\GroupPolicy\gpt.ini" $scripts = "${env:SystemRoot}\System32\GroupPolicy\Machine" New-Item -ItemType Directory -Force -Path "$scripts\Scripts" | Out-Null New-Item -ItemType Directory -Force -Path "$scripts\Scripts\Startup" | Out-Null New-Item -ItemType Directory -Force -Path "$scripts\Scripts\Shutdown" | Out-Null $fileName = ($WindowsUpdateFile -split '\\')[-1] $directory = $WindowsUpdateFile -replace $fileName,'' $fileName = $fileName.substring(0,$fileName.Length - 4) $expectedDir = "$directory$fileName.cab.dir" Invoke-HPPrivateExpandCAB -cab $WindowsUpdateFile -expectedFile $WindowsUpdateFile $inf = Get-ChildItem -Path $expectedDir -File -Filter "$fileName*.inf" -Name if (-not $inf) { Remove-Item $expectedDir -Force -Recurse throw "Invalid cab file, did not find .inf in contents" } $infFileName = $inf.substring(0,$inf.Length - 4) Remove-Item $WindowsUpdateFile -Force Remove-Item -Recurse -Force "$scripts\Scripts\Shutdown\wu_image" -ErrorAction Ignore Move-Item $expectedDir "$scripts\Scripts\Shutdown\wu_image" -Force $log = ".\wu_bios_update.log" # CMSL modules should be included at startup to use Remove-PSScriptsEntry function $clientManagementModulePath = (Get-Module -Name HP.ClientManagement).Path $privateModulePath = (Get-Module -Name HP.Private).Path # Move DeviceInstall service to be notified after the Group Policy shutdown script $preshutdownOrder = (Get-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control" -Name "PreshutdownOrder").PreshutdownOrder | Where-Object { $_ -ne "DeviceInstall" } $preshutdownOrder += "DeviceInstall" Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control" -Name "PreshutdownOrder" -Value $preshutdownOrder -Force -ErrorAction SilentlyContinue | Out-Null # Startup script '$driver = Get-WmiObject Win32_PnPSignedDriver | ? DeviceClass -eq "Firmware" | Where Manufacturer -eq "HP Inc." $infName = $driver.InfName if ($infName) { Write-Host "INF name: $infName" *>> ' + $log + ' ' + ${env:SystemRoot} + '\System32\pnputil.exe /delete-driver $infName /uninstall /force *>> ' + $log + ' } else { Write-Host "No device to clean up" *>> ' + $log + ' } Write-Host "Clean EFI partition" *>> ' + $log + ' $volumes = Get-Partition | Select-Object ` @{ Name = "Path"; Expression = { (Get-Volume -Partition $_).Path } },` @{ Name = "Mount"; Expression = {(Get-Volume -Partition $_).DriveType } },` @{ Name = "Type"; Expression = { $_.Type } },` @{ Name = "Disk"; Expression = { $_.DiskNumber } } $volumes = $volumes | Where-Object Mount -EQ "Fixed" [array]$efi = $volumes | Where-Object { $_.type -eq "System" } [array]$efi = $efi | Where-Object { (Get-Disk -Number $_.Disk).OperationalStatus -eq "Online" } [array]$efi = $efi | Where-Object { (Get-Disk -Number $_.Disk).IsBoot -eq $true } Remove-Item "$($efi[0].Path)EFI\HP\DEVFW\*" -Recurse -Force -ErrorAction Ignore *>> ' + $log + ' Remove-Item -Force ' + ${env:SystemRoot} + '\System32\GroupPolicy\Machine\Scripts\Startup\wu_startup.ps1 *>> ' + $log + ' Remove-Item -Force ' + ${env:SystemRoot} + '\System32\GroupPolicy\Machine\Scripts\Shutdown\wu_shutdown.ps1 *>> ' + $log + ' Remove-Item -Recurse -Force ' + ${env:SystemRoot} + '\System32\GroupPolicy\Machine\Scripts\Shutdown\wu_image *>> ' + $log + ' if (Get-Module -Name HP.Private) {remove-module -force HP.Private } if (Get-Module -Name HP.ClientManagement) {remove-module -force HP.ClientManagement } Import-Module -Force ' + $privateModulePath + ' *>> ' + $log + ' Import-Module -Force ' + $clientManagementModulePath + ' -Function Remove-PSScriptsEntry *>> ' + $log + ' Remove-PSScriptsEntry -Type "Startup" -CmdLine wu_startup.ps1 *>> ' + $log + ' Remove-PSScriptsEntry -Type "Shutdown" -CmdLine wu_shutdown.ps1 *>> ' + $log + ' gpupdate /wait:0 /force /target:computer *>> ' + $log + ' ' | Out-File "$scripts\Scripts\Startup\wu_startup.ps1" # Shutdown script 'param($wu_inf_name) net start DeviceInstall *>> ' + $log + ' $driver = Get-WmiObject Win32_PnPSignedDriver | ? DeviceClass -eq "Firmware" | Where Manufacturer -eq "HP Inc." $infName = $driver.InfName if ($infName) { Write-Host "INF name: $infName" *>> ' + $log + ' ' + ${env:SystemRoot} + '\System32\pnputil.exe /delete-driver $infName /uninstall /force *>> ' + $log + ' } else { Write-Host "No device to clean up" *>> ' + $log + ' } Write-Host "Clean EFI partition" *>> ' + $log + ' $volumes = Get-Partition | Select-Object ` @{ Name = "Path"; Expression = { (Get-Volume -Partition $_).Path } },` @{ Name = "Mount"; Expression = {(Get-Volume -Partition $_).DriveType } },` @{ Name = "Type"; Expression = { $_.Type } },` @{ Name = "Disk"; Expression = { $_.DiskNumber } } $volumes = $volumes | Where-Object Mount -EQ "Fixed" [array]$efi = $volumes | Where-Object { $_.type -eq "System" } [array]$efi = $efi | Where-Object { (Get-Disk -Number $_.Disk).OperationalStatus -eq "Online" } [array]$efi = $efi | Where-Object { (Get-Disk -Number $_.Disk).IsBoot -eq $true } Remove-Item "$($efi[0].Path)EFI\HP\DEVFW\*" -Recurse -Force -ErrorAction Ignore *>> ' + $log + ' $volume = Get-BitLockerVolume | Where-Object VolumeType -EQ "OperatingSystem" if ($volume.ProtectionStatus -ne "Off") { Suspend-BitLocker -MountPoint $volume.MountPoint -RebootCount 1 *>> ' + $log + ' } Write-Host "Invoke PnPUtil to update the BIOS" *>> ' + $log + ' ' + ${env:SystemRoot} + '\System32\pnputil.exe /add-driver ' + ${env:SystemRoot} + '\System32\GroupPolicy\Machine\Scripts\Shutdown\wu_image\$wu_inf_name.inf /install *>> ' + $log + ' Write-Host "WU driver installed" *>> ' + $log + ' $volume = Get-BitLockerVolume | Where-Object VolumeType -EQ "OperatingSystem" if ($volume.ProtectionStatus -ne "Off") { Suspend-BitLocker -MountPoint $volume.MountPoint -RebootCount 1 *>> ' + $log + ' } ' | Out-File "$scripts\Scripts\Shutdown\wu_shutdown.ps1" "[General]`ngPCMachineExtensionNames=[{42B5FAAE-6536-11D2-AE5A-0000F87571E3}{40B6664F-4972-11D1-A7CA-0000F87571E3}]`nVersion=65537" | Set-Content -Path $gpt -Force Remove-PSScriptsEntry -Type "Startup" -CmdLine "wu_startup.ps1" | Out-Null Remove-PSScriptsEntry -Type "Shutdown" -CmdLine "wu_shutdown.ps1" | Out-Null Add-PSScriptsEntry -Type "Startup" -CmdLine "wu_startup.ps1" Add-PSScriptsEntry -Type "Shutdown" -CmdLine "wu_shutdown.ps1" -Parameters "$infFileName" gpupdate /wait:0 /force /target:computer Write-Host -ForegroundColor Cyan "Firmware image has been deployed. The process will continue after reboot." } <# .SYNOPSIS Get platform name, system ID, or operating system support using either the platform name or its system ID. .DESCRIPTION This function retrieves information about the platform, given a platform name or system id. It can be used to convert between platform name and system IDs. Note that a platform may have multiple system IDs, or a system ID may map to multiple platforms. Currently returns the following information: - SystemID - the system iD for this platform - FamilyID - the platform family ID - Name - the name of the platform - DriverPackSupport - this platform supports driver packs Get-HPDeviceDetails functionality is not supported in WinPE. .PARAMETER Platform Query by platform id (a 4-digit hexadecimal number). .PARAMETER Name Query by platform name. The name must match exactly, unless the -match parameter is also specified. .PARAMETER Like Relax the match to a substring match. if the platform contains the substring defined by the -Name parameter, it will be included in the return. This parameter can also be specified as Match, for backwards compatibility. This parameter is now obsolete and may be removed at a future time. You can simply pass wildcards in the name field instead of using the like parameter. The following two examples are identical: Get-HPDeviceDetails -name '\*EliteBook\*' is the same as: Get-HPDeviceDetails -like -name 'EliteBook' .PARAMETER OSList Return the list of supported operating systems for the specified platform. .EXAMPLE Get-HPDeviceDetails -Platform 8100 .EXAMPLE Get-HPDeviceDetails -Name 'HP ProOne 400 G3 20-inch Touch All-in-One PC' .EXAMPLE Get-HPDeviceDetails -Like -Name '840 G5' #> function Get-HPDeviceDetails { [CmdletBinding( DefaultParameterSetName = "FromID", HelpUri = "https://developers.hp.com/hp-client-management/doc/Get-HPDeviceDetails") ] param( [ValidatePattern("^[a-fA-F0-9]{4}$")] [Parameter(Mandatory = $false,Position = 0,ParameterSetName = "FromID")] [string]$Platform, [Parameter(Mandatory = $true,Position = 1,ParameterSetName = "FromName")] [string]$Name, [Parameter(Mandatory = $false,Position = 1,ParameterSetName = "FromName")] [Alias('Match')] [switch]$Like, [switch][Parameter(Mandatory = $false,Position = 2)] [Parameter(ParameterSetName = "FromName")] [Parameter(ParameterSetName = "FromID")] $OSList ) if (Test-WinPE -Verbose:$VerbosePreference) { throw "Getting HP Device details is not supported in WinPE" } $url = "https://hpia.hpcloud.hp.com/ref/platformList.cab" $filename = "platformList.cab" $try_on_ftp = $false try { $file = Get-HPPrivateOfflineCacheFiles -url $url -FileName $filename -Expand -Verbose:$VerbosePreference } catch { # platformList is not reachable on AWS, try to get it from FTP $try_on_ftp = $true } if ($try_on_ftp) { try { $url = "https://ftp.hp.com/pub/caps-softpaq/cmit/imagepal/ref/platformList.cab" $file = Get-HPPrivateOfflineCacheFiles -url $url -FileName $filename -Expand -Verbose:$VerbosePreference } catch { Write-Host -ForegroundColor Magenta "platformList is not available on AWS or FTP." throw [System.Net.WebException]"Could not find platformList." } } if (-not $platform -and -not $Name) { try { $platform = Get-HPDeviceProductID -Verbose:$VerbosePreference } catch { Write-Verbose "No platform found." } } if ($platform) { $platform = $platform.ToLower() } if ($PSCmdlet.ParameterSetName -eq "FromID") { $data = Select-Xml -Path "$file" -XPath "/ImagePal/Platform/SystemID[normalize-space(.)=`"$platform`"]/parent::*" } else { $data = Select-Xml -Path "$file" -XPath "/ImagePal/Platform/ProductName[translate(substring(`"$($name.ToLower())`",0), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz')]/parent::*" } if (-not $data) { return } $searchName = $Name if ($Like.IsPresent) { if (-not ($searchName).StartsWith('*')) { $searchName = ("*$searchName") } if (-not ($searchName).EndsWith('*')) { $searchName = ("$searchName*") } } $data.Node | ForEach-Object { $__ = $_ $pn = $_.ProductName. "#text" if ($oslist.IsPresent) { [array]$r = ($__.OS | ForEach-Object { if (($PSCmdlet.ParameterSetName -eq "FromID") -or ($pn -like $searchName)) { $rid = $Null if ("OSReleaseId" -in $_.PSObject.Properties.Name) { $rid = $_.OSReleaseId } [string]$osv = $_.OSVersion if ("OSReleaseIdDisplay" -in $_.PSObject.Properties.Name -and $_.OSReleaseIdDisplay -ne '20H2') { $rid = $_.OSReleaseIdDisplay } $obj = New-Object -TypeName PSCustomObject -Property @{ SystemID = $__.SystemID.ToUpper() OperatingSystem = $_.OSDescription OperatingSystemVersion = $osv Architecture = $_.OSArchitecture } if ($rid) { $obj | Add-Member -NotePropertyName OperatingSystemRelease -NotePropertyValue $rid } if ("OSBuildId" -in $_.PSObject.Properties.Name) { $obj | Add-Member -NotePropertyName BuildNumber -NotePropertyValue $_.OSBuildId } $obj } }) } else { [array]$r = ($__.ProductName | ForEach-Object { if (($PSCmdlet.ParameterSetName -eq "FromID") -or ($_. "#text" -like $searchName)) { New-Object -TypeName PSCustomObject -Property @{ SystemID = $__.SystemID.ToUpper() Name = $_. "#text" DriverPackSupport = $result = [System.Convert]::ToBoolean($_.DPBCompliant) } } }) } return $r } } function getFormattedBiosSettingValue { [CmdletBinding()] param($obj) switch ($obj.CimClass.CimClassName) { { $_ -eq 'HPBIOS_BIOSString' } { $result = $obj.Value } { $_ -eq 'HPBIOS_BIOSInteger' } { $result = $obj.Value } { $_ -eq 'HPBIOS_BIOSEnumeration' } { $result = $obj.CurrentValue } { $_ -eq 'HPBIOS_BIOSPassword' } { throw [System.InvalidOperationException]"Password values cannot be retrieved, it will always result in an empty string" } { $_ -eq 'HPBIOS_BIOSOrderedList' } { $result = $obj.Value } } return $result } function getWmiField ($obj,$fn) { $obj.$fn } # format a setting using BCU (custom) format function convertSettingToBCU ($setting) { #if ($setting.DisplayInUI -eq 0) { return } switch ($setting.CimClass.CimClassName) { { $_ -eq 'HPBIOS_BIOSString' } { Write-Output $setting.Name if ($setting.Value.contains("`n")) { $setting.Value.Split("`n") | ForEach-Object { $c = $_.trim() Write-Output "`t$c" } } else { Write-Output "`t$($setting.Value)" } } { $_ -eq 'HPBIOS_BIOSInteger' } { Write-Output $setting.Name Write-Output "`t$($setting.Value)" } { $_ -eq 'HPBIOS_BIOSPassword' } { Write-Output $setting.Name Write-Output "" } { $_ -eq 'HPBIOS_BIOSEnumeration' } { Write-Output $setting.Name $fields = $setting.Value.Split(",") foreach ($f in $fields) { Write-Output "`t$f" } } { $_ -eq 'HPBIOS_BIOSOrderedList' } { Write-Output $setting.Name if ($null -ne $setting.Value) { $fields = $setting.Value.Split(",") foreach ($f in $fields) { Write-Output "`t$f" } } else { Write-Output "`t$($setting.Value)" } } } } function formatBiosVersionsOutputList ($doc) { switch ($format) { "json" { return $doc | ConvertTo-Json } "xml" { Write-Output "<bios id=`"$platform`">" if ($all) { $doc | ForEach-Object { Write-Output "<item><ver>$($_.Ver)</ver><bin>$($_.bin)</bin><date>$($_.date)</date><rollback_allowed>$($_.RollbackAllowed)</rollback_allowed><importance>$($_.Importance)</importance></item>" } } else { $doc | ForEach-Object { Write-Output "<item><ver>$($_.Ver)</ver><bin>$($_.bin)</bin><date>$($_.date)</date></item>" } } Write-Output "</bios>" return } "csv" { return $doc | ConvertTo-Csv -NoTypeInformation } "list" { $doc | ForEach-Object { Write-Output "$($_.Bin) version $($_.Ver.TrimStart("0")), released $($_.Date)" } } default { return $doc } } } # format a setting using HPIA (xml) format function convertSettingToXML ($setting) { #if ($setting.DIsplayInUI -eq 0) { return } Write-Output " <BIOSSetting>" Write-Output " <Name>$([System.Web.HttpUtility]::HtmlEncode($setting.Name))</Name>" Write-Output " <Class>$($setting.CimClass.CimClassName)</Class>" Write-Output " <DisplayInUI>$($setting.DisplayInUI)</DisplayInUI>" Write-Output " <IsReadOnly>$($setting.IsReadOnly)</IsReadOnly>" Write-Output " <RequiresPhysicalPresence>$($setting.RequiresPhysicalPresence)</RequiresPhysicalPresence>" Write-Output " <Sequence>$($setting.Sequence)</Sequence>" switch ($setting.CimClass.CimClassName) { { $_ -eq 'HPBIOS_BIOSPassword' } { Write-Output " <Value></Value>" Write-Output " <Min>$($setting.MinLength)</Min>" Write-Output " <Max>$($setting.MaxLength)</Max>" Write-Output " <SupportedEncodings Count=""$($setting.SupportedEncoding.Count)"">" foreach ($e in $setting.SupportedEncoding) { Write-Output " <Encoding>$e</Encoding>" } Write-Output " </SupportedEncodings>" } { $_ -eq 'HPBIOS_BIOSString' } { Write-Output " <Value>$([System.Web.HttpUtility]::HtmlEncode($setting.Value))</Value>" Write-Output " <Min>$($setting.MinLength)</Min>" Write-Output " <Max>$($setting.MaxLength)</Max>" } { $_ -eq 'HPBIOS_BIOSInteger' } { Write-Output " <Value>$($setting.Value)</Value>" #Write-Output " <DisplayInUI>$($setting.DisplayInUI)</DisplayInUI>" Write-Output " <Min>$($setting.LowerBound)</Min>" Write-Output " <Max>$($setting.UpperBound)</Max>" } { $_ -eq 'HPBIOS_BIOSEnumeration' } { Write-Output " <Value>$([System.Web.HttpUtility]::HtmlEncode($setting.CurrentValue))</Value>" Write-Output " <ValueList Count=""$($setting.Size)"">" foreach ($e in $setting.PossibleValues) { Write-Output " <Value>$([System.Web.HttpUtility]::HtmlEncode($e))</Value>" } Write-Output " </ValueList>" } { $_ -eq 'HPBIOS_BIOSOrderedList' } { Write-Output " <Value>$([System.Web.HttpUtility]::HtmlEncode($setting.Value))</Value>" Write-Output " <ValueList Count=""$($setting.Size)"">" foreach ($e in $setting.Elements) { Write-Output " <Value>$([System.Web.HttpUtility]::HtmlEncode($e))</Value>" } Write-Output " </ValueList>" } } Write-Output " </BIOSSetting>" } function convertSettingToJSON ($original_setting) { $setting = $original_setting | Select-Object * if ($setting.CimClass.CimClassName -eq "HPBIOS_BIOSInteger") { $min = $setting.LowerBound $max = $setting.UpperBound Add-Member -InputObject $setting -Name "Min" -Value $min -MemberType NoteProperty Add-Member -InputObject $setting -Name "Max" -Value $max -MemberType NoteProperty $d = $setting | Select-Object -Property Class,DisplayInUI,InstanceName,IsReadOnly,Min,Max,Name,Path,Prerequisites,PrerequisiteSize,RequiresPhysicalPresence,SecurityLevel,Sequence,Value } if (($setting.CimClass.CimClassName -eq "HPBIOS_BIOSString") -or ($setting.CimClass.CimClassName -eq "HPBIOS_BIOSPassword")) { $min = $setting.MinLength $max = $setting.MaxLength Add-Member -InputObject $setting -Name "Min" -Value $min -MemberType NoteProperty -Force Add-Member -InputObject $setting -Name "Max" -Value $max -MemberType NoteProperty -Force $d = $setting | Select-Object -Property Class,DisplayInUI,InstanceName,IsReadOnly,Min,Max,Name,Path,Prerequisites,PrerequisiteSize,RequiresPhysicalPresence,SecurityLevel,Sequence,Value } if ($setting.CimClass.CimClassName -eq "HPBIOS_BIOSEnumeration") { $min = $setting.Size $max = $setting.Size #Add-Member -InputObject $setting -Name "Min" -Value $min -MemberType NoteProperty #Add-Member -InputObject $setting -Name "Max" -Value $max -MemberType NoteProperty $setting.Value = $setting.CurrentValue $d = $setting | Select-Object -Property Class,DisplayInUI,InstanceName,IsReadOnly,Min,Max,Name,Path,Prerequisites,PrerequisiteSize,RequiresPhysicalPresence,SecurityLevel,Sequence,Value,PossibleValues } if ($setting.CimClass.CimClassName -eq "HPBIOS_BIOSOrderedList") { #if Elements is null, initialize it as an empty array else select the first object $Elements = $setting.Elements,@() | Select-Object -First 1 $min = $Elements.Count $max = $Elements.Count Add-Member -InputObject $setting -Name "Min" -Value $min -MemberType NoteProperty Add-Member -InputObject $setting -Name "Max" -Value $max -MemberType NoteProperty Add-Member -InputObject $setting -Name "PossibleValues" -Value $Elements -MemberType NoteProperty $d = $setting | Select-Object -Property Class,DisplayInUI,InstanceName,IsReadOnly,Min,Max,Name,Path,Prerequisites,PrerequisiteSize,RequiresPhysicalPresence,SecurityLevel,Sequence,Value,Elements } $d | ConvertTo-Json -Depth 5 | Write-Output } # format a setting as a CSV entry function convertSettingToCSV ($setting) { switch ($setting.CimClass.CimClassName) { { $_ -eq 'HPBIOS_BIOSEnumeration' } { Write-Output "`"$($setting.Name)`",`"$($setting.value)`",$($setting.IsReadOnly),`"picklist`",$($setting.RequiresPhysicalPresence),$($setting.Size),$($setting.Size)" } { $_ -eq 'HPBIOS_BIOSString' } { Write-Output "`"$($setting.Name)`",`"$($setting.value)`",$($setting.IsReadOnly),`"string`",$($setting.RequiresPhysicalPresence),$($setting.MinLength),$($setting.MaxLength)" } { $_ -eq 'HPBIOS_BIOSPassword' } { Write-Output "`"$($setting.Name)`",`"`",$($setting.IsReadOnly),`"password`",$($setting.RequiresPhysicalPresence),$($setting.MinLength),$($setting.MaxLength)" } { $_ -eq 'HPBIOS_BIOSInteger' } { Write-Output "`"$($setting.Name)`",`"$($setting.value)`",$($setting.IsReadOnly),`"integer`",$($setting.RequiresPhysicalPresence),$($setting.LowerBound),$($setting.UpperBound)" } { $_ -eq 'HPBIOS_BIOSOrderedList' } { Write-Output "`"$($setting.Name)`",`"$($setting.value)`",$($setting.IsReadOnly),`"orderedlist`",$($setting.RequiresPhysicalPresence),$($setting.Size),$($setting.Size)" } } } function extractBIOSVersion { [CmdletBinding()] param ( [Parameter(Position = 0,Mandatory = $true)] [ValidateNotNullOrEmpty()] [string]$BIOSVersion ) [string]$ver = $null # Does the BIOS version string contains x.xx[.xx]? [bool]$found = $BIOSVersion -match '(\d+(\.\d+){1,2})' if ($found) { $ver = $matches[1] Write-Verbose "BIOS version extracted=[$ver]" } $ver } # SIG # Begin signature block # MIIuBAYJKoZIhvcNAQcCoIIt9TCCLfECAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDqwnX8Hf8T6voA # DD47HeyWndjt/uK1QRmLKHb0ZGKa/KCCE2wwggXAMIIEqKADAgECAhAP0bvKeWvX # +N1MguEKmpYxMA0GCSqGSIb3DQEBCwUAMGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQK # EwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNV # BAMTIkRpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEVWIFJvb3QgQ0EwHhcNMjIwMTEz # MDAwMDAwWhcNMzExMTA5MjM1OTU5WjBiMQswCQYDVQQGEwJVUzEVMBMGA1UEChMM # RGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQD # ExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0GCSqGSIb3DQEBAQUAA4IC # DwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3yithZwuEppz1Yq3aa # za57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1Ifxp4VpX6+n6lXFllV # cq9ok3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDVySAdYyktzuxeTsiT # +CFhmzTrBcZe7FsavOvJz82sNEBfsXpm7nfISKhmV1efVFiODCu3T6cw2Vbuyntd # 463JT17lNecxy9qTXtyOj4DatpGYQJB5w3jHtrHEtWoYOAMQjdjUN6QuBX2I9YI+ # EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6MUSaM0C/CNdaSaTC5qmgZ92k # J7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCiEhtmmnTK3kse5w5j # rubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADMfRyVw4/3IbKyEbe7 # f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QYuKZ3AeEPlAwhHbJU # KSWJbOUOUlFHdL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXKchYiCd98THU/Y+wh # X8QgUWtvsauGi0/C1kVfnSD8oR7FwI+isX4KJpn15GkvmB0t9dmpsh3lGwIDAQAB # o4IBZjCCAWIwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5n # P+e6mK4cD08wHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDgYDVR0P # AQH/BAQDAgGGMBMGA1UdJQQMMAoGCCsGAQUFBwMDMH8GCCsGAQUFBwEBBHMwcTAk # BggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEkGCCsGAQUFBzAC # hj1odHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRIaWdoQXNzdXJh # bmNlRVZSb290Q0EuY3J0MEsGA1UdHwREMEIwQKA+oDyGOmh0dHA6Ly9jcmwzLmRp # Z2ljZXJ0LmNvbS9EaWdpQ2VydEhpZ2hBc3N1cmFuY2VFVlJvb3RDQS5jcmwwHAYD # VR0gBBUwEzAHBgVngQwBAzAIBgZngQwBBAEwDQYJKoZIhvcNAQELBQADggEBAEHx # qRH0DxNHecllao3A7pgEpMbjDPKisedfYk/ak1k2zfIe4R7sD+EbP5HU5A/C5pg0 # /xkPZigfT2IxpCrhKhO61z7H0ZL+q93fqpgzRh9Onr3g7QdG64AupP2uU7SkwaT1 # IY1rzAGt9Rnu15ClMlIr28xzDxj4+87eg3Gn77tRWwR2L62t0+od/P1Tk+WMieNg # GbngLyOOLFxJy34riDkruQZhiPOuAnZ2dMFkkbiJUZflhX0901emWG4f7vtpYeJa # 3Cgh6GO6Ps9W7Zrk9wXqyvPsEt84zdp7PiuTUy9cUQBY3pBIowrHC/Q7bVUx8ALM # R3eWUaNetbxcyEMRoacwggawMIIEmKADAgECAhAIrUCyYNKcTJ9ezam9k67ZMA0G # CSqGSIb3DQEBDAUAMGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJ # bmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0 # IFRydXN0ZWQgUm9vdCBHNDAeFw0yMTA0MjkwMDAwMDBaFw0zNjA0MjgyMzU5NTla # MGkxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjFBMD8GA1UE # AxM4RGlnaUNlcnQgVHJ1c3RlZCBHNCBDb2RlIFNpZ25pbmcgUlNBNDA5NiBTSEEz # ODQgMjAyMSBDQTEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDVtC9C # 0CiteLdd1TlZG7GIQvUzjOs9gZdwxbvEhSYwn6SOaNhc9es0JAfhS0/TeEP0F9ce # 2vnS1WcaUk8OoVf8iJnBkcyBAz5NcCRks43iCH00fUyAVxJrQ5qZ8sU7H/Lvy0da # E6ZMswEgJfMQ04uy+wjwiuCdCcBlp/qYgEk1hz1RGeiQIXhFLqGfLOEYwhrMxe6T # SXBCMo/7xuoc82VokaJNTIIRSFJo3hC9FFdd6BgTZcV/sk+FLEikVoQ11vkunKoA # FdE3/hoGlMJ8yOobMubKwvSnowMOdKWvObarYBLj6Na59zHh3K3kGKDYwSNHR7Oh # D26jq22YBoMbt2pnLdK9RBqSEIGPsDsJ18ebMlrC/2pgVItJwZPt4bRc4G/rJvmM # 1bL5OBDm6s6R9b7T+2+TYTRcvJNFKIM2KmYoX7BzzosmJQayg9Rc9hUZTO1i4F4z # 8ujo7AqnsAMrkbI2eb73rQgedaZlzLvjSFDzd5Ea/ttQokbIYViY9XwCFjyDKK05 # huzUtw1T0PhH5nUwjewwk3YUpltLXXRhTT8SkXbev1jLchApQfDVxW0mdmgRQRNY # mtwmKwH0iU1Z23jPgUo+QEdfyYFQc4UQIyFZYIpkVMHMIRroOBl8ZhzNeDhFMJlP # /2NPTLuqDQhTQXxYPUez+rbsjDIJAsxsPAxWEQIDAQABo4IBWTCCAVUwEgYDVR0T # AQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQUaDfg67Y7+F8Rhvv+YXsIiGX0TkIwHwYD # VR0jBBgwFoAU7NfjgtJxXWRM3y5nP+e6mK4cD08wDgYDVR0PAQH/BAQDAgGGMBMG # A1UdJQQMMAoGCCsGAQUFBwMDMHcGCCsGAQUFBwEBBGswaTAkBggrBgEFBQcwAYYY # aHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEEGCCsGAQUFBzAChjVodHRwOi8vY2Fj # ZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRUcnVzdGVkUm9vdEc0LmNydDBDBgNV # HR8EPDA6MDigNqA0hjJodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRU # cnVzdGVkUm9vdEc0LmNybDAcBgNVHSAEFTATMAcGBWeBDAEDMAgGBmeBDAEEATAN # BgkqhkiG9w0BAQwFAAOCAgEAOiNEPY0Idu6PvDqZ01bgAhql+Eg08yy25nRm95Ry # sQDKr2wwJxMSnpBEn0v9nqN8JtU3vDpdSG2V1T9J9Ce7FoFFUP2cvbaF4HZ+N3HL # IvdaqpDP9ZNq4+sg0dVQeYiaiorBtr2hSBh+3NiAGhEZGM1hmYFW9snjdufE5Btf # Q/g+lP92OT2e1JnPSt0o618moZVYSNUa/tcnP/2Q0XaG3RywYFzzDaju4ImhvTnh # OE7abrs2nfvlIVNaw8rpavGiPttDuDPITzgUkpn13c5UbdldAhQfQDN8A+KVssIh # dXNSy0bYxDQcoqVLjc1vdjcshT8azibpGL6QB7BDf5WIIIJw8MzK7/0pNVwfiThV # 9zeKiwmhywvpMRr/LhlcOXHhvpynCgbWJme3kuZOX956rEnPLqR0kq3bPKSchh/j # wVYbKyP/j7XqiHtwa+aguv06P0WmxOgWkVKLQcBIhEuWTatEQOON8BUozu3xGFYH # Ki8QxAwIZDwzj64ojDzLj4gLDb879M4ee47vtevLt/B3E+bnKD+sEq6lLyJsQfmC # XBVmzGwOysWGw/YmMwwHS6DTBwJqakAwSEs0qFEgu60bhQjiWQ1tygVQK+pKHJ6l # /aCnHwZ05/LWUpD9r4VIIflXO7ScA+2GRfS0YW6/aOImYIbqyK+p/pQd52MbOoZW # eE4wggbwMIIE2KADAgECAhAI+qTPsJ3byDJ7SsgX0LBUMA0GCSqGSIb3DQEBCwUA # MGkxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjFBMD8GA1UE # AxM4RGlnaUNlcnQgVHJ1c3RlZCBHNCBDb2RlIFNpZ25pbmcgUlNBNDA5NiBTSEEz # ODQgMjAyMSBDQTEwHhcNMjIwMzA5MDAwMDAwWhcNMjMwMzA5MjM1OTU5WjB1MQsw # CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTESMBAGA1UEBxMJUGFsbyBB # bHRvMRAwDgYDVQQKEwdIUCBJbmMuMRkwFwYDVQQLExBIUCBDeWJlcnNlY3VyaXR5 # MRAwDgYDVQQDEwdIUCBJbmMuMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKC # AYEA2KwFARbsSL8FnMdZ++xo7iVdqg+ZOY0S2KkvYQdNNcvrcfHTdNpNgf65RuIt # VQxdJXzmZcAOXJUPjRQRduvFf/I8jqR4UwBLsNoy/sEuQIDCfezNSQz8TPredjUG # Lr6Y9ie1vYryqJ110Mj6NtXZQidlytEneq3z73Ec7TRFKp8iiiwNpTcbhAq93pq6 # bjnc98ajFUBHJu9Gfk1Or3haR6m7YH0LRLVWm18I2OKrcPLk67hWRj6Aa7/heBkk # F8TfGCUwGBHhblrprBVECR3M4zTnMygBfxVEzYsdyAytPy0DgqzZ7+rHY0yvgDUx # Fi/d1SyqNDCf6FBBudNjzw7TULEBHlJjk96xhd1z4X5ctL1kW4duC7Mba6H8A1lI # qM5qa+8Fr88IJhnl21PlkBp+XAk3lBaeJ/DVpORIv3bhUV8OLae6ElQBGvqQoEY/ # AaNerghhFjiqAhaUG3z3Y7ruhVaCmuw/SMVS79dxESj/J1qHWVnF1tn2a4liq/RY # VeFTAgMBAAGjggIGMIICAjAfBgNVHSMEGDAWgBRoN+Drtjv4XxGG+/5hewiIZfRO # QjAdBgNVHQ4EFgQUAjIiVx974XGZre7F5HqNCJiWZbowDgYDVR0PAQH/BAQDAgeA # MBMGA1UdJQQMMAoGCCsGAQUFBwMDMIG1BgNVHR8Ega0wgaowU6BRoE+GTWh0dHA6 # Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRHNENvZGVTaWduaW5n # UlNBNDA5NlNIQTM4NDIwMjFDQTEuY3JsMFOgUaBPhk1odHRwOi8vY3JsNC5kaWdp # Y2VydC5jb20vRGlnaUNlcnRUcnVzdGVkRzRDb2RlU2lnbmluZ1JTQTQwOTZTSEEz # ODQyMDIxQ0ExLmNybDA+BgNVHSAENzA1MDMGBmeBDAEEATApMCcGCCsGAQUFBwIB # FhtodHRwOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwgZQGCCsGAQUFBwEBBIGHMIGE # MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wXAYIKwYBBQUH # MAKGUGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRH # NENvZGVTaWduaW5nUlNBNDA5NlNIQTM4NDIwMjFDQTEuY3J0MAwGA1UdEwEB/wQC # MAAwDQYJKoZIhvcNAQELBQADggIBAFrOPeL4ph8SmHwwcUQO7nPnapyOS0I50w70 # nVZ9CtrgyA7hiZmVm/CsC1JU8zg1dNyfH7wCDaoMAnqtybcdmhIXc4STwfcpiKOH # nL3fRQcZ2zCCXmX5lkWYWni9Nqx603JQ8yiUSl1sMyv0Cd4RasOBHnjQuekDDKNT # QvOiEA3NCZDGEjtIjE+TGqLW2kUEtjxzyr0mnhmidRaHry5C1GKu0mlKExwabOLW # xGrXj4FPtKmWXZh00lMbbdeHm1Zqn9CTsO6xt8CQXSemcpb7lXY80um71wQO23ub # tQGDe4QpShomqPmEIVxM5/B6Yih/0Lb8mt60SLfT5EOVS/Dhd86lSHcncL9JLxaq # WwbQhIwpEa4b3MiZqyemqb0+YIBn5yG43M4oLzRPTo2mPwG19OtnMVZsrcjGEzLz # EiBb9/YXsf8G5LAh86x2kRKDad35NNNojUJYVBtD7MGEsL37XF+6kWXsp92on2b2 # QLEL/5ZzJHmfrJ8m0TXMb4sMSI2KnHtCvEjG2MIAnjFEvNZ1ZFsKS78mwylDyHL0 # yTuv08JqDuommKgjmyvtLEeb6OYsOnSVQIcyV4XCY1kFA8mDuIsIlbWE3Nyv94Of # N+4jNKcDzniYb5LmKlXraIM8PjPpYb34DlNpzCDN7/tJuMFsy/NwArj1SiL630mg # Dm0fS5OgMYIZ7jCCGeoCAQEwfTBpMQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGln # aUNlcnQsIEluYy4xQTA/BgNVBAMTOERpZ2lDZXJ0IFRydXN0ZWQgRzQgQ29kZSBT # aWduaW5nIFJTQTQwOTYgU0hBMzg0IDIwMjEgQ0ExAhAI+qTPsJ3byDJ7SsgX0LBU # MA0GCWCGSAFlAwQCAQUAoHwwEAYKKwYBBAGCNwIBDDECMAAwGQYJKoZIhvcNAQkD # MQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJ # KoZIhvcNAQkEMSIEINwYocXx1KhMSMhcREbcA7sBRFqB0JjhAzvAv1KmJw54MA0G # CSqGSIb3DQEBAQUABIIBgMS5zs1PR/ESh6CVIHgq+R+dQWpv1aEbA5pl48NCNFcs # 2qeqFkTyYLO630c4q4w+vxMz3fTgxhS25E19AghpnQkdxCsfs9U4+0j+eRp4NU/k # FhVLcVWr3XcMhQnX1REWOuGPfm9kqoIW0NwffY3WNE079ReXyH4W9Gy1eEzyTYVE # KcH96o5ssp4zxaN1a2Lmx/hroYv9/V0mAsbl5IMozFh9RP/PE6pRTyCBow5MkIp2 # /fQv37hQgcQYeRBmqYajx8s0V5RDSGUmNx8lloSOEsTwH3vCOgk6GB+rS2x5vkJ3 # 3FMbFEYm73bnARqhByyiOx/gTyvDaRE6JZ7iGJ8OtUPP8j5XIzp51SgQy7y/G+uL # DFk//iZXCAItiXyIcSldVKvnVLBzwL8jpGwqTQePrS9401GcW7+vmYXPfFMAdrZR # el3e3imgfIYtUVyY1k5hDEdf8e0gwlnKCikexcMnZLmKDcW3tw60ogRLqASKir4f # SRmUlQpCQAQWOLBWs5hMn6GCF0QwghdABgorBgEEAYI3AwMBMYIXMDCCFywGCSqG # SIb3DQEHAqCCFx0wghcZAgEDMQ8wDQYJYIZIAWUDBAIBBQAweAYLKoZIhvcNAQkQ # AQSgaQRnMGUCAQEGCWCGSAGG/WwHATAxMA0GCWCGSAFlAwQCAQUABCD4UIWgv9dz # Hhl0uj84GB0QyrxWHOb6FqqaCc3B8/d7GAIRAKyul64uoFCPkmNs2j0FbG4YDzIw # MjIwOTA3MTczNTE2WqCCEw0wggbGMIIErqADAgECAhAKekqInsmZQpAGYzhNhped # MA0GCSqGSIb3DQEBCwUAMGMxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2Vy # dCwgSW5jLjE7MDkGA1UEAxMyRGlnaUNlcnQgVHJ1c3RlZCBHNCBSU0E0MDk2IFNI # QTI1NiBUaW1lU3RhbXBpbmcgQ0EwHhcNMjIwMzI5MDAwMDAwWhcNMzMwMzE0MjM1 # OTU5WjBMMQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xJDAi # BgNVBAMTG0RpZ2lDZXJ0IFRpbWVzdGFtcCAyMDIyIC0gMjCCAiIwDQYJKoZIhvcN # AQEBBQADggIPADCCAgoCggIBALkqliOmXLxf1knwFYIY9DPuzFxs4+AlLtIx5DxA # rvurxON4XX5cNur1JY1Do4HrOGP5PIhp3jzSMFENMQe6Rm7po0tI6IlBfw2y1vmE # 8Zg+C78KhBJxbKFiJgHTzsNs/aw7ftwqHKm9MMYW2Nq867Lxg9GfzQnFuUFqRUIj # QVr4YNNlLD5+Xr2Wp/D8sfT0KM9CeR87x5MHaGjlRDRSXw9Q3tRZLER0wDJHGVvi # mC6P0Mo//8ZnzzyTlU6E6XYYmJkRFMUrDKAz200kheiClOEvA+5/hQLJhuHVGBS3 # BEXz4Di9or16cZjsFef9LuzSmwCKrB2NO4Bo/tBZmCbO4O2ufyguwp7gC0vICNEy # u4P6IzzZ/9KMu/dDI9/nw1oFYn5wLOUrsj1j6siugSBrQ4nIfl+wGt0ZvZ90QQqv # uY4J03ShL7BUdsGQT5TshmH/2xEvkgMwzjC3iw9dRLNDHSNQzZHXL537/M2xwafE # DsTvQD4ZOgLUMalpoEn5deGb6GjkagyP6+SxIXuGZ1h+fx/oK+QUshbWgaHK2jCQ # a+5vdcCwNiayCDv/vb5/bBMY38ZtpHlJrYt/YYcFaPfUcONCleieu5tLsuK2QT3n # r6caKMmtYbCgQRgZTu1Hm2GV7T4LYVrqPnqYklHNP8lE54CLKUJy93my3YTqJ+7+ # fXprAgMBAAGjggGLMIIBhzAOBgNVHQ8BAf8EBAMCB4AwDAYDVR0TAQH/BAIwADAW # BgNVHSUBAf8EDDAKBggrBgEFBQcDCDAgBgNVHSAEGTAXMAgGBmeBDAEEAjALBglg # hkgBhv1sBwEwHwYDVR0jBBgwFoAUuhbZbU2FL3MpdpovdYxqII+eyG8wHQYDVR0O # BBYEFI1kt4kh/lZYRIRhp+pvHDaP3a8NMFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6 # Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRHNFJTQTQwOTZTSEEy # NTZUaW1lU3RhbXBpbmdDQS5jcmwwgZAGCCsGAQUFBwEBBIGDMIGAMCQGCCsGAQUF # BzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wWAYIKwYBBQUHMAKGTGh0dHA6 # Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRHNFJTQTQwOTZT # SEEyNTZUaW1lU3RhbXBpbmdDQS5jcnQwDQYJKoZIhvcNAQELBQADggIBAA0tI3Sm # 0fX46kuZPwHk9gzkrxad2bOMl4IpnENvAS2rOLVwEb+EGYs/XeWGT76TOt4qOVo5 # TtiEWaW8G5iq6Gzv0UhpGThbz4k5HXBw2U7fIyJs1d/2WcuhwupMdsqh3KErlrib # Vakaa33R9QIJT4LWpXOIxJiA3+5JlbezzMWn7g7h7x44ip/vEckxSli23zh8y/pc # 9+RTv24KfH7X3pjVKWWJD6KcwGX0ASJlx+pedKZbNZJQfPQXpodkTz5GiRZjIGvL # 8nvQNeNKcEiptucdYL0EIhUlcAZyqUQ7aUcR0+7px6A+TxC5MDbk86ppCaiLfmSi # ZZQR+24y8fW7OK3NwJMR1TJ4Sks3KkzzXNy2hcC7cDBVeNaY/lRtf3GpSBp43UZ3 # Lht6wDOK+EoojBKoc88t+dMj8p4Z4A2UKKDr2xpRoJWCjihrpM6ddt6pc6pIallD # rl/q+A8GQp3fBmiW/iqgdFtjZt5rLLh4qk1wbfAs8QcVfjW05rUMopml1xVrNQ6F # 1uAszOAMJLh8UgsemXzvyMjFjFhpr6s94c/MfRWuFL+Kcd/Kl7HYR+ocheBFThIc # FClYzG/Tf8u+wQ5KbyCcrtlzMlkI5y2SoRoR/jKYpl0rl+CL05zMbbUNrkdjOEcX # W28T2moQbh9Jt0RbtAgKh1pZBHYRoad3AhMcMIIGrjCCBJagAwIBAgIQBzY3tyRU # fNhHrP0oZipeWzANBgkqhkiG9w0BAQsFADBiMQswCQYDVQQGEwJVUzEVMBMGA1UE # ChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSEwHwYD # VQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwHhcNMjIwMzIzMDAwMDAwWhcN # MzcwMzIyMjM1OTU5WjBjMQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQs # IEluYy4xOzA5BgNVBAMTMkRpZ2lDZXJ0IFRydXN0ZWQgRzQgUlNBNDA5NiBTSEEy # NTYgVGltZVN0YW1waW5nIENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKC # AgEAxoY1BkmzwT1ySVFVxyUDxPKRN6mXUaHW0oPRnkyibaCwzIP5WvYRoUQVQl+k # iPNo+n3znIkLf50fng8zH1ATCyZzlm34V6gCff1DtITaEfFzsbPuK4CEiiIY3+va # PcQXf6sZKz5C3GeO6lE98NZW1OcoLevTsbV15x8GZY2UKdPZ7Gnf2ZCHRgB720RB # idx8ald68Dd5n12sy+iEZLRS8nZH92GDGd1ftFQLIWhuNyG7QKxfst5Kfc71ORJn # 7w6lY2zkpsUdzTYNXNXmG6jBZHRAp8ByxbpOH7G1WE15/tePc5OsLDnipUjW8LAx # E6lXKZYnLvWHpo9OdhVVJnCYJn+gGkcgQ+NDY4B7dW4nJZCYOjgRs/b2nuY7W+yB # 3iIU2YIqx5K/oN7jPqJz+ucfWmyU8lKVEStYdEAoq3NDzt9KoRxrOMUp88qqlnNC # aJ+2RrOdOqPVA+C/8KI8ykLcGEh/FDTP0kyr75s9/g64ZCr6dSgkQe1CvwWcZklS # UPRR8zZJTYsg0ixXNXkrqPNFYLwjjVj33GHek/45wPmyMKVM1+mYSlg+0wOI/rOP # 015LdhJRk8mMDDtbiiKowSYI+RQQEgN9XyO7ZONj4KbhPvbCdLI/Hgl27KtdRnXi # YKNYCQEoAA6EVO7O6V3IXjASvUaetdN2udIOa5kM0jO0zbECAwEAAaOCAV0wggFZ # MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFLoW2W1NhS9zKXaaL3WMaiCP # nshvMB8GA1UdIwQYMBaAFOzX44LScV1kTN8uZz/nupiuHA9PMA4GA1UdDwEB/wQE # AwIBhjATBgNVHSUEDDAKBggrBgEFBQcDCDB3BggrBgEFBQcBAQRrMGkwJAYIKwYB # BQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBBBggrBgEFBQcwAoY1aHR0 # cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0VHJ1c3RlZFJvb3RHNC5j # cnQwQwYDVR0fBDwwOjA4oDagNIYyaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0Rp # Z2lDZXJ0VHJ1c3RlZFJvb3RHNC5jcmwwIAYDVR0gBBkwFzAIBgZngQwBBAIwCwYJ # YIZIAYb9bAcBMA0GCSqGSIb3DQEBCwUAA4ICAQB9WY7Ak7ZvmKlEIgF+ZtbYIULh # sBguEE0TzzBTzr8Y+8dQXeJLKftwig2qKWn8acHPHQfpPmDI2AvlXFvXbYf6hCAl # NDFnzbYSlm/EUExiHQwIgqgWvalWzxVzjQEiJc6VaT9Hd/tydBTX/6tPiix6q4XN # Q1/tYLaqT5Fmniye4Iqs5f2MvGQmh2ySvZ180HAKfO+ovHVPulr3qRCyXen/KFSJ # 8NWKcXZl2szwcqMj+sAngkSumScbqyQeJsG33irr9p6xeZmBo1aGqwpFyd/EjaDn # mPv7pp1yr8THwcFqcdnGE4AJxLafzYeHJLtPo0m5d2aR8XKc6UsCUqc3fpNTrDsd # CEkPlM05et3/JWOZJyw9P2un8WbDQc1PtkCbISFA0LcTJM3cHXg65J6t5TRxktcm # a+Q4c6umAU+9Pzt4rUyt+8SVe+0KXzM5h0F4ejjpnOHdI/0dKNPH+ejxmF/7K9h+ # 8kaddSweJywm228Vex4Ziza4k9Tm8heZWcpw8De/mADfIBZPJ/tgZxahZrrdVcA6 # KYawmKAr7ZVBtzrVFZgxtGIJDwq9gdkT/r+k0fNX2bwE+oLeMt8EifAAzV3C+dAj # fwAL5HYCJtnwZXZCpimHCUcr5n8apIUP/JiW9lVUKx+A+sDyDivl1vupL0QVSucT # Dh3bNzgaoSv27dZ8/DCCBY0wggR1oAMCAQICEA6bGI750C3n79tQ4ghAGFowDQYJ # KoZIhvcNAQEMBQAwZTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IElu # YzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEkMCIGA1UEAxMbRGlnaUNlcnQg # QXNzdXJlZCBJRCBSb290IENBMB4XDTIyMDgwMTAwMDAwMFoXDTMxMTEwOTIzNTk1 # OVowYjELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UE # CxMQd3d3LmRpZ2ljZXJ0LmNvbTEhMB8GA1UEAxMYRGlnaUNlcnQgVHJ1c3RlZCBS # b290IEc0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAv+aQc2jeu+Rd # SjwwIjBpM+zCpyUuySE98orYWcLhKac9WKt2ms2uexuEDcQwH/MbpDgW61bGl20d # q7J58soR0uRf1gU8Ug9SH8aeFaV+vp+pVxZZVXKvaJNwwrK6dZlqczKU0RBEEC7f # gvMHhOZ0O21x4i0MG+4g1ckgHWMpLc7sXk7Ik/ghYZs06wXGXuxbGrzryc/NrDRA # X7F6Zu53yEioZldXn1RYjgwrt0+nMNlW7sp7XeOtyU9e5TXnMcvak17cjo+A2raR # mECQecN4x7axxLVqGDgDEI3Y1DekLgV9iPWCPhCRcKtVgkEy19sEcypukQF8IUzU # vK4bA3VdeGbZOjFEmjNAvwjXWkmkwuapoGfdpCe8oU85tRFYF/ckXEaPZPfBaYh2 # mHY9WV1CdoeJl2l6SPDgohIbZpp0yt5LHucOY67m1O+SkjqePdwA5EUlibaaRBkr # fsCUtNJhbesz2cXfSwQAzH0clcOP9yGyshG3u3/y1YxwLEFgqrFjGESVGnZifvaA # sPvoZKYz0YkH4b235kOkGLimdwHhD5QMIR2yVCkliWzlDlJRR3S+Jqy2QXXeeqxf # jT/JvNNBERJb5RBQ6zHFynIWIgnffEx1P2PsIV/EIFFrb7GrhotPwtZFX50g/KEe # xcCPorF+CiaZ9eRpL5gdLfXZqbId5RsCAwEAAaOCATowggE2MA8GA1UdEwEB/wQF # MAMBAf8wHQYDVR0OBBYEFOzX44LScV1kTN8uZz/nupiuHA9PMB8GA1UdIwQYMBaA # FEXroq/0ksuCMS1Ri6enIZ3zbcgPMA4GA1UdDwEB/wQEAwIBhjB5BggrBgEFBQcB # AQRtMGswJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBDBggr # BgEFBQcwAoY3aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0QXNz # dXJlZElEUm9vdENBLmNydDBFBgNVHR8EPjA8MDqgOKA2hjRodHRwOi8vY3JsMy5k # aWdpY2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3JsMBEGA1UdIAQK # MAgwBgYEVR0gADANBgkqhkiG9w0BAQwFAAOCAQEAcKC/Q1xV5zhfoKN0Gz22Ftf3 # v1cHvZqsoYcs7IVeqRq7IviHGmlUIu2kiHdtvRoU9BNKei8ttzjv9P+Aufih9/Jy # 3iS8UgPITtAq3votVs/59PesMHqai7Je1M/RQ0SbQyHrlnKhSLSZy51PpwYDE3cn # RNTnf+hZqPC/Lwum6fI0POz3A8eHqNJMQBk1RmppVLC4oVaO7KTVPeix3P0c2PR3 # WlxUjG/voVA9/HYJaISfb8rbII01YBwCA8sgsKxYoA5AY8WYIsGyWfVVa88nq2x2 # zm8jLfR+cWojayL/ErhULSd+2DrZ8LaHlv1b0VysGMNNn3O3AamfV6peKOK5lDGC # A3YwggNyAgEBMHcwYzELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lDZXJ0LCBJ # bmMuMTswOQYDVQQDEzJEaWdpQ2VydCBUcnVzdGVkIEc0IFJTQTQwOTYgU0hBMjU2 # IFRpbWVTdGFtcGluZyBDQQIQCnpKiJ7JmUKQBmM4TYaXnTANBglghkgBZQMEAgEF # AKCB0TAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwHAYJKoZIhvcNAQkFMQ8X # DTIyMDkwNzE3MzUxNlowKwYLKoZIhvcNAQkQAgwxHDAaMBgwFgQUhQjzhlFcs9MH # fba0t8B/G0peQd4wLwYJKoZIhvcNAQkEMSIEIAQio2jS+4K4HBofH01QJDPVSnj7 # 9fCdJTBzC5wnlEYmMDcGCyqGSIb3DQEJEAIvMSgwJjAkMCIEIJ2mkBXDScbBiXhF # ujWCrXDIj6QpO9tqvpwr0lOSeeY7MA0GCSqGSIb3DQEBAQUABIICAHVNmSDhlKkN # MMQmvWeeNqjbdCcl4buEtS0F9/MgSWR2tx0LOuOO8bjlgRX5CyD8jQPHAJopsDyc # IpaL9XbqGt9m75SNTeBWNXc8n/pgL9Gm7wcGsOqWwzBNh/XIkLpPP1JZ4OLscWqA # FqBW0LjeRyy9JauAMuywyvaXW0qCJ6A2b4i7iNLYY/I+4ovIG+iSEOG3BhGzAUzx # iJD09rfy1VdWIQxrOnO2yTZu+XCPvNdTQ/fB65k7ONwkXckgqePnVsAXf8XXZGB6 # ZhjZ3qOSzjxqQNuJTb/30jVFx2WPrr9QN6++W0GByRbvK7126EqIXmUklPwJsFzY # snFRnXDrIbrFwgdK6lD3QNYNTeXrPLKSQZDGJ37mpkVHe8BRxovqaelS5xPEMlrh # QDgdXhw4FJDq3MY/0YB9mMrP85Y2vZ+61je78oPBv0K/mA5+uS+t2xcNJqQ+sQnx # fFCHtjfggPpZ0hRRtif5FIfKMZnYej8dAW41XsYSuejHenhz3FuLFaElHzFrf+/h # AyesEoVZZyynsFbmO93IwrxMO37b9Nzc6LZ2m4aCZNHF0SgngVRYMiQKgTCizrfd # tGilauMwItVhJiT8tm5ws6cUkPsW1beazHy/tKLVsysujT6EJ15I4VqNapcZfMab # nK0pGplFsvJnQEv4IVwHj/ZpL70f7oo8 # SIG # End signature block |