PureStoragePowerShellToolkit.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 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 |
<#
=========================================================================== Release version: 2.0.4.0 Revision information: Refer to the changelog.md file --------------------------------------------------------------------------- Maintained by: FlashArray Integrations and Evangelsigm Team @ Pure Storage Organization: Pure Storage, Inc. Filename: PureStoragePowerShellToolkit.psm1 Copyright: (c) 2022 Pure Storage, Inc. Module Name: PureStoragePowerShellToolkit Description: PowerShell Script Module (.psm1) -------------------------------------------------------------------------- Disclaimer: The sample module and documentation are provided AS IS and are not supported by the author or the author’s employer, unless otherwise agreed in writing. You bear all risk relating to the use or performance of the sample script and documentation. The author and the author’s employer disclaim all express or implied warranties (including, without limitation, any warranties of merchantability, title, infringement or fitness for a particular purpose). In no event shall the author, the author’s employer or anyone else involved in the creation, production, or delivery of the scripts be liable for any damages whatsoever arising out of the use or performance of the sample script and documentation (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss), even if such person has been advised of the possibility of such damages. -------------------------------------------------------------------------- Contributors: Rob "Barkz" Barker @purestorage, Robert "Q" Quimbey @purestorage, Mike "Chief" Nelson, Julian "Doctor" Cates, Marcel Dussil @purestorage - https://en.pureflash.blog/ , Craig Dayton - https://github.com/cadayton , Jake Daniels - https://github.com/JakeDennis, Richard Raymond - https://github.com/data-sciences-corporation/PureStorage , The dbatools Team - https://dbatools.io , many more Puritans, and all of the Pure Code community who provide excellent advice, feedback, & scripts now and in the future. =========================================================================== #> #Requires -Version 3 #### BEGIN HELPER FUNCTIONS #region ConvertTo-Base64 function ConvertTo-Base64() { <# .SYNOPSIS Converts source file to Base64. .DESCRIPTION Helper function Supporting function to handle conversions. .INPUTS Source (Mandatory) .OUTPUTS Converted source. #> Param ( [Parameter(Mandatory = $true)][String] $Source ) return [Convert]::ToBase64String((Get-Content $Source -Encoding byte)) } #endregion #region Convert-Size function Convert-Size() { <# .SYNOPSIS Converts volume sizes from B to MB, MB, GB, TB. .DESCRIPTION Helper function Supporting function to handle conversions. .INPUTS ConvertFrom (Mandatory) ConvertTo (Mandatory) Value (Mandatory) Precision (Optional) .OUTPUTS Converted size of volume. #> [CmdletBinding()] Param ( [Parameter(Mandatory = $true)][ValidateSet("Bytes", "KB", "MB", "GB", "TB")][String]$ConvertFrom, [Parameter(Mandatory = $true)][ValidateSet("Bytes", "KB", "MB", "GB", "TB")][String]$ConvertTo, [Parameter(Mandatory = $true)][Double]$Value, [Parameter(Mandatory = $false)][Int]$Precision = 4 ) switch ($ConvertFrom) { "Bytes" { $value = $Value } "KB" { $value = $Value * 1024 } "MB" { $value = $Value * 1024 * 1024 } "GB" { $value = $Value * 1024 * 1024 * 1024 } "TB" { $value = $Value * 1024 * 1024 * 1024 * 1024 } } switch ($ConvertTo) { "Bytes" { return $value } "KB" { $Value = $Value / 1KB } "MB" { $Value = $Value / 1MB } "GB" { $Value = $Value / 1GB } "TB" { $Value = $Value / 1TB } } return [Math]::Round($Value, $Precision, [MidPointRounding]::AwayFromZero) } #endregion #region New-FlashArrayReportPieChart function New-FlashArrayReportPieChart() { <# .SYNOPSIS Creates graphic pie chart .png image file for use in report. .DESCRIPTION Helper function Supporting function to create a pie chart. .OUTPUTS piechart.png. #> Param ( [string]$FileName, [float]$SnapshotSpace, [float]$VolumeSpace, [float]$CapacitySpace ) [void][Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") [void][Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms.DataVisualization") $chart = New-Object System.Windows.Forms.DataVisualization.charting.chart $chart.Width = 700 $chart.Height = 500 $chart.Left = 10 $chart.Top = 10 $chartArea = New-Object System.Windows.Forms.DataVisualization.charting.chartArea $chart.chartAreas.Add($chartArea) [void]$chart.Series.Add("Data") $legend = New-Object system.Windows.Forms.DataVisualization.charting.Legend $legend.Name = "Legend" $legend.Font = "Verdana" $legend.Alignment = "Center" $legend.Docking = "top" $legend.Bordercolor = "#FE5000" $legend.Legendstyle = "row" $chart.Legends.Add($legend) $datapoint = New-Object System.Windows.Forms.DataVisualization.charting.DataPoint(0, $SnapshotSpace) $datapoint.AxisLabel = "SnapShots " + "(" + $SnapshotSpace + " MB)" $chart.Series["Data"].Points.Add($datapoint) $datapoint = New-Object System.Windows.Forms.DataVisualization.charting.DataPoint(0, $VolumeSpace) $datapoint.AxisLabel = "Volumes " + "(" + $VolumeSpace + " GB)" $chart.Series["Data"].Points.Add($datapoint) $chart.Series["Data"].chartType = [System.Windows.Forms.DataVisualization.charting.SerieschartType]::Doughnut $chart.Series["Data"]["DoughnutLabelStyle"] = "Outside" $chart.Series["Data"]["DoughnutLineColor"] = "#FE5000" $Title = New-Object System.Windows.Forms.DataVisualization.charting.Title $chart.Titles.Add($Title) $chart.SaveImage($FileName + ".png", "png") } #endregion #region Get-Sdk1Module function Get-Sdk1Module() { <# .SYNOPSIS Confirms that PureStoragePowerShellSDK version 1 module is loaded, present, or missing. If missing, it will download it and import. If internet access is not available, the function will error. .DESCRIPTION Helper function Supporting function to load required module. .OUTPUTS PureStoragePowerShellSDK version 1 module. #> $m = "PureStoragePowerShellSDK" # If module is imported, continue if (Get-Module | Where-Object { $_.Name -eq $m }) { } else { # If module is not imported, but available on disk, then import if (Get-InstalledModule | Where-Object { $_.Name -eq $m }) { Import-Module $m -ErrorAction SilentlyContinue } else { # If module is not imported, not available on disk, then install and import if (Find-Module -Name $m | Where-Object { $_.Name -eq $m }) { Write-Warning "The $m module does not exist." Write-Host "We will attempt to install the module from the PowerShell Gallery. Please wait..." Install-Module -Name $m -Force -ErrorAction SilentlyContinue -Scope CurrentUser Import-Module $m -ErrorAction SilentlyContinue } else { # If module is not imported, not available on disk, and we cannot access it online, then abort Write-Host "Module $m not imported, not available on disk, and we are not able to download it from the online gallery... Exiting." EXIT 1 } } } } #endregion #region Get-Sdk1Module function Get-Sdk2Module() { <# .SYNOPSIS Confirms that PureStoragePowerShellSDK version 2 module is loaded, present, or missing. If missing, it will download it and import. If internet access is not available, the function will error. .DESCRIPTION Helper function Supporting function to load required module. .OUTPUTS PureStoragePowerShellSDK version 2 module. #> $m = "PureStoragePowerShellSDK2" # If module is imported, continue if (Get-Module | Where-Object { $_.Name -eq $m }) { } else { # If module is not imported, but available on disk, then import if (Get-InstalledModule | Where-Object { $_.Name -eq $m }) { Import-Module $m -ErrorAction SilentlyContinue } else { # If module is not imported, not available on disk, then install and import if (Find-Module -Name $m | Where-Object { $_.Name -eq $m }) { Write-Warning "The $m module does not exist." Write-Host "We will attempt to install the module from the PowerShell Gallery. Please wait..." Install-Module -Name $m -Force -ErrorAction SilentlyContinue -Scope CurrentUser Import-Module $m -ErrorAction SilentlyContinue } else { # If module is not imported, not available on disk, and we cannot access it online, then abort Write-Host "Module $m not imported, not available on disk, and we are not able to download it from the online gallery... Exiting." EXIT 1 } } } } #endregion #region Get-DbaToolsModule function Get-DbaToolsModule() { <# .SYNOPSIS Confirms that dbatools PowerShell module is loaded, present, or missing. If missing, it will download it and import. If internet access is not available, the function will error. .DESCRIPTION Helper function Supporting function to load required module. .OUTPUTS dbatools module - https://dbatools.io. #> $m = "dbatools" # If module is imported, continue if (Get-Module | Where-Object { $_.Name -eq $m }) { } else { # If module is not imported, but available on disk, then import if (Get-InstalledModule | Where-Object { $_.Name -eq $m }) { Import-Module $m -ErrorAction SilentlyContinue } else { # If module is not imported, not available on disk, then install and import if (Find-Module -Name $m | Where-Object { $_.Name -eq $m }) { Write-Warning "$m module does not exist." Write-Host "We will attempt to install the module from the PowerShell Gallery. Please wait..." Install-Module -Name $m -Force -ErrorAction SilentlyContinue -Scope CurrentUser Import-Module $m -ErrorAction SilentlyContinue } else { # If module is not imported, not available on disk, and we cannot access it online, then abort Write-Host "Module $m not imported, not available on disk, and we are not able to download it from the online gallery... Exiting." EXIT 1 } } } } #endregion #region Get-ElevatedStatus function Get-ElevatedStatus() { <# .SYNOPSIS Confirms elevated permissions to run cmdlets. .DESCRIPTION Helper function Supporting function to confirm administrator permissions. .OUTPUTS Error on non-administrative permissions. #> if (-NOT ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole(` [Security.Principal.WindowsBuiltInRole] "Administrator")) { Write-Warning "Insufficient permissions to run this cmdlet. Open the PowerShell console as an administrator and run this cmdlet again." Break } } #endregion #region Get-HypervStatus function Get-HypervStatus() { <# .SYNOPSIS Confirms that the HyperV role is installed ont he server. .DESCRIPTION Helper function Supporting function to ensure proper role is installed. .OUTPUTS Error on missing HyperV role. #> $hypervStatus = (Get-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V).State if ($hypervStatus -ne "Enabled") { Write-Host "Hyper-V is not running. This cmdlet must be run on a Hyper-V host." break } } #endregion #### END HELPER FUNCTIONS #### FLASHARRAY FUNCTIONS #region Get-FlashArrayConnectDetails function Get-FlashArrayConnectDetails() { <# .SYNOPSIS Outputs FlashArray connection details. .DESCRIPTION Output FlashArray connection details including Host and Volume names, LUN ID, IQN / WWN, Volume Provisioned Size, and Host Capacity Written. .PARAMETER EndPoint Required. FlashArray IP address or FQDN. .INPUTS None .OUTPUTS Formatted output details from Get-Pfa2Connection .EXAMPLE Get-FlashArrayConnectDetails.ps1 -EndPoint myArray .NOTES This cmdlet does not allow for use of OAUth authentication, only token authentication. Arrays with maximum API versions of 2.0 or 2.1 must use OAuth authentication. This will be added in a later revision. This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $EndPoint ) Get-Sdk2Module # Connect to FlashArray if (!($Creds)) { try { $FlashArray = Connect-Pfa2Array -EndPoint $EndPoint -Credentials (Get-Credential) -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } else { try { $FlashArray = Connect-Pfa2Array -EndPoint $EndPoint -Credentials $Creds -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } # Create an object to store the connection details $ConnDetails = New-Object -TypeName System.Collections.ArrayList $Header = "HostName", "VolumeName", "LUNID", "IQNs", "WWNs", "Provisioned(TB)", "HostWritten(GB)" # Get Connections and filter out VVOL protocol endpoints $PureConns = (Get-Pfa2Connection -Array $FlashArray | Where-Object { !($_.Volume.Name -eq "pure-protocol-endpoint") }) # For each Connection, build a row with the desired values from Connection, Host, and Volume objects. Add it to ConnDetails. ForEach ($PureConn in $PureConns) { $PureHost = (Get-Pfa2Host -Array $FlashArray | Where-Object { $_.Name -eq $PureConn.Host.Name }) $PureVol = (Get-Pfa2Volume -Array $FlashArray | Where-Object { $_.Name -eq $PureConn.Volume.Name }) # Calculate and format Host Written Capacity, Volume Provisioned Capacity $HostWrittenCapacity = [Math]::Round(($PureVol.Provisioned * (1 - $PureVol.Space.ThinProvisioning)) / 1GB, 2) $VolumeProvisionedCapacity = [Math]::Round(($PureVol.Provisioned ) / 1TB, 2) $NewRow = "$($PureHost.Name),$($PureVol.Name),$($PureConn.Lun),$($PureHost.Iqns),$($PureHost.Wwns)," $NewRow += "$($VolumeProvisionedCapacity),$($HostWrittenCapacity)" [void]$ConnDetails.Add($NewRow) } # Print ConnDetails and make it look nice $ConnDetails | ConvertFrom-Csv -Header $Header | Sort-Object HostName | Format-Table -AutoSize } #endregion #region Get-FlashArrayVolumeGrowth.ps1 function Get-FlashArrayVolumeGrowth() { <# .SYNOPSIS Retrieves volume growth information over past X days at X percentage of growth. .DESCRIPTION Retrieves volume growth in GB from a FlashArray for volumes that grew in past X amount of days at X percentage of growth. .PARAMETER Arrays Required. An IP address or FQDN of the FlashArray(s). Multiple arrys can be specified, seperated by commas. Only use single-quotes or no quotes around the arrays parameter object. Ex. -Arrays array1,array2,array3 --or-- -Arrays 'array1,array2,array3' .PARAMETER MinimumVolumeAgeInDays Optional. The minimum age in days that a volume must be to report on it. If not specified, defaults to 1 day. .PARAMETER TimeFrameToCompareWith Required. The timeframe to compare the volume size against. Accepts '1h', '3h', '24h', '7d', '30d', '90d', '1y'. .PARAMETER GrowthPercentThreshold Optional. The minimum percentage of volume growth to report on. Specified as a numerical value from 1-99. If not specified, defaults to '1'. .PARAMETER DoNotReportGrowthOfLessThan Optional. If growth in size, in Gigabytes, over the specified period is lower than this value, it will not be reported. Specified as a numerical value. If not specified, defaults to '1'. .PARAMETER DoNotReportVolSmallerThan Optional. Volumes that are smaller than this size in Gigabytes will not be reported on. Specified as a numerical value + GB. If not specified, defaults to '1GB'. .PARAMETER html Optional. Switch. If present, produces a HTML of the output in the current folder named FlashArrayVolumeGrowthReport.html. .PARAMETER csv Optional. Switch. If present, produces a csv comma-delimited file of the output in the current folder named FlashArrayVolumeGrowthReport.csv. .INPUTS Specified inputs to calculate volumes reported on. .OUTPUTS Volume capacity information to the console, and also to a CSV and/or HTML formatted report (if specified). .EXAMPLE Get-FlashArrayVolumeGrowth -Arrays array1,array2 -GrowthPercentThreshold '10' -MinimumVolumeAgeInDays '1' -TimeFrameToCompareWith '7d' -DoNotReportGrowthOfLessThan '1' -DoNotReportVolSmallerThan '1GB' -csv Retrieve volume capacity report for array 1 and array2 comparing volumes over the last 7 days that: - volumes that are not smaller than 1GB in size - must have growth of less than 1GB - that are at least 1 day old - have grown at least 10% - output the report to a CSV delimited file .NOTES All arrays specified must use the same credential login. This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string[]] $Arrays, [Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $MinimumVolumeAgeInDays = "1", [Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $TimeFrameToCompareWith, [Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $GrowthPercentThreshold = "1", [Parameter(Mandatory = $False)][string] $DoNotReportGrowthOfLessThan = "1", [Parameter(Mandatory = $False)][string] $DoNotReportVolSmallerThan = "1GB", [Parameter(Mandatory = $False)][switch] $csv, [Parameter(Mandatory = $False)][switch] $html ) Get-Sdk1Module $cred = Get-Credential # Connect to FlashArray(s) $VolThatBreachGrowthPercentThreshold = @() foreach ($Array in $Arrays) { if (!($Creds)) { try { $FlashArray = New-PfaArray -EndPoint $Array -Credentials $cred -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Array with: $ExceptionMessage" Return } } else { try { $FlashArray = New-PfaArray -EndPoint $Array -Credentials $Creds -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Array with: $ExceptionMessage" Return } } } Write-Host "" Write-Host "Retrieving data from arrays and calculating." -ForegroundColor Yellow Write-Host "This may take some time depending on number of arrays, volumes, etc. Please wait..." -ForegroundColor Yellow Write-Host "" foreach ($Array in $Arrays) { Write-Host "Calculating array $Array..." -ForegroundColor Green Write-Host "" $VolDetails = (Get-PfaVolumes $FlashArray -ErrorAction SilentlyContinue) $VolDetailsExcludingNewAndSmall = $VolDetails | ? size -GT $DoNotRportVolSmallerThan | Where-Object { (Get-Date $_.created) -lt (Get-Date).AddDays(-$DaysSinceCommissioningToReportAfter) } $VolDetailsExcludingNewAndSmall = $VolDetailsExcludingNewAndSmall | % { $VolumeSpaceMetrics = Get-PfaVolumeSpaceMetricsByTimeRange -VolumeName $_.name -TimeRange $TimeFrameToCompareWith -Array $FlashArray $_ | Add-Member NoteProperty -PassThru -Force -Name "GrowthPercentage" -Value $([math]::Round((($VolumeSpaceMetrics | select -Last 1).volumes / (1KB + ($VolumeSpaceMetrics | Select-Object -First 1).volumes)), 2)) | # 1KB+ appended to avoid devide by 0 errors Add-Member NoteProperty -PassThru -Force -Name "GrowthInGB" -Value $([math]::Round(((($VolumeSpaceMetrics | Select-Object -Last 1).volumes - ($VolumeSpaceMetrics | Select-Object -First 1).volumes) / 1GB), 2)) | ` Add-Member NoteProperty -PassThru -Force -Name "ArrayName" -Value $Array } $VolThatBreachGrowthPercentThreshold += $VolDetailsExcludingNewAndSmall | Where-Object { $_.GrowthPercentage -gt $GrowthPercentThreshold -and $_.GrowthInGB -gt $DoNotRportGrowthOfLessThan } if ($VolThatBreachGrowthPercentThreshold) { Write-Host "The following volumes have grown in the last $TimeFrameToCompareWith above the $GrowthPercentThreshold Percent of thier previous size:" -ForegroundColor Green ($($VolThatBreachGrowthPercentThreshold | Select-Object Name, ArrayName, GrowthInGB, GrowthPercentage) | Format-Table -AutoSize ) $htmlOutput = ($($VolThatBreachGrowthPercentThreshold | Select-Object name, ArrayName, GrowthInGB, GrowthPercentage)) $csvOutput = ($($VolThatBreachGrowthPercentThreshold | Select-Object name, ArrayName, GrowthInGB, GrowthPercentage)) } } Write-Host " " Write-Host "Query parameters specified as:" Write-Host "1) Ignore volumes created in the last $DaysSinceCommissioningToReportAfter days, 2) Volumes smaller than $($DoNotRportVolSmallerThan / 1GB) GB, and 3) Growth lower than $DoNotRportGrowthOfLessThan GB." -ForegroundColor Green Write-Host " " if ($html.IsPresent) { Write-Host "Building HTML report as requested. Please wait..." -ForegroundColor Yellow $htmlParams = @{ Title = "Volume Capacity Report for FlashArrays" Body = Get-Date PreContent = "<p>Volume Capacity Report for FlashArrays $Arrays :</p>" PostContent = "<p>Query parameters specified as: 1) Ignore volumes created in the last $DaysSinceCommissioningToReportAfter days, 2) Volumes smaller than $($DoNotRportVolSmallerThan / 1GB) GB, and 3) Growth lower than $DoNotRportGrowthOfLessThan GB.</p>" } $htmlOutput | ConvertTo-Html @htmlParams | Out-File -FilePath .\FlashArrayVolumeGrowthReport.html | Out-Null } if ($csv.IsPresent) { Write-Host "Building CSV report as requested. Please wait..." -ForegroundColor Yellow $csvOutput | Export-Csv -NoTypeInformation -Path .\FlashArrayVolumeGrowthReport.csv } else { Write-Host " " Write-Host "No volumes on the array(s) match the requested criteria." Write-Host " " } } #endregion #region Get-FlashArrayRASession.ps1 function Get-FlashArrayRASession() { <# .SYNOPSIS Retrieves Remote Assist status from a FlashArray. .DESCRIPTION Retrieves Remote Assist status from a FlashArray as disabled or enabled in a loop every 30 seconds until stopped. .PARAMETER EndPopint Required. FlashArray IP address or FQDN. .INPUTS EndPoint IP or FQDN required. .OUTPUTS Outputs Remote Assst status. .EXAMPLE Get-FlashArrayRASession -EndPoint myarray.mydomain.com Retrieves the current Remote Assist status and continues check status every 30 seconds until stopped. .NOTES This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Position = 0, Mandatory = $True)][ValidateNotNullOrEmpty()][string] $EndPoint ) Get-Sdk1Module # Connect to FlashArray if (!($Creds)) { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials (Get-Credential) -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } else { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials $Creds -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } While ($true) { If ((Get-PfaRemoteAssistSession -Array $FlashArray).Status -eq 'disabled') { Set-PfaRemoteAssistStatus -Array $FlashArray -Action connect } else { Write-Warning "Remote Assist session is not active." Start-Sleep 30 } } } #endregion #region Restore-PfaProtectionGroupVolumeSnapshots function Restore-PfaPGroupVolumeSnapshots() { <# .SYNOPSIS Recover all of the volumes from a protection group (PGroup) snapshot. .DESCRIPTION This cmdlet will recover all of the volumes from a protection group (PGroup) snapshot in one operation. .PARAMETER ProtectionGroup Required. The name of the Protection Group. .PARAMETER SnapshotName Required. The name of the snapshot. .PARAMETER PGroupPrefix Required. The name of the Protection Group prefix. .PARAMETER Hostname Optional. The hostname to attach the snapshots to. .INPUTS None .OUTPUTS None .EXAMPLE Restore-PfaPGroupVolumeSnapshots –Array $array –ProtectionGroup "VOL1-PGroup" –SnapshotName "VOL1-PGroup.001" –Prefix TEST -Hostname HOST1 Restores protection group snapshots named "VOL1-PGroup.001" from PGroup "VOL1-PGroup", adds the prefix of "TEST" to the name, and attaches them to the host "HOST1" on array $array. .NOTES This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $Array, [Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $ProtectionGroup, [Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $SnapshotName, [Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $PGroupPrefix, [Parameter(Mandatory = $False)][ValidateNotNullOrEmpty()][string] $Hostname ) $PGroupVolumes = Get-PfaProtectionGroup -Array $Array -Name $ProtectionGroup -Session $Session $PGroupSnapshotsSet = $SnapshotName ForEach ($PGroupVolume in $PGroupVolumes) { For($i=0;$i -lt $PGroupVolume.volumes.Count;$i++) { $NewPGSnapshotVol = ($PGroupVolume.volumes[$i]).Replace($PGroupVolume.source+":",$Prefix+"-") $Source = ($PGroupSnapshotsSet+"."+$PGroupVolumes.volumes[$i]).Replace($PGroupVolume.source+":","") New-PfaVolume -Array $Array -VolumeName $NewPGSnapshotVol -Source $Source New-PfaHostVolumeConnection -Array $array -HostName $Hostname -VolumeName $NewPGSnapshotVol } } } #endregion #region New-FlashArrayPGroupVolumes function New-FlashArrayPGroupVolumes() { <# .SYNOPSIS Creates volumes to a new FlashArray Protection Group (PGroup). .DESCRIPTION This cmdlet will allow for the creation of multiple volumes and adding the created volumes to a new Protection Group (PGroup). The new volume names will default to "$PGroupPrefix-vol1", "PGroupPrefix-vol2" etc. .PARAMETER PGroupPrefix Required. The name of the Protection Group prefix to add volumes to. This parameter specifies the prefix of the PGroup name. The suffix defaults to "-PGroup". Example: -PGroupPrefix "database". The full PGroup name will be "database-PGroup". This PGroup will be created as new and must not already exist on the array. This prefix will also be used to uniquely name the volumes as they are created. .PARAMETER VolumeSizeGB Required. The size of the new volumes in Gigabytes (GB). .PARAMETER NumberOfVolumes Required. The number of volumes that are to be created. Each volume will be named "vol" with an ascending number following (ie. vol1, vol2, etc.). Each volume name will also contain the $PGroupPrefix variable as the name prefix. .INPUTS None .OUTPUTS None .EXAMPLE New-FlashArrayPGroupVolumes -PGroupPrefix "database" -VolumeSizeGB "200" -NumberOfVolumes "3" Creates 3-200GB volumes, named "database-vol1", "database-vol2", and "database-vol3". Each volume is added to the new Protection Group "database-PGroup". .NOTES This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $PGroupPrefix, [Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $VolumeSizeGB, [Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $NumberOfVolumes ) Get-Sdk1Module # Connect to FlashArray if (!($Creds)) { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials (Get-Credential) -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } else { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials $Creds -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } $Volumes = @() for ($i = 1; $i -le $NumberOfVolumes; $i++) { New-PfaVolume -Array $FlashArray -VolumeName "$PGroupPrefix-Vol$i" -Unit G -Size $VolumeSizeGB $Volumes += "$PGroupPrefix-Vol$i" } $Volumes -join "," New-PfaProtectionGroup -Array $FlashArray -Name "$PGGroupPrefix-PGroup" -Volumes $Volumes } #endregion #region Get-FlashArrayQuickCapacityStats function Get-FlashArrayQuickCapacityStats() { <# .SYNOPSIS Quick way to retrieve FlashArray capacity statistics. .DESCRIPTION Retrieves high level capcity statistics from a FlashArray. .PARAMETER Names Required. A single name or array of names, comma seperated, of arrays to show acapacity information. .INPUTS Single or multiple FlashArray IP addresses or FQDNs. .OUTPUTS Outputs array capacity information .EXAMPLE Get-FlashArrayQuickCapacityStats -Names 'array1, array2' Retrieves capacity statistic information from FlashArray's array1 and array2. .NOTES The arrays supplied in the "Names" parameter must use the same credentials for access. This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Position = 0, Mandatory = $True)][ValidateNotNullOrEmpty()][string] $Names ) Get-Sdk1Module if (!($Creds)) { $arrays = @() foreach ($name in $names) { try { $arrays += New-PfaArray -EndPoint $name -Credentials $cred -IgnoreCertificateError -Verbose -ErrorAction Stop } catch { Write-Output "Error accessing $name : $_" } } } else { $arrays = @() foreach ($name in $names) { try { $arrays += New-PfaArray -EndPoint $name -Credentials $Creds -IgnoreCertificateError -Verbose -ErrorAction Stop } catch { Write-Output "Error accessing $name : $_" } } } $spacemetrics = $arrays | Get-PfaArraySpaceMetrics -Verbose $spacemetrics = $spacemetrics | Select-Object *, @{N = "expvolumes"; E = { $_.volumes * $_.data_reduction } }, @{N = "provisioned"; E = { ($_.total - $_.system) / (1 - $_.thin_provisioning) * $_.data_reduction } } $totalcapacity = ($spacemetrics | Measure-Object capacity -Sum).Sum $totalvolumes = ($spacemetrics | Measure-Object volumes -Sum).Sum $totalvolumes_beforereduction = ($spacemetrics | Measure-Object expvolumes -Sum).Sum $totalprovisioned = ($spacemetrics | Measure-Object provisioned -Sum).Sum $1TB = 1024 * 1024 * 1024 * 1024 $date = Get-Date Write-Host "On $($spacemetrics.Count) Pure FlashArrays, there is $([int]($totalcapacity/$1TB)) TB of capacity; $([int]($totalvolumes/$1TB)) TB written, reduced from $([int]($totalvolumes_beforereduction/$1TB)) TB. Total provisioned: $([int]($totalprovisioned/$1TB)) TB." Write-Host "Data collected on $date" } #endregion #region Get-HostVolumeInfo function Get-AllHostVolumeInfo() { <# .SYNOPSIS Retrieves Host Volume information from FlashArray. .DESCRIPTION Retrieves Host Volume information including volumes attributes from a FlashArray. .INPUTS EndPoint IP or FQDN required .OUTPUTS Outputs Host volume information .EXAMPLE Get-HostVolumeinfo -EndPoint myarray.mydomain.com Retrieves Host Volume information from the FlashArray myarray.mydomain.com. .NOTES This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Position=0,Mandatory=$True)][ValidateNotNullOrEmpty()][string] $EndPoint ) Get-Sdk1Module # Connect to FlashArray if (!($Creds)) { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials (Get-Credential) -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } else { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials $Creds -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } $hostNames = Get-PfaHosts -array $FlashArray | Select-Object -Property name foreach ($hostName in $hostnames) { $hostvols = Get-PfaHostVolumeConnections -Array $FlashArray -Name $hostName.name $hostvols | Format-Table -AutoSize; ForEach-Object -InputObject $hostvols { $vols = $_.vol; $volattribs = @(); if ($_.vol.count -gt 1) { for ($i = 0; $i -lt $_.vol.count; $i++) { $volattrib = Get-PfaVolume -Array $FlashArray -Name $vols[$i]; $volattribs += $volattrib; } $volattribs | Select-Object name, created, source, serial, @{Name = "Size(GB)"; Expression = { $_.size / 1GB } } | Format-Table -AutoSize; } else { Get-PfaVolume -Array $FlashArray -Name $_.vol | Select-Object name, created, source, serial, @{Name = "Size(GB)"; Expression = { $_.size / 1GB } } | Format-Table -AutoSize; } } } } #endregion #region Get-FlashArraySerialNumbers function Get-FlashArraySerialNumbers() { <# .SYNOPSIS Retrieves FlashArray volume serial numbers connected to the host. .DESCRIPTION Cmdlet queries WMI on the localhost to retrieve the disks that are associated to Pure FlashArrays. .INPUTS EndPoint IP or FQDN required. .OUTPUTS Outputs serial numbers of FlashArrays devices. .EXAMPLE Get-FlashArraySerialNumbers Returns serial number information on Pure FlashArray disk devices connected to the host. #> $AllDevices = Get-WmiObject -Class Win32_DiskDrive -Namespace 'root\CIMV2' ForEach ($Device in $AllDevices) { if ($Device.Model -like 'PURE FlashArray*') { @{ Name = $Device.Name; Caption = $Device.Caption; Index = $Device.Index; SerialNo = $Device.SerialNumber; } } } } #endregion #region New-HypervClusterVolumeReport function New-HypervClusterVolumeReport() { <# .SYNOPSIS Creates a Excel report on volumes connected to a Hyper-V cluster. .DESCRIPTION This creates separate CSV files for VM, Windows Hosts, and FlashArray information that is part of a HyperV cluster. It then takes that output and places it into a an Excel workbook that contains sheets for each CSV file. .PARAMETER VmCsvFileName Optional. Defaults to VMs.csv. .PARAMETER WinCsvFileName Optional. defaults to WindowsHosts.csv. .PARAMETER PfaCsvFileName Optional. defaults to FlashArrays.csv. .PARAMETER ExcelFile Optional. defaults to HypervClusterReport.xlsx. .INPUTS Endpoint is mandatory. VM, Win, and PFA csv file names are optional. .OUTPUTS Outputs individual CSV files and creates an Excel workbook that is built using the required PowerShell module ImportExcel, created by Douglas Finke. .EXAMPLE New-HypervClusterVolumeReport -EndPoint myarray -VmCsvName myVMs.csv -WinCsvName myWinHosts.csv -PfaCsvName myFlashArray.csv -ExcelFile myExcelFile This will create three separate CSV files with HyperV cluster information and incorporate them into a single Excel workbook. .NOTES This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Position = 0, Mandatory = $True)][ValidateNotNullOrEmpty()][string] $EndPoint, [Parameter(Mandatory=$False)][string]$VmCsvFileName = "VMs.csv", [Parameter(Mandatory=$False)][string]$WinCsvFileName = "WindowsHosts.csv", [Parameter(Mandatory=$False)][string]$PfaCsvFileName = "FlashArrays.csv", [Parameter(Mandatory=$False)][string]$ExcelFile = "HypervClusterReport.xlxs" ) try { Get-ElevatedStatus Get-HypervStatus ## Check for modules & features Write-Host "Checking, installing, and importing prerequisite modules." [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 $modulesArray = @( "PureStoragePowerShellSDK", "ImportExcel" ) ForEach ($mod in $modulesArray) { If (Get-Module -ListAvailable $mod) { Continue } Else { Install-Module $mod -Force -ErrorAction 'SilentlyContinue' Import-Module $mod -ErrorAction 'SilentlyContinue' } } Write-Host "Checking and installing prerequisite Windows Features." $osVer = (Get-ComputerInfo).WindowsProductName $featuresArray = @( "hyper-v-powershell", "rsat-clustering-powershell" ) ForEach ($fea in $featuresArray) { If (Get-WindowsFeature $fea | Select-Object -ExpandProperty installed) { Continue } Else { If ($osVer -le "2008") { Add-WindowsFeature -Name $fea -Force -ErrorAction 'SilentlyContinue' } Else { Install-WindowsFeature -Name $fea -Force -ErrorAction 'SilentlyContinue' } } } # Connect to FlashArray if (!($Creds)) { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials (Get-Credential) -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } else { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials $Creds -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } ## Get a list of VMs - VM Sheet $vmList = Get-VM -ComputerName (Get-ClusterNode) $vmList | ForEach-Object { $vmState = $_.state; $vmName = $_.name; Write-Output $_; } | ForEach-Object { Get-VHD -ComputerName $_.ComputerName -VMId $_.VMId } | Select-Object -Property path, @{n = 'VMName'; e = { $vmName } }, @{n = 'VMState'; e = { $vmState } }, computername, vhdtype, @{Label = 'Size(GB)'; expression = { [Math]::Round($_.size / 1gb, 2) -as [int] } }, @{label = 'SizeOnDisk(GB)'; expression = { [Math]::Round($_.filesize / 1gb, 2) -as [int] } } | Export-Csv $VmCsvFileName Import-Csv $VmCsvFileName | Export-Excel -Path $ExcelFile -AutoSize -WorkSheetname 'VMs' ## Get windows physical disks - Windows Host Sheet Get-ClusterNode | ForEach-Object { Get-WmiObject Win32_Volume -Filter "DriveType='3'" -ComputerName $_ | ForEach-Object { [pscustomobject][ordered]@{ Server = $_.__Server Label = $_.Label Name = $_.Name TotalSize_GB = ([Math]::Round($_.Capacity / 1GB, 2)) FreeSpace_GB = ([Math]::Round($_.FreeSpace / 1GB, 2)) SizeOnDisk_GB = ([Math]::Round(($_.Capacity - $_.FreeSpace) / 1GB, 2)) } } } | Export-Csv $WinCsvFileName -NoTypeInformation Import-Csv $WinCsvFileName | Export-Excel -Path $ExcelFile -AutoSize -WorkSheetname 'Windows Hosts' ## Get Pure FlashArray volumes and space - FlashArray Sheet Function GetSerial { [Cmdletbinding()] Param( [Parameter(ValueFromPipeline)] $findserial) $GetVol = Get-Volume -FilePath $findserial | Select-Object -ExpandProperty path $GetDiskNum = Get-Partition | Where-Object -Property accesspaths -CContains $getvol | Select-Object disknumber Get-Disk -Number $getdisknum.disknumber | Select-Object serialnumber } $pathQ = $VmList | ForEach-Object { Get-VHD -ComputerName $_.ComputerName -VMId $_.VMId } | Select-Object -ExpandProperty path $serials = GetSerial { $pathQ } -ErrorAction SilentlyContinue ## FlashArray volumes $pureVols = Get-PfaVolumes -Array $FlashArray | Where-Object { $serials.serialnumber -contains $_.serial } | ForEach-Object { Get-PfaVolumeSpaceMetrics -Array $FlashArray -VolumeName $_.name } | Select-Object name, size, total, data_reduction $pureVols | Select-Object Name, @{Name = "Size(GB)"; Expression = { [math]::round($_.size / 1gb, 2) } }, @{Name = "SizeOnDisk(GB)"; Expression = { [math]::round($_.total / 1gb, 2) } }, @{Name = "DataReduction"; Expression = { [math]::round($_.data_reduction, 2) } } | Export-Csv $PfaCsvFileName -NoTypeInformation Import-Csv $PfaCsvFileName | Export-Excel -Path $ExcelFile -AutoSize -WorkSheetname 'FlashArrays' } catch { Write-Host "There was a problem running this cmdlet. Please try again or submit an Issue in the GitHub Repository." } } #endregion #region Sync-FlashArrayHosts function Sync-FlashArrayHosts() { <# .SYNOPSIS Synchronizes the hosts amd host protocols between two FlashArrays. .DESCRIPTION This cmdlet will retrieve the current hosts from the Source array and create them on the target array. It will also add the FC (WWN) or iSCSI (iqn) settings for each host on the Target array. .PARAMETER SourceArray Required. FQDN or IP address of the source FlashArray. .PARAMETER TargetArray Required. FQDN or IP address of the source FlashArray. .PARAMETER Protocol Required. 'FC' for Fibre Channel WWNs or 'iSCSI' for iSCSI IQNs. .INPUTS None .OUTPUTS None .EXAMPLE Sync-FlashArraysHosts -SourceArray mySourceArray -TargetArray myTargetArray -Protocol FC Synchronizes the hosts and hosts FC WWNs from the mySourceArray to the myTargetArray. .NOTES This cmdlet cannot utilize the global $Creds variable as it requires two logins to two separate arrays. #> [CmdletBinding()] Param ( [Parameter(Position=0,Mandatory=$True)][ValidateNotNullOrEmpty()][string] $SourceArray, [Parameter(Position=1,Mandatory=$True)][ValidateNotNullOrEmpty()][string]$TargetArray, [Parameter(Mandatory = $True)][ValidateSet("iSCSI", "FC")][string]$Protocol ) $FlashArray1 = New-PfaArray -EndPoint $SourceArray -Credentials (Get-Credential) -IgnoreCertificateError $FlashArray2 = New-PfaArray -EndPoint $TargetArray -Credentials (Get-Credential) -IgnoreCertificateError Get-PfaHosts -Array $FlashArray1 | New-PfaHost -Array $FlashArray2 Get-PfaHostGroups -Array $FlashArray1 | New-PfaHostGroup -Array $FlashArray2 $fa1Hosts = Get-PfaHosts -Array $FlashArray1 switch ($Procotol) { 'iSCSI' { foreach ($fa1Host in $fa1Hosts) { Add-PfaHostIqns -Array $FlashArray2 -AddIqnList $fa1Host.iqn -Name $fa1Host.name } } 'FC' { foreach ($fa1Host in $fa1Hosts) { Add-PfaHostWwns -Array $FlashArray2 -AddWwnList $fa1Host.wwn -Name $fa1Host.name } } } } #endregion #region Get-FlashArrayStaleSnapshots function Get-FlashArrayStaleSnapshots() { <# .SYNOPSIS Retrieves aged snapshots and allows for Deletion and Eradication of such snapshots. .DESCRIPTION This cmdlet will retrieve all snapshots that are beyond the specified SnapAgeThreshold. It allows for the parameters of Delete and Eradicate, and if set to $true, it will delete and eradicate the snapshots returned. It allows for the parameter of Confirm, and if set to $true, it will prompt before deletion and/or eradication of the snapshots. Snapshots must be deleted before they can be eradicated. .PARAMETER EndPoint Required. Endpoint is the FlashArray IP or FQDN. .PARAMETER SnapAgeThreshold Required. SnapAgeThreshold is the number of days from the current date. Delete. Confirm, and Eradicate are optional. .PARAMETER Delete Optional. If set to $true, delete the snapshots. .PARAMETER Eradicate Optional. If set to $true, eradicate the deleted snapshots (snapshot must be flagged as deleted). .PARAMETER Confirm Optional. If set to $true, provide user confirmation for Deletion or Eradication of the snapshots. .OUTPUTS Returns a listing of snapshots that are beyond the specified threshold and displays final results. .EXAMPLE Get-FlashArrayStaleSnapshots -EndPoint myArray -SnapAgeThreshold 30 Returns all snapshots that are older than 30 days from the current date. .EXAMPLE Get-FlashArrayStaleSnapshots -EndPoint myArray -SnapAgeThreshold 30 -Delete:$true -Eradicate:$true -Confirm:$false Returns all snapshots that are older than 30 days from the current date, deletes and eradicates them without confirmation. .NOTES This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Position = 0, Mandatory = $True)][ValidateNotNullOrEmpty()][string] $EndPoint, [Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $SnapAgeThreshold, [switch]$Delete, [switch]$Eradicate, [switch]$Confirm ) # Establish variables, Pure time format, and gather current time. $1GB = 1024 * 1024 * 1024 $CurrentTime = Get-Date $DateTimeFormat = 'yyyy-MM-ddTHH:mm:ssZ' # Connect to FlashArray if (!($Creds)) { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials (Get-Credential) -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } else { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials $Creds -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } # Establish and reset counter variables. [int]$SpaceConsumedTotal = 0 [int]$SnapNumberTotal = 0 $Timespan = $null [int]$SpaceConsumed = 0 [int]$SnapNumber = 0 try { $Snapshots = Get-PfaAllVolumeSnapshots -Array $FlashArray Write-Output "" Write-Output "=========================================================================" Write-Output " $EndPoint " Write-Output "=========================================================================" } catch { Write-Host "Error processing $($EndPoint)." } #Get all snapshots and compute the age of them. $DateTimeFormat variable taken from above; this is needed in order to parse Pure time format. foreach ($Snapshot in $Snapshots) { $SnapshotDateTime = $Snapshot.created $SnapshotDateTime = [datetime]::ParseExact($SnapshotDateTime, $DateTimeFormat, $null) $Timespan = New-TimeSpan -Start $SnapshotDateTime -End $CurrentTime $SnapAge = $($Timespan.Days + $($Timespan.Hours / 24) + $($Timespan.Minutes / 1440)) $SnapAge = [math]::Round($SnapAge, 2) #Find snaps older than given threshold and output with formatted data. if ($SnapAge -gt $SnapAgeThreshold) { $SnapStats = Get-PfaSnapshotSpaceMetrics -Array $FlashArray -Name $Snapshot.name $SnapSize = [math]::round($($SnapStats.total / $1GB), 2) $SpaceConsumed = $SpaceConsumed + $SnapSize $SnapNumber = $SnapNumber + 1 #Delete snapshots if ($Delete -eq $true -and $Eradicate -eq $true) { Remove-PfaVolumeOrSnapshot -Array $FlashArray -Name $Snapshot.name -Eradicate -Confirm $Confirm Write-Output "Eradicating $($Snapshot.name) - $($SnapSize) GB." } elseif ($Delete -eq $true) { Remove-PfaVolumeOrSnapshot -Array $FlashArray -Name $Snapshot.name -Confirm $Confirm Write-Output "Deleting $($Snapshot.name) - $($SnapSize) GB." } else { Write-Output $Snapshot.name Write-Output " $SnapSize GB" Write-Output " $SnapAge days" } } } #Display final message for array results. Write-Output "There are $($SnapNumber) snapshot(s) older than $($SnapAgeThreshold) days consuming a total of $($SpaceConsumed) GB on the array." $SnapNumberTotal = $SnapNumberTotal + $SnapNumber $SpaceConsumedTotal = $SpaceConsumedTotal + $SpaceConsumed } Write-Output "There are $($SnapNumberTotal) snapshot(s) older than $($SnapAgeThreshold) days consuming a total of $($SpaceConsumedTotal) GB." #endregion #region Get-FlashArrayDisconnectedVolumes Function Get-FlashArrayDisconnectedVolumes() { <# .SYNOPSIS Retrieves disconnected volume information for a FlashArray. .DESCRIPTION This cmdlet will retrieve information for volumes that are ina disconnected state for a FlashArray. .PARAMETER EndPoint Required. FQDN or IP address of the FlashArray. .INPUTS None .OUTPUTS Disconnected volume information is displayed. .EXAMPLE Get-FlashArrayDisconnectedVolumes -EndPoint myArray .NOTES This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Position = 0, Mandatory = $True)][ValidateNotNullOrEmpty()][string] $EndPoint ) #Math values $1GB = 1024 * 1024 * 1024 $1TB = 1024 * 1024 * 1024 * 1024 Get-Sdk1Module # Connect to FlashArray if (!($Creds)) { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials (Get-Credential) -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } else { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials $Creds -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } $faSpace = Get-PfaArraySpaceMetrics -Array $FlashArray $Hosts = Get-PfaHosts -Array $FlashArray ForEach ($HostVol in $Hosts) { $ConnectedVolumes += @(Get-PfaHostVolumeConnections -Array $FlashArray -Name $HostVol.name | Select-Object vol) } #Get all volumes $AllVolumes = @(Get-PfaVolumes -Array $FlashArray | Select-Object name) $hash = @{} foreach ($i in $ConnectedVolumes) { $Vol = $i.vol $hash.Add($z, $Vol) $z++ } foreach ($j in $AllVolumes) { if (!$hash.ContainsValue($j.name)) { $DisconnectedVolumes += $j.name } else { $hash.Remove($j.name) } } Write-Output "" Write-Output "`t$($FlashArray) - $([math]::Round((($faSpace.total)/$1TB),2)) TB/$([math]::Round($(($faSpace.capacity)/$1TB),2)) TB ($([math]::Round((($faSpace.total)*100)/$($faSpace.capacity),2))% Full)`n" Write-Output "===================================================" Write-Output "`t`t Disconnected Volumes ($($DisconnectedVolumes.Count-1) of $($hash.Count))" Write-Output "===================================================" #If the array has a disconnected volume, gather volume space metrics if (($DisconnectedVolumes.Count) -gt 1 ) { foreach ($DisconnectedVolume in $DisconnectedVolumes) { if ($null -ne $DisconnectedVolume) { $VolDetails = Get-PfaVolumeSpaceMetrics -array $FlashArray -VolumeName $DisconnectedVolume $GetVol = Get-PfaVolume -Array $FlashArray -Name $DisconnectedVolume $VolSerial = $GetVol.serial $Space = ($($VolDetails.volumes / $1GB)) $Space = [math]::Round($Space, 3) $Total = [math]::Round(($($VolDetails.size / $1TB)), 3) $Reduction = $VolDetails.data_reduction $Reduction = [math]::Round($Reduction, 0) Write-Output "$($DisconnectedVolume) `n`t $($VolSerial) `n`t $($Space) GB Consumed `n`t $($Total) TB Provisioned `n`t $($Reduction):1 Reduction `n" | Format-List $PotentialSpaceSavings = $PotentialSpaceSavings + $($VolDetails.volumes / $1GB) } } Write-Output "Potential space savings for $($faEndPoint) is $([math]::Round($PotentialSpaceSavings,3)) GB." } else { Write-Output "No Disconnected Volumes found." } } #endregion #region Get-FlashArraySpace Function Get-FlashArraySpace() { <# .SYNOPSIS Retrieves the space used and available for a FlashArray. .DESCRIPTION This cmdlet will return various array space metrics for the given FlashArray. .PARAMETER EndPoint Required. FQDN or IP address of the FlashArray. .INPUTS None .OUTPUTS Various FlashArray space used and available information. .EXAMPLE Get-FlashArraySpace -EndPoint myArray .NOTES This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Position = 0, Mandatory = $True)][ValidateNotNullOrEmpty()][string] $EndPoint ) Get-Sdk1Module #Math values # [double]$1GB = 1024 * 1024 * 1024 [double]$1TB = 1024 * 1024 * 1024 * 1024 # Connect to FlashArray if (!($Creds)) { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials (Get-Credential) -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } else { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials $Creds -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } $ArraySpace = @() $faSpace = Get-PfaArraySpaceMetrics -Array $FlashArray $faSpace | Select-Object @{name = 'Hostname'; expr = { $_.Hostname } }, @{name = 'Percent Used'; expr = { ($faSpace.total / $faSpace.capacity).ToString("P") } }, @{name = 'Capacity Used (TB)'; expr = { ([math]::Round([double]($_.Total / $1TB), 2)) } }, @{name = 'Capacity Free (TB)'; expr = { ([math]::Round((($faSpace.capacity - $faSpace.total) / $1TB), 2)) } }, @{name = 'Volume Space (TB)'; expr = { ([math]::Round([double]($_.Volumes / $1TB), 2)) } }, @{name = 'Shared Space (TB)'; expr = { ([math]::Round([double]($_.Shared_Space / $1TB), 2)) } }, @{name = 'Snapshot Space (TB)'; expr = { ([math]::Round([double]($_.Snapshots / $1TB), 2)) } }, @{name = 'System Space (TB)'; expr = { ([math]::Round([double]($_.System / $1TB), 2)) } }, @{name = 'Total Storage (TB)'; expr = { ([math]::Round([double]($_.Capacity / $1TB), 2)) } }, @{name = 'Data Reduction'; expr = { [math]::Round($_.Data_Reduction, 2) } }, @{name = 'Thin Provisioning'; expr = { [math]::Round($_.Thin_Provisioning * 10, 2) } } $ArraySpace | Format-Table -AutoSize } #endregion #region Get-FlashArrayPgroupsConfig Function Get-FlashArrayPgroupsConfig() { <# .SYNOPSIS Retrieves Protection Group (PGroup) information for the FlashArray. .DESCRIPTION Retrieves Protection Group (PGroup) information for the FlashArray. .PARAMETER EndPoint Required. FQDN or IP address of the FlashArray. .INPUTS None .OUTPUTS Protection Group information is displayed. .EXAMPLE Get-FlashArrayPgroupsConfig -EndPoint myArrayg .NOTES This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Position = 0, Mandatory = $True)][ValidateNotNullOrEmpty()][string] $EndPoint ) Get-Sdk1Module # Connect to FlashArray if (!($Creds)) { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials (Get-Credential) -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } else { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials $Creds -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } $ProtectionGroups = Get-PfaProtectionGroups -Array $FlashArray $ErrorActionPreference = "Continue" foreach ($ProtectionGroup in $ProtectionGroups) { $RetentionDetails = Get-PfaProtectionGroupRetention -Array $FlashArray -ProtectionGroupName $ProtectionGroup.name $ScheduleDetails = Get-PfaProtectionGroupSchedule -Array $FlashArray -ProtectionGroupName $ProtectionGroup.name if ($ScheduleDetails.replicate_enabled -eq "True") { Write-Host "========================================================================================" Write-Host " $($ProtectionGroup.name) " -ForegroundColor Green Write-Host "========================================================================================" Write-Host "Host Groups: $($ProtectionGroup.hgroups)" Write-Host "Hosts: $($ProtectionGroup.hosts)" Write-Host "Volumes: $($ProtectionGroup.volumes)" Write-Host "" Write-Host "A snapshot is taken and replicated every $($ScheduleDetails.replicate_frequency/60) minutes." Write-Host "$(($RetentionDetails.target_all_for/60)/($ScheduleDetails.replicate_frequency/60)) snapshot(s) are kept on the target for $($RetentionDetails.target_all_for/60) minutes." Write-Host "$($RetentionDetails.target_per_day) additional snapshot(s) are kept for $($RetentionDetails.target_days) more days." } else { Write-Host "==========================================================================================" Write-Host " $($ProtectionGroup.name) " -ForegroundColor Yellow Write-Host "==========================================================================================" Write-Host "Host Groups: $($ProtectionGroup.hgroups)" Write-Host "Hosts: $($ProtectionGroup.hosts)" Write-Host "Volumes: $($ProtectionGroup.volumes)" Write-Host "" Write-Host "$($ProtectionGroup.name) is disabled." -ForegroundColor Yellow Write-Host "" } } } #endregion #region Remove-FlashArrayPendingDeletes Function Remove-FlashArrayPendingDeletes() { <# .SYNOPSIS Reports on pending FlashArray Volume and Snapshots deletions and optionally Eradicates them. .DESCRIPTION This cmdlet will return information on any volumes or volume snapshots that are pending eradication after deletion and optionally prompt for eradication of those objects. The user will be prompted for confirmation. .PARAMETER EndPoint Required. FQDN or IP address of the FlashArray. .INPUTS None .OUTPUTS Volume and volume snapshots awaiting eradication. .EXAMPLE Remove-FlashArrayPendingDelete -EndPoint myArray .NOTES This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Position = 0, Mandatory = $True)][ValidateNotNullOrEmpty()][string] $EndPoint ) Get-Sdk1Module # Connect to FlashArray if (!($Creds)) { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials (Get-Credential) -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } else { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials $Creds -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } $pendingvolumelist = Get-PfaPendingDeleteVolumes -Array $FlashArray $pendingsnaplist = Get-PfaPendingDeleteVolumeSnapshots -Array $FlashArray if (!pendingvolumelist) { Write-Host "No volumes are pending delete." } else { Write-Host "Listing PENDING volumes and snapshots that exist on the array." Write-Host "======================================================================================================================`n" Write-Host "Volumes in PENDING state" foreach ($volume in $pendingvolumelist) { Write-Host " -" $volume.name } } if (!pendingsnaplist) { Write-Host "No snapshots are pending delete." break } else { Write-Host "Snapshots in PENDING state" foreach ($volumesnap in $pendingsnaplist) { Write-Host " -" $volumesnap.name } } $confirmstring = "proceed" Write-Host "Please confirm that you wish to perform an unrecoverable operation." Write-Host "======================================================================================================================`n" Write-Host "Please type the word $confirmstring to eradicate the pending deleted volumes and snapshots." Write-Host "The action will initiate immediately upon inputting $confirmstring . This operation CANNOT be undone." -fore yellow $user_response = Read-Host "`t" if (($user_response.ToLower() -ne $confirmstring.ToLower())) { Write-Host "Your input was [$user_response]. It was not the word $confirmstring. Exiting." exit } Write-Host "Eradicating PENDING volumes and snapshots." Write-Host "======================================================================================================================`n" foreach ($volume in $pendingvolumelist) { Write-Host " -" $volume.name " eradicated." Remove-PfaVolumeOrSnapshot -Array $FlashArray -Name $volume.name -Eradicate } foreach ($volumesnap in $pendingsnaplist) { Write-Host " -" $volumesnap.name " eradicated" Remove-PfaVolumeOrSnapshot -Array $FlashArray -Name $volumesnap.name -Eradicate } Write-Host "Volume and Snapshot pending deletes have been eradicated." } #endregion #region Get-FlashArrayConfig Function Get-FlashArrayConfig() { <# .SYNOPSIS Retrieves and outputs to a file the configuration of the FlashArray. .DESCRIPTION This cmdlet will run Purity CLI commands to retrieve the base configuration of a FlashArray and output it to a file. This file is formatted for the CLI, not necessarily human-readable. .PARAMETER EndPoint Required. FQDN or IP address of the FlashArray. .PARAMETER OutFile Optional. The file path and filename that will contain the output. if not specified, the default is the current folder\Array_Config.txt. .PARAMETER ArrayName Optional. The FlashArray name to use in the output. Defaults to $EndPoint. .INPUTS None .OUTPUTS Configuration file. .EXAMPLE Get-FlashArray -EndPoint myArray -ArrayName Array100 Retrieves the configuration for a FlashArray and stores it in the current path as Array100_config.txt. .NOTES This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Position = 0, Mandatory = $True)][ValidateNotNullOrEmpty()][string] $EndPoint, [Parameter(Mandatory = $False)][string] $OutFile = "Array_Config.txt", [Parameter(Mandatory = $False)][string] $ArrayName ) Get-Sdk1Module $GetDate = Get-Date # Connect to FlashArray if (!($Creds)) { $Creds = Get-Credential } If (!$ArrayName) { $ArrayName = $EndPoint } "==================================================================================" | Out-File -FilePath $OutFile -Append "FlashArray Configuration Export for: $($ArrayName)" | Out-File -FilePath $OutFile -Append "Date: $($GetDate)" | Out-File -FilePath $OutFile -Append "==================================================================================`n" | Out-File -FilePath $OutFile -Append $InvokeCommand_pureconfig_list_object = "pureconfig list --object" $InvokeCommand_pureconfig_list_system = "pureconfig list --system" Write-Host "Retrieving FlashArray OBJECT configuration export (host-pod-volume-hgroup-connection)..." "FlashArray OBJECT configuration export (host-pod-volume-hgroup-connection)..." | Out-File -FilePath $OutFile -Append " " | Out-File -FilePath $OutFile -Append New-PfaCLICommand -EndPoint $EndPoint -Credentials $Creds -CommandText $InvokeCommand_pureconfig_list_object | Out-File -FilePath $OutFile -Append Write-Host "Retrieving FlashArray SYSTEM configuration export (array-network-alert-support)..." "FlashArray SYSTEM configuration export (array-network-alert-support):" | Out-File -FilePath $OutFile -Append " " | Out-File -FilePath $OutFile -Append New-PfaCLICommand -EndPoint $EndPoint -Credentials $Creds -CommandText $InvokeCommand_pureconfig_list_system | Out-File -FilePath $OutFile -Append Write-Host "FlashArray configuration file located in $Outfile." -ForegroundColor Green } #endregion #region Get-FlashArrayHierarchy Function Get-FlashArrayHierarchy() { <# .SYNOPSIS Displays array hierarchy in relation to hosts and/or volumes. .DESCRIPTION This cmdlet will display the hierarchy from a FlashArray of hosts and volumes. The output is to the console in text. .PARAMETER EndPoint Required. FQDN or IP address of the FlashArray. .INPUTS None .OUTPUTS FlashArray host and/or volume hierarchy. .EXAMPLE Get-FlashArrayHierarchy -EndPoint myArray .NOTES This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Position = 0, Mandatory = $True)][ValidateNotNullOrEmpty()][string] $EndPoint ) Get-Sdk1Module # Connect to FlashArray if (!($Creds)) { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials (Get-Credential) -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } else { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials $Creds -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } $Initiators = Get-PfaHosts -Array $FlashArray $Volumes = Get-PfaVolumes -Array $FlashArray $1GB = 1024 * 1024 * 1024 Write-Host "" Write-Host "Please indicate if you would like to see the hierarchy by host." -ForegroundColor Cyan Write-Host "This process will take a couple minutes, but is useful to find disconnected hosts or hosts with no replication group." -ForegroundColor Cyan Write-Host "Otherwise, the hierarchy will be shown at the volume level." -ForegroundColor Cyan Write-Host "" $ByHost = Read-Host -Prompt "Do you want to view hierarchy by individual hosts? (Y/N)" Write-Host "" Write-Host "================================================================" Write-Host " $EndPoint Hierarchy" Write-Host "================================================================" #If else statement to control hierarchy displayed by host or by volume If ($ByHost -eq "Y" -or $ByHost -eq "y") { #Start at host level ForEach ($Initiator in $Initiators) { Write-Host " [H] $($Initiator.name)" $Volumes = Get-PfaHostVolumeConnections -Array $FlashArray -Name $Initiator.name If (!$Volumes) { Write-Host ' [No volumes connected]' -ForegroundColor Yellow } Else { #Start at volume level ForEach ($Volume in $Volumes) { #Reset variables $Snapshots = Get-PfaVolumeSnapshots -Array $FlashArray -VolumeName $Volume.vol $SnapshotDetails = Get-PfaSnapshotSpaceMetrics -Array $FlashArray -name $Volume.vol $SpaceConsumed = 0 #Change value for snapshot count threshold If ($Snapshots.Count -eq 0) { Write-Host " [V]$($Volume.vol)" -ForegroundColor Yellow Write-Host " There are no associated snapshots with this volume." -ForegroundColor Red } Else { Write-Host " [V]$($Volume.vol)" -ForegroundColor Green } #Space consumed computation for each volume ForEach ($SnapshotDetail in $SnapshotDetails) { $SpaceConsumed = $SpaceConsumed + $SnapshotDetail.total } #Change value for snapshot count threshold ForEach ($Snapshot in $Snapshots) { If ($Snapshots.Count -gt 1) { Write-Host " [S] $($Snapshot.name)" -ForegroundColor Yellow } Else { Write-Host " [S] $($Snapshot.name)" -ForegroundColor Green } } #Display space consumed if snapshot count exceeds threshold If ($Snapshots.Count -gt 1) { Write-Host " There are $($Snapshots.Count) snapshots associated with this volume consuming a total of $([math]::Round($SpaceConsumed/$1GB,2)) GB on the array." } } } } } #If user does not want hierarchy at host level Else { #Start volume level ForEach ($Volume in $Volumes) { #Reset variables $Snapshots = Get-PfaVolumeSnapshots -Array $FlashArray -VolumeName $Volume.name $SnapshotDetails = Get-PfaSnapshotSpaceMetrics -Array $FlashArray -name $Volume.name $SpaceConsumed = 0 #Change value for snapshot count threshold If ($Snapshots.Count -eq 0) { Write-Host " [V]$($Volume.name)" -ForegroundColor Yellow Write-Host " There are no associated snapshots with this volume." -ForegroundColor Red } Else { Write-Host " [V]$($Volume.name)" -ForegroundColor Green } #Space Consumed computation for each volume ForEach ($SnapshotDetail in $SnapshotDetails) { $SpaceConsumed = $SpaceConsumed + $SnapshotDetail.total } #Change value for snapshot count threshold ForEach ($Snapshot in $Snapshots) { If ($Snapshots.Count -gt 1) { Write-Host " [S] $($Snapshot.name)" -ForegroundColor Yellow } Else { Write-Host " [S] $($Snapshot.name)" -ForegroundColor Green } } #Display space consumed if snapshot count threshold is exceeded If ($Snapshots.Count -gt 1) { Write-Host "There are $($Snapshots.Count) snapshots associated with this volume consuming a total of $([math]::Round($SpaceConsumed/$1GB,2)) GB on the array." } } } } #endregion #region New-FlashArrayExcelReport Function New-FlashArrayExcelReport() { <# .SYNOPSIS Create an Excel workbook that contains FlashArray Information for each array specified in a file. .DESCRIPTION This cmdlet will retrieve array, volume, host, pod, and snapshot capacity information from all of the FlashArrays listed in the txt file and output it to an Excel spreadsheet. Each arrays will have it's own filename and the current date and time will be added to the filenames. This cmdlet requires the PowerShell module ImportExcel - https://www.powershellgallery.com/packages/ImportExcel .PARAMETER Username Optional. Required if $Creds variable is not used. Full username to login to the arrays. This currently must be the same username for all arrays. This user must have the array-admin role. If not supplied, the $Creds variable must exist in the session and be set by Get-Credential. .PARAMETER PassFilePath Optional. Required if $Creds variable is not used. Full path and filename that contains the plaintext password for the $username. The password will be encrypted when passing to the array. If not supplied, the $Creds variable must exist in the session and be set by Get-Credential. .PARAMETER ArrayList Required. Full path to file name that contains IP addresses or FQDN's for all FlashAarays being reported on. This is a plain text file with each array on a new line. .PARAMETER OutPath Optional. Full directory path (with no trailing "\") for Excel workbook, formatted as DRIVE_LETTER:\folder_name. If not specified, the files will be placed in the %temp% folder. .PARAMETER snapLimit Optional. This will limit the total number of Volume snapshots returned from the arrays. This will be beneficial when working with a large number of snapshots. With a large number of snapshots, and not setting this limit, the worksheet creation time is increased considerably. .INPUTS None .OUTPUTS An Excel workbook .EXAMPLE New-FlashArrayExcelReport -Username "pureuser" -PassFilePath "c:\temp\creds.txt" -ArrayList "c:\temp\arrays.txt" Creates an Excel file in the the %temp% folder for each array in the Arrays.txt file, using the username and plaintext password file supplied. .EXAMPLE $Creds = (Get-Credential) New-FlashArrayExcelReport -ArrayList "c:\temp\arrays.txt" -snapLimit 25 -OutPath "c:\outputs" Creates an Excel file for each array in the Arrays.txt file, using the credentials preconfigured via the Get-Credentials cmdlet supplied. .NOTES This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. This cmdlet requires the PowerShell module ImportExcel. #> [CmdletBinding()] Param ( [Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $Arraylist, [Parameter(Mandatory = $False)][string] $OutPath = "$env:Temp", [Parameter(Mandatory = $False)][string] $snapLimit, [Parameter(Mandatory = $False)][string] $Username, [Parameter(Mandatory = $False)][string] $PassFilePath ) # Check for Creds if (!($Creds)) { $pass = Get-Content -Path $PassFilePath | ConvertTo-SecureString -AsPlaintext $Creds = New-Object System.Management.Automation.PSCredential($username,$pass) } # Check for modules & features Write-Host "Checking for modules and installing if necessary..." -ForegroundColor green [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 $modulesArray = @( "PureStoragePowerShellSDK2", "ImportExcel" ) ForEach ($mod in $modulesArray) { If (Get-Module -ListAvailable $mod) { Continue } Else { Install-Module $mod -Force -ErrorAction 'SilentlyContinue' Import-Module $mod -ErrorAction 'SilentlyContinue' } } # Assign variables $arrays = Get-Content -Path $arraylist $date = (Get-Date).ToString("MMddyyyy_HHmmss") # Run through each array Write-Host "Starting to read from array..." -ForegroundColor green foreach ($array in $arrays) { $flasharray = Connect-Pfa2Array -Endpoint $array -Credential $Creds -IgnoreCertificateError $array_details = Get-Pfa2Array -Array $flasharray $host_details =Get-Pfa2Host -Array $flasharray -Sort "name" $hostgroup = Get-Pfa2HostGroup -Array $flasharray $vol_details = Get-Pfa2Volume -Array $flasharray -Sort "name" -Filter "not(contains(name,'vvol'))" $vvol_details = Get-Pfa2Volume -Array $flasharray -Sort "name" -Filter "contains(name,'vvol')" $pgd = Get-Pfa2ProtectionGroup -Array $flasharray $pgst = Get-Pfa2ProtectionGroupSnapshotTransfer -Array $flasharray -Sort "name" $controller0_details = Get-Pfa2Controller -Array $flasharray | Where-Object Name -eq CT0 $controller1_details = Get-Pfa2Controller -Array $flasharray | Where-Object Name -eq CT1 $free = $array_details.capacity - $array_details.space.TotalPhysical if($PSBoundParameters.ContainsKey('snapLimit')) { $snapshots = Get-Pfa2VolumeSnapshot -Array $FlashArray -Limit $snapLimit } else { $snapshots = Get-Pfa2VolumeSnapshot -Array $FlashArray } $pods = Get-Pfa2Pod -Array $FlashArray Write-Host "Read complete. Disconnecting and continuing..." -ForegroundColor green # Disconnect 'cause we don't need to waste the connection anymore Disconnect-Pfa2Array -Array $flasharray # Name and path the files $wsname = $array_details.name $excelFile = "$outPath\$wsname-$date.xlsx" Write-Host "Writing data to Excel workbook..." -ForegroundColor green # Array Information [PSCustomObject]@{ "Array Name" = ($array_details.Name).ToUpper() "Array ID" = $array_details.Id "Purity Version" = $array_details.Version "CT0-Mode" = $controller0_details.Mode "CT0-Status" = $controller0_details.Status "CT1-Mode" = $controller1_details.Mode "CT1-Status" = $controller1_details.Status "% Utilized" = "{0:P}" -f ($array_details.space.TotalPhysical / $array_details.capacity ) "Total Capacity(TB)" = [math]::round($array_details.Capacity/1024/1024/1024/1024,2) "Used Capacity(TB)" = [math]::round($array_details.space.TotalPhysical/1024/1024/1024/1024,2) "Free Capacity(TB)" = [math]::round($free/1024/1024/1024/1024,2) "Provisioned Size(TB)" = [math]::round($array_details.space.TotalProvisioned/1024/1024/1024/1024,2) "Unique Data(TB)" = [math]::round($array_details.space.Unique/1024/1024/1024/1024,2) "Shared Data(TB)" = [math]::round($array_details.space.shared/1024/1024/1024/1024,2) "Snapshot Capacity(TB)" = [math]::round($array_details.space.snapshots/1024/1024/1024/1024,2) } | Export-Excel $excelFile -WorksheetName "Array_Info" -AutoSize -TableName "ArrayInformation" -Title "FlashArray Information" ## Volume Details $vol_details | Select-Object name,@{n='Size(GB)';e={[math]::round(($_.provisioned/1024/1024/1024),2)}},@{n='Unique Data(GB)';e={[math]::round(($_.space.Unique/1024/1024/1024),2)}},@{n='Shared Data(GB)';e={[math]::round(($_.space.Shared/1024/1024/1024),2)}},serial,ConnectionCount,Created,@{n='Volume Group';e={$_.VolumeGroup.Name}},Destroyed,TimeRemaining | Export-Excel $excelFile -WorksheetName "Volumes-No vVols" -AutoSize -ConditionalText $(New-ConditionalText Stop DarkRed LightPink) -TableName "VolumesNovVols" -Title "Volumes - Not including vVols" ## vVol Volume Details if ($vvol_details) { $vvol_details | Select-Object name,@{n='Size(GB)';e={[math]::round(($_.provisioned/1024/1024/1024),2)}},@{n='Unique Data(GB)';e={[math]::round(($_.space.Unique/1024/1024/1024),2)}},@{n='Shared Data(GB)';e={[math]::round(($_.space.Shared/1024/1024/1024),2)}},serial,ConnectionCount,Created,@{n='Volume Group';e={$_.VolumeGroup.Name}},Destroyed,TimeRemaining | Export-Excel $excelFile -WorksheetName "vVol Volumes" -AutoSize -ConditionalText $(New-ConditionalText Stop DarkRed LightPink) -TableName "vVolVolumes" -Title "vVol Volumes" } else { Write-Host "No vVol Volumes exist on Array. Skipping." } ## Volume Snapshot details if ($snapshots) { $snapshots | Select-Object Name,Created,@{n='Provisioned(GB)';e={[math]::round(($_.Provisioned/1024/1024/1024),2)}},Destroyed,@{n='Source';e={$_.Source.Name}},@{n='Pod';e={$_.pod.name}},@{n='Volume Group';e={$_.VolumeGroup.Name}} | Export-Excel $excelFile -WorksheetName "Volume Snapshots" -AutoSize -TableName "VolumeSnapshots" -Title "Volume Snapshots" } else { Write-Host "No Volume Snapshots exist on Array. Skipping." } # Host Details $host_details | Select-Object Name,@{n='No. of Volumes';e={$_.ConnectionCount}},@{n='HostGroup';e={$_.HostGroup.Name}},Personality,@{n='Allocated(GB)';e={[math]::round(($_.space.totalprovisioned/1024/1024/1024),2)}},@{n='Wwns';e={$_.Wwns -join ',' }} | Export-Excel $excelFile -WorksheetName "Hosts" -AutoSize -TableName "Hosts" -Title "Host Information" ## HostGroup Details if ($hostgroup) { $hostgroup | Select-Object Name,HostCount,@{n='No.of Volumes';e={$_.ConnectionCount}},@{n='Total Size(GB)';e={[math]::round(($_.space.totalprovisioned/1024/1024/1024),2)}} | Export-Excel $excelFile -WorksheetName "Host Groups" -AutoSize -TableName "HostGroups" -Title "Host Groups" } else { Write-Host "No Host Groups exist on Array. Skipping." } ## Protection Group and Protection Group Transfer details if ($pgd) { $pgd | select-object Name,@{n='Snapshot Size(GB)';e={[math]::round(($_.space.snapshots/1024/1024/1024),2)}},volumecount,@{n='Source';e={$_.source.name}} | Export-Excel $excelFile -WorksheetName "Protection Groups" -AutoSize -TableName "ProtectionGroups" -Title "Protection Group" $pgst | Select-Object Name,@{n='Data Transferred(MB)';e={[math]::round(($_.DataTransferred/1024/1024),2)}},Destroyed,@{n='Physical Bytes Written(MB)';e={[math]::round(($_.PhysicalBytesWritten/1024/1024),2)}},@{n="Status";e={$_.Progress -Replace("1","Transfer Complete")}}| Export-Excel $excelFile -WorksheetName "PG Snapshot Transfers" -AutoSize -TableName "PGroupSnapshotTransfers" -Title "Protection Group Snapshot Transfers" } else { Write-Host "No Protection Groups exist on Array. Skipping." } ## Pod details if ($pods) { $pods | Select-Object Name,arraycount,@{n='Source';e={$_.source.name}},mediator,promotionstatus,destroyed | Export-Excel $excelFile -WorksheetName "Pods" -AutoSize -TableName "Pods" -Title "Pod Information" } else { Write-Host "No Pods exist on Array. Skipping." } } Write-Host "Complete. Files located in $outpath" -ForegroundColor green } #endregion #region New-FlashArrayCapacityReport function New-FlashArrayCapacityReport() { <# .SYNOPSIS Create a formatted report that contains FlashArray Capacity Information .DESCRIPTION This cmdlet will retrieve volume and snapshot capacity information from the FlashArray and output it to a formatted report. .PARAMETER EndPoint Required. FQDN or IP address of FlashArray. .PARAMETER OutFile Optional. Full folder path for output report. Default is the current %TEMP% folder. .PARAMETER HTMLFileName Optional. File name of output report. Default is Array_Capacity_Report.html. .PARAMETER VolumeFilter Optional. Specific volumes to filter output on. Wildcards are accepted. By default, this is "*" (all). .INPUTS None .OUTPUTS Formatted HTML report containing retrieved data and specified options. .EXAMPLE New-FlashArrayCapacityReport -EndPoint myArray Creates a capacity report named myArray_Capacity_Report.html in the current folder. .EXAMPLE New-FlashArrayCapacityReport -EndPoint myArray -OutFile C:\temp -HTMLFileName MyArrayReport.html -VolumeFilter 'Volume1*'. Creates a capacity report c:\temp\myArrayReport.html that includes volumes that contain the name 'Volume1*'. .NOTES This cmdlet can utilize the global $Creds variable for FlashArray authentication. Set the variable $Creds by using the command $Creds = Get-Credential. #> [CmdletBinding()] Param ( [Parameter(Position = 0, Mandatory = $True)][ValidateNotNullOrEmpty()][string] $EndPoint, [Parameter(Mandatory = $False)][string] $OutFile = "$env:Temp", [Parameter(Mandatory = $False)][string] $HTMLFileName = "Array_Capacity_Report.html", [Parameter(Mandatory = $False)][string] $VolumeFilter = "*" ) # define variables $ReportDateTime = Get-Date -Format d $metadata = [PSCustomObject]@{ ReportDate = Get-Date -Format g Source = $env:COMPUTERNAME ScriptPath = $($myInvocation.mycommand).path ScriptVersion = "2.0.0.0" CreatedBy = "$env:USERNAME" } Get-Sdk1Module # Connect to FlashArray if (!($Creds)) { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials (Get-Credential) -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } else { try { $FlashArray = New-PfaArray -EndPoint $EndPoint -Credentials $Creds -IgnoreCertificateError } catch { $ExceptionMessage = $_.Exception.Message Write-Error "Failed to connect to FlashArray endpoint $Endpoint with: $ExceptionMessage" Return } } # populate variables $FlashArraySpaceMetrics = Get-PfaArraySpaceMetrics -Array $FlashArray $FlashArrayConfig = Get-PfaArrayAttributes -Array $FlashArray $FlashArraySnapshots = Get-PfaAllVolumeSnapshots -Array $FlashArray $sysCapacity = Convert-Size -ConvertFrom Bytes -ConvertTo TB $FlashArraySpaceMetrics.capacity -Precision 2 $sysSnapshotSpace = Convert-Size -ConvertFrom Bytes -ConvertTo MB $FlashArraySpaceMetrics.snapshots -Precision 4 $sysVolumeSpace = Convert-Size -ConvertFrom Bytes -ConvertTo GB $FlashArraySpaceMetrics.volumes -Precision 2 $sysDRR = [system.Math]::Round($FlashArraySpaceMetrics.data_reduction, 1) $sysSpace = Convert-Size -ConvertFrom Bytes -ConvertTo GB $FlashArraySpaceMetrics.total -Precision 2 $sysSharedSpace = Convert-Size -ConvertFrom Bytes -ConvertTo GB $FlashArraySpaceMetrics.shared_space -Precision 0 $sysTP = Convert-Size -ConvertFrom Bytes -ConvertTo GB $FlashArraySpaceMetrics.thin_provisioning -Precision 2 if ([system.Math]::Round($FlashArraySpaceMetrics.total_reduction, 1) -gt 100) { $sysTotalDRR = ">100:1" } else { $sysTotalDRR = ([system.Math]::Round($FlashArraySpaceMetrics.total_reduction, 1)).toString() + ":1" } # zero out varables $volumeInfo = $null $provisioned = 0 $volumes = Get-PfaVolumes -Array $FlashArray | Where-Object { $_.name -like $VolumeFilter } $volumeInfo += "<th>Volume Name</th><th>Volume Size (GB)</th><th>Connection</th><th><center>Protected</center></th><th>DR</th><th>SS</th><th>TP</th><th>WS (GB)</th>" ForEach ($volume in $volumes) { $printVol = $volume.name $volSize = ($volume.size) / 1GB $provisioned = (Convert-Size -ConvertFrom GB -ConvertTo TB $volSize -Precision 4) + $provisioned $dr = Get-PfaVolumeSpaceMetrics -Array $FlashArray -VolumeName $volume.name $datardx = "{0:N2}" -f $dr.data_reduction $dataTP = "{0:N3}" -f $dr.thin_provisioning $WrittenSpace = "{0:N2}" -f (((1 - $dr.thin_provisioning) * $dr.total) / 1024 / 1024 / 1024) if ($dr.shared_space) { $dataSS = "{0:N2}" -f $dr.shared_space } else { $dataSS = "None" } # Does the volume have any snapshots? if (!(Get-PfaVolumeSnapshots -Array $FlashArray -VolumeName $volume.name)) { $protected = "No" } else { $protected = "Yes" } if (!(Get-PfaVolumeHostConnections -Array $FlashArray -VolumeName $volume.name).host) { if (!(Get-PfaVolumeHostGroupConnections -Array $FlashArray -VolumeName $volume.name).hgroup) { $hostconnname = "Not Connected" } else { if (((Get-PfaVolumeHostGroupConnections -Array $FlashArray -VolumeName $volume.name).hgroup).Count -gt 1) { $hostconnname = (Get-PfaVolumeHostGroupConnections -Array $FlashArray -VolumeName $volume.name).hgroup[0] } else { $hostconnname = (Get-PfaVolumeHostGroupConnections -Array $FlashArray -VolumeName $volume.name).hgroup } } } else { $hostconnname = (Get-PfaVolumeHostConnections -Array $FlashArray -VolumeName $volume.name).host } $volumeInfo += "<tr><td>$("{0:N0}" -f $printVol)</td> <td>$("{0:N0}" -f $volSize)</td><td>$($hostconnname)</td><td><center>$protected</center></td><td>$($datardx)</td><td>$($dataSS)</td><td>$($dataTP)</td><td>$($WrittenSpace)</td></tr>" } $snapshotInfo = $null $snapshots = Get-PfaVolumes -Array $FlashArray | Where-Object { $_.name -like $VolumeFilter } $snapshotInfo += "<th>Snapshot Name</th><th>Snapshot Size (GB)</th>" ForEach ($snapshot in $snapshots) { $printSnapshot = $snapshot.name $snapshotSize = ($snapshot.size) / 1GB $snapshotInfo += "<tr><td>$("{0:N0}" -f $printSnapshot)</td> <td>$("{0:N0}" -f $snapshotSize)</td></tr>" } # Create HTML/CSS report format #region HTML $HTMLHeader = @" <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <!-- $(($metadata | Out-String).Trim()) --> <title>Pure Storage FlashArray Capacity Report</title> <style type="text/css"> <!-- body { font-family: Proxima Nova, Verdana, Geneva, Arial, Helvetica, Sans-Serif; } table { border-collapse: collapse; border: none; border-right: 1px grey solid; border-top: 1px grey solid; border-bottom: 1px grey solid; border-left: 1px grey solid; text-align: left; font: 12pt Proxima Nova, Verdana, Geneva, Arial, Helvetica, Sans-Serif; color: black; margin-bottom: 10px; margin-left: 20px; } table td { vertical-align: top; font-size: 12px; padding-left: 2px; padding-right: 2px; text-align: left; border-right: 1px grey solid; border-top: 1px grey solid; border-bottom: 1px grey solid; border-left: 1px grey solid; } table th { font-size: 14px; font-weight: bold; padding-left: 2px; padding-right: 2px; text-align: left; border-right: 1px grey solid; border-top: 1px grey solid; border-bottom: 1px grey solid; border-left: 1px grey solid; } h2 { clear: both; font-size: 130%; } h3 { clear: both; font-size: 115%; margin-left: 20px; margin-top: 30px; } protected { font-weight: bold; text-align: left; } p { margin-left: 20px; font-size: 12px; } hr { background-color: #FE5000 } table.list { font-size: 12px; font-weight: normal; padding-left: 2px; padding-right: 2px; text-align: right; border-style: solid; width: 700px; } table.list td:nth-child(1) { font-weight: bold; border-right: 1px grey solid; text-align: left; } table.list td:nth-child(2) { padding-left: 2px; border-right: 1px grey solid; text-align: left; } table tr:nth-child(even) td:nth-child(even) { background: #F8D2CD; } table tr:nth-child(odd) td:nth-child(odd) { background: #FCEAE8; } table tr:nth-child(even) td:nth-child(odd) { background: #F8D2CD; } table tr:nth-child(odd) td:nth-child(even) { background: #FCEAE8; } div.column { width: 400px; float: left; } div.first { padding-right: 2px; border-right: 1px grey solid; } div.second { margin-left: 30px; } div.relative { position: relative; } div.absolute { position: absolute; top: 80px; left: 350px; width: 200px; height: 75px; font-size: 14px; font-weight: bold; } div.time { position: absolute; top: 25px; left: 0px; width: 600px; height: 75px; font-size: 12px; font-weight: normal; } img { max-width: 500px; max-height: 88px; } --> </style> </head> <body> "@ $CurrentSystemHTML = @" <img class="relative" src="data:image/png;base64, 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 AElFTkSuQmCC"> <div id="report"> <p><div class='absolute'>FlashArray Capacity Report<br><div class='time'>$(Get-Date -Format U)</div></div> <h3>FlashArray Information</h3> <table class="list"> <tr> <td>FlashArray Name</td> <td>$($FlashArrayConfig.array_name)</td> </tr> <tr> <td>Purity Version</td> <td>$($FlashArrayConfig.version)</td> </tr> <tr> <td>Revision</td> <td>$($FlashArrayConfig.revision)</td> </tr> <tr> <td>ID</td> <td>$($FlashArrayConfig.id)</td> </tr> <tr> <td>Total Volumes Space</td> <td>$sysVolumeSpace G</td> </tr> <tr> <td>Total Snapshots Space</td> <td>$("{0:N2}" -f $sysSnapshotSpace) M</td> </tr> <tr> <td>Shared Space</td> <td>$("{0:N2}" -f $sysSharedSpace) G</td> </tr> <tr> <td>Used Space</td> <td>$("{0:N2}" -f $sysSpace) G</td> </tr> <tr> <td>System Capacity</td> <td>$("{0:N2}" -f $sysCapacity) T</td> </tr> <tr> <td>System Data Reduction</td> <td>$("{0:N2}" -f $sysDRR):1</td> </tr> <tr> <td>Total Data Reduction</td> <td>$($sysTotalDRR)</td> </tr> <tr> <td>Provisioned Space</td> <td> $("{0:N2}" -f $provisioned) T</td> </tr> </table> <h3>Volume Information</h3> <p>Volumes(s), Sizes (GB) and Data Reduction columes include DR (Data Reduction), SS (Shared Space)<br>and TP (Thin Provisioning) and WS (Written Space) for $($FlashArrayConfig.array_name) listed below.</p> <table class="list">$volumeInfo</table> <h3>FlashRecover SnapShot Information</h3> <p>Snapshot(s) and Sizes (GB) for $($FlashArrayConfig.array_name) listed below.</p> <table class="list">$snapshotInfo</table> <br></br> "@ # Add the current System HTML Report into the final HTML Report body $HTMLMiddle += $CurrentSystemHTML # Assemble the closing HTML for our report. $HTMLEnd = @" </div> <hr noshade size=3 width="100%"> $ReportDateTime </body> </html> "@ # Assemble the final report from all our HTML sections $HTMLmessage = $HTMLHeader + $HTMLMiddle + $HTMLEnd # Save the report out to a file in the current path$ $HTMLmessage | Out-File ($OutFile + "\" + $HTMLFileName) Write-Host " " Write-Host "The report file is located in the $OutFile folder." -ForegroundColor Green } #endregion #### END FLASHARRAY FUNCTIONS #### WINDOWS FUNCTIONS #region Test-WindowsBestPractices function Test-WindowsBestPractices() { <# .SYNOPSIS Cmdlet used to retrieve hosts information, test and optionally configure MPIO (FC) and/or iSCSI settings in a Windows OS against FlashArray Best Practices. .DESCRIPTION This cmdlet will retrieve the curretn host infromation, and iterate through several tests around MPIO (FC) and iSCSI OS settings and hardware, indicate whether they are adhearing to Pure Storage FlashArray Best Practices, and offer to alter the settings if applicable. All tests can be bypassed with a negative user response when prompted, or simply by using Ctrl-C to break the process. .PARAMETER EnableIscsiTests Optional. If this parameter is present, the cmdlet will run tests for iSCSI settings. .PARAMETER OutFile Optional. Specify the full filepath (ex. c:\mylog.log) for logging. If not specified, the default file of %TMP%\Test-WindowsBestPractices.log will be used. .INPUTS Optional parameter for iSCSI testing. .OUTPUTS Output status and best practice options for every test. .EXAMPLE Test-WindowsBestPractices Run the cmdlet against the local machine running the MPIO tests and the log is located in the %TMP%\Test-WindowsBestPractices.log file. .EXAMPLE Test-WindowsZBestPractices -EnableIscsiTests -OutFile "c:\temp\mylog.log" Run the cmdlet against the local machine, run the additional iSCSI tests, and create the log file at c:\temp\mylog.log. #> [CmdletBinding()] Param ( [Parameter(Mandatory = $false)] [string] $OutFile = "$env:Temp\Test-WindowsBestPractices.log", [Switch]$EnableIscsiTests ) function Write-Log { [CmdletBinding()] param( [Parameter()][ValidateNotNullOrEmpty()][string]$Message, [Parameter()][ValidateNotNullOrEmpty()][ValidateSet("Information", "Passed", "Warning", "Failed")][string]$Severity = "Information" ) [pscustomobject]@{ Time = (Get-Date -f g) Message = $Message Severity = $Severity } | Out-File -FilePath $OutFile -Append } Write-Log -Message 'Pure Storage FlashArray Windows Server Best Practices Analyzer v2.0.0.0' -Severity Information Clear-Host Write-Host ' __________________________' Write-Host ' /++++++++++++++++++++++++++\' Write-Host ' /++++++++++++++++++++++++++++\' Write-Host ' /++++++++++++++++++++++++++++++\' Write-Host ' /++++++++++++++++++++++++++++++++\' Write-Host ' /++++++++++++++++++++++++++++++++++\' Write-Host ' /++++++++++++/----------\++++++++++++\' Write-Host ' /++++++++++++/ \++++++++++++\' Write-Host ' /++++++++++++/ \++++++++++++\' Write-Host ' /++++++++++++/ \++++++++++++\' Write-Host ' /++++++++++++/ \++++++++++++\' Write-Host ' \++++++++++++\ /++++++++++++/' Write-Host ' \++++++++++++\ /++++++++++++/' Write-Host ' \++++++++++++\ /++++++++++++/' Write-Host ' \++++++++++++\ /++++++++++++/' Write-Host ' \++++++++++++\ /++++++++++++/' Write-Host ' \++++++++++++\' Write-Host ' \++++++++++++\' Write-Host ' \++++++++++++\' Write-Host ' \++++++++++++\' Write-Host ' \------------\' Write-Host 'Pure Storage FlashArray Windows Server Best Practices Analyzer v2.0.0.0' Write-Host '------------------------------------------------------------------------' Write-Host '' Write-Host '' Write-Host '=========================================' Write-Host 'Host Information' Write-Host '=========================================' $compinfo = Get-SilComputer | Out-String -Stream $compinfo | Out-File -FilePath $OutFile -Append $compinfo Write-Log -Message "Successfully retrieved computer properties. Continuing..." -Severity Information Write-Host '' Write-Host '=========================================' Write-Host 'Multipath-IO Verificaton' Write-Host '=========================================' # Multipath-IO if ((Get-WindowsFeature -Name 'Multipath-IO').InstallState -eq 'Available') { Write-Host "FAILED" -ForegroundColor Red -NoNewline Write-Host ": Multipath-IO Windows feature is not installed. This feature can be installed by this cmdlet, but a reboot of the server will be required, and the you must re-run the cmdlet again." Write-Log -Message 'Multipath-IO Windows feature is not installed.' -Severity Failed $resp = Read-Host "Would you like to install this feature? (***Reboot Required) Y/N" if ($resp.ToUpper() -eq 'Y') { Add-WindowsFeature -Name Multipath-IO Write-Log -Message 'Multipath-IO Windows feature was installed per user request. Continuing...' -Severity Passed } else { Write-Host "WARNING" -ForegroundColor Yellow -NoNewline Write-Host ": You have chosen not to install the Multipath-IO feature via this cmdlet. Please add this feature manually and re-run this cmdlet." Write-Log -Message 'Multipath-IO Windows feature not installed per user request. Exiting.' -Severity Warning exit } } else { Write-Host "PASSED" -ForegroundColor Green -NoNewline Write-Host ": The Multipath-IO feature is installed." Write-Log -Message 'Multipath-IO Windows feature is installed. Continuing...' -Severity Passed } Write-Host '' Write-Host '=========================================' Write-Host 'Multipath-IO Hardware Verification' Write-Host '=========================================' $MPIOHardware = Get-MPIOAvailableHW $MPIOHardware | Out-File -FilePath $OutFile -Append Write-Log -Message "Successfully retrieved MPIO Hardware. Continuing..." -Severity Information $MPIOHardware $DSMs = Get-MPIOAvailableHW ForEach ($DSM in $DSMs) { if ((($DSM).VendorId.Trim()) -eq 'PURE' -and (($DSM).ProductId.Trim()) -eq 'FlashArray') { Write-Host "PASSED" -ForegroundColor Green -NoNewline Write-Host ": Microsoft Device Specific Module (MSDSM) is configured for $($DSM.ProductID).`n`r" Write-Log -Message "Microsoft Device Specific Module (MSDSM) is configured for $($DSM.ProductID).`n`r. Continuing..." -Severity Passed } else { Write-Host "FAILED" -ForegroundColor Red -NoNewline Write-Host ": Microsoft Device Specific Module (MSDSM) is not configured for $($DSM.ProductID).`n`r" Write-Log -Message "Microsoft Device Specific Module (MSDSM) is not configured for $($DSM.ProductID).`n`r. Continuing anyway..." -Severity Failed } } Write-Host '' Write-Host '-----------------------------------------' Write-Host 'Current MPIO Settings' Write-Host '-----------------------------------------' $MPIOSettings = $null $MPIOSetting = $null Write-Log -Message "Retrieving MPIO settings. Continuing..." -Severity Information $MPIOSettings = Get-MPIOSetting | Out-String -Stream $MPIOSettings = $MPIOSettings.Replace(" ", "") $MPIOSettings | Out-Null $MPIOSettings | Out-File -FilePath $OutFile -Append Write-Log -Message "Successfully retrieved MPIO Settings. Continuing..." -Severity Information ForEach ($MPIOSetting in $MPIOSettings) { $MPIOSetting.Split(':')[0] $MPIOSetting.Split(':')[1] switch ( $($MPIOSetting.Split(':')[0])) { 'PathVerificationState' { $PathVerificationState = $($MPIOSetting.Split(':')[1]) } 'PDORemovePeriod' { $PDORemovePeriod = $($MPIOSetting.Split(':')[1]) } 'UseCustomPathRecoveryTime' { $UseCustomPathRecoveryTime = $($MPIOSetting.Split(':')[1]) } 'CustomPathRecoveryTime' { $CustomPathRecoveryTime = $($MPIOSetting.Split(':')[1]) } 'DiskTimeoutValue' { $DiskTimeOutValue = $($MPIOSetting.Split(':')[1]) } } } Write-Host '' Write-Host '=========================================' Write-Host 'MPIO Settings Verification' Write-Host '=========================================' # PathVerificationState if ($PathVerificationState -eq 'Disabled') { Write-Host "FAILED" -ForegroundColor Red -NoNewline Write-Host ": PathVerificationState is $($PathVerificationState)." Write-Log -Message "PathVerificationState is $($PathVerificationState)." -Severity Failed $resp = Read-Host "REQUIRED ACTION: Set the PathVerificationState to Enabled? Y/N" if ($resp.ToUpper() -eq 'Y') { Set-MPIOSetting -NewPathVerificationState Enabled Write-Log -Message "PathVerificationState is now $($PathVerificationState) per to user request." -Severity Information } else { Write-Host "WARNING" -ForegroundColor Yellow Write-Host ": Not changing the PathVerificationState to Enabled could cause unexpected path recovery issues." Write-Log -Message "PathVerificationState $($PathVerificationState) was not altered due to user request." -Severity Warning } } else { Write-Host "PASSED" -ForegroundColor Green -NoNewline Write-Host ": PathVerificationState has a value of Enabled. No action required." Write-Log -Message "PathVerificationState has a value of Enabled. No action required." -Severity Passed } # PDORemovalPeriod # Need to test for Azure VM. If Azure VM, use PDORemovalPeriod=120. If not Azure VM, use PDORemovePeriod=30. try { $StatusCode = wget -TimeoutSec 3 -Headers @{"Metadata" = "true" } -Uri "http://169.254.169.254/metadata/instance/compute?api-version=2021-01-01" | ForEach-Object { $_.StatusCode } } catch {} if ($StatusCode -eq '200') { $b = Invoke-RestMethod -Headers @{"Metadata" = "true" } -Method GET -Proxy $Null -Uri "http://169.254.169.254/metadata/instance/compute?api-version=2021-01-01&format=json" | Select-Object azEnvironment if ($b.azEnvironment -like "Azure*") { Write-Log -Message "This is an Azure Vitual Machine. The PDORemovalPeriod is set differently than others." -Severity Information if ($PDORemovePeriod -ne '120') { Write-Host "FAILED" -ForegroundColor Red -NoNewline Write-Host ": PDORemovePeriod for this Azure VM is set to $($PDORemovePeriod)." Write-Log -Message "PDORemovePeriod for this Azure VM is set to $($PDORemovePeriod)." -Severity Failed $resp = Read-Host "REQUIRED ACTION: Set the PDORemovePeriod to a value of 120? Y/N" if ($resp.ToUpper() -eq 'Y') { Set-MPIOSetting -NewPDORemovePeriod 120 Write-Log -Message ": PDORemovePeriod for this Azure VM is set to $($PDORemovePeriod) per user request." -Severity Information } else { Write-Host "WARNING" -ForegroundColor Yellow -NoNewline Write-Host ": Not changing the PDORemovePeriod to 120 for an Azure VM could cause unexpected path recovery issues." Write-Log -Message "Not changing the PDORemovePeriod to 120 for an Azure VM could cause unexpected path recovery issues." -Severity Warning } else { Write-Host "PASSED" -ForegroundColor Green -NoNewline Write-Host ": PDORemovePeriod is set to a value of 120 for this Azure VM. No action required." Write-Log -Message "PDORemovePeriod is set to a value of 120 for this Azure VM. No action required." -Severity Passed } } } else { if ($PDORemovePeriod -ne '30') { Write-Host "FAILED" -ForegroundColor Red -NoNewline Write-Host ": PDORemovePeriod is set to $($PDORemovePeriod)." Write-Log -Message "PDORemovePeriod is set to $($PDORemovePeriod)." -Severity Failed $resp = Read-Host "REQUIRED ACTION: Set the PDORemovePeriod to a value of 30? Y/N" if ($resp.ToUpper() -eq 'Y') { Set-MPIOSetting -NewPDORemovePeriod 30 Write-Log -Message "PDORemovePeriod is set to $($PDORemovePeriod) per user request." -Severity Information } else { Write-Host "WARNING" -ForegroundColor Yellow -NoNewline Write-Host ": Not changing the PDORemovePeriod to 30 could cause unexpected path recovery issues." Write-Log -Message "Not changing the PDORemovePeriod to 30 could cause unexpected path recovery issues." -Severity Warning } else { Write-Host "PASSED" -ForegroundColor Green -NoNewline Write-Host ": PDORemovePeriod is set to a value of 30. No action required." Write-Log -Message "PDORemovePeriod is set to a value of 30. No action required." -Severity Passed } } } } # PathRecoveryTime if ($UseCustomPathRecoveryTime -eq 'Disabled') { Write-Host "FAILED" -ForegroundColor Red -NoNewline Write-Host ": UseCustomPathRecoveryTime is set to $($UseCustomPathRecoveryTime)." Write-Log -Message "UseCustomPathRecoveryTime is set to $($UseCustomPathRecoveryTime)." -Severity Failed $resp = Read-Host "REQUIRED ACTION: Set the UseCustomPathRecoveryTime to Enabled? Y/N" if ($resp.ToUpper() -eq 'Y') { Set-MPIOSetting -CustomPathRecovery Enabled Write-Log -Message "UseCustomPathRecoveryTime is set to $($UseCustomPathRecoveryTime) per user request." -Severity Information } else { Write-Host "WARNING" -ForegroundColor Yellow Write-Host ": Not changing the UseCustomPathRecoveryTime to Enabled could cause unexpected path recovery issues." Write-Log -Message "Not changing the UseCustomPathRecoveryTime to Enabled could cause unexpected path recovery issues." -Severity Warning } } else { Write-Host "PASSED" -ForegroundColor Green -NoNewline Write-Host ": UseCustomPathRecoveryTime is set to Enabled. No action required." Write-Log -Message "UseCustomPathRecoveryTime is set to Enabled. No action required." -Severity Passed } if ($CustomPathRecoveryTime -ne '20') { Write-Host "FAILED" -ForegroundColor Red -NoNewline Write-Host ": CustomPathRecoveryTime is set to $($CustomPathRecoveryTime)." Write-Log -Message "CustomPathRecoveryTime is set to $($CustomPathRecoveryTime)." -Severity Failed $resp = Read-Host "REQUIRED ACTION: Set the CustomPathRecoveryTime to a value of 20? Y/N" if ($resp.ToUpper() -eq 'Y') { Set-MPIOSetting -NewPathRecoveryInterval 20 Write-Log -Message "CustomPathRecoveryTime is set to $($UseCustomPathRecoveryTime) per user request." -Severity Information } else { Write-Host "WARNING" -ForegroundColor Yellow Write-Host ": Not changing the CustomPathRecoveryTime to a value of 20 could cause unexpected path recovery issues." Write-Log -Message "Not changing the CustomPathRecoveryTime to a value of 20 could cause unexpected path recovery issues." -Severity Warning } } else { Write-Host "PASSED" -ForegroundColor Green -NoNewline Write-Host ": CustomPathRecoveryTime is set to $($CustomPathRecoveryTime). No action required." Write-Log -Message "CustomPathRecoveryTime is set to $($CustomPathRecoveryTime). No action required." -Severity Passed } # DiskTimeOutValue if ($DiskTimeOutValue -ne '60') { Write-Host "FAILED" -ForegroundColor Red -NoNewline Write-Host ": DiskTimeOutValue is set to $($DiskTimeOutValue)." Write-Log -Message "DiskTimeOutValue is set to $($DiskTimeOutValue)." -Severity Failed $resp = Read-Host "REQUIRED ACTION: Set the DiskTimeOutValue to a value of 60? Y/N" if ($resp.ToUpper() -eq 'Y') { Set-MPIOSetting -NewDiskTimeout 60 Write-Log -Message "DiskTimeOutValue is set to $($DiskTimeOutValue) per user request." -Severity Information } else { Write-Host "WARNING" -ForegroundColor Yellow Write-Host ": Not changing the DiskTimeOutValue to a value of 60 could cause unexpected path recovery issues." Write-Log -Message "Not changing the DiskTimeOutValue to a value of 60 could cause unexpected path recovery issues." -Severity Warning } } else { Write-Host "PASSED" -ForegroundColor Green -NoNewline Write-Host ": DiskTimeOutValue is set to $($DiskTimeOutValue). No action required." Write-Log -Message "DiskTimeOutValue is set to $($DiskTimeOutValue). No action required." -Severity Passed } Write-Host '' Write-Host '=========================================' Write-Host 'TRIM/UNMAP Verification' Write-Host '=========================================' # DisableDeleteNotification $DisableDeleteNotification = (Get-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\FileSystem' -Name 'DisableDeleteNotification') if ($DisableDeleteNotification.DisableDeleteNotification -eq 0) { Write-Host "PASSED" -ForegroundColor Green -NoNewline Write-Host ": Delete Notification is Enabled" Write-Log -Message "Delete Notification is Enabled. No action required." -Severity Passed } else { Write-Host "WARNING" -ForegroundColor Yellow -NoNewline Write-Host ": Delete Notification is Disabled. Pure Storage Best Practice is to enable delete notifications." Write-Log -Message "Delete Notification is Disabled. Pure Storage Best Practice is to enable delete notifications." -Severity Warning } Write-Host " " Write-Host "MPIO settings tests complete. Continuing..." -ForegroundColor Green Write-Log -Message "MPIO settings tests complete. Continuing..." -Severity Information # iSCSI tests if ($EnableIscsiTests) { Write-Host '' Write-Host '=========================================' Write-Host 'iSCSI Settings Verification' Write-Host '=========================================' Write-Log -Message "iSCSI testing enabled. Continuing..." -Severity Information $AdapterNames = @() Write-Host "All available adapters: " Write-Host " " $adapters = Get-NetAdapter | Sort-Object Name | Format-Table -Property "Name", "InterfaceDescription", "MacAddress", "Status" $adapters | Out-File -FilePath $OutFile -Append $adapters Write-Host " " $AdapterNames = Read-Host "Please enter all iSCSI adapter names to be tested. Use a comma to seperate the names - ie. NIC1,NIC2,NIC3" $AdapterNames = $AdapterNames.Split(',') Write-Host " " Write-Host "Adapter names being configured: " $AdapterNames Write-Host "===============================" foreach ($adapter in $AdapterNames) { $adapterGuid = (Get-NetAdapterAdvancedProperty -Name $adapter -RegistryKeyword "NetCfgInstanceId" -AllProperties).RegistryValue $RegKeyPath = "HKLM:\system\currentcontrolset\services\tcpip\parameters\interfaces\$adapterGuid\" $TAFRegKey = "TcpAckFrequency" $TNDRegKey = "TcpNoDelay" ## TcpAckFrequency if ((Get-ItemProperty $RegkeyPath).$TAFRegKey -eq "1") { Write-Host "PASSED" -ForegroundColor Green -NoNewline Write-Host ": TcpAckFrequency is set to disabled (1). No action required." Write-Log -Message "TcpAckFrequency is set to disabled (1). No action required." -Severity Passed } if (-not (Get-ItemProperty $RegkeyPath $TAFRegKey -ErrorAction SilentlyContinue)) { Write-Host "FAILED" -ForegroundColor Red -NoNewline Write-Host ": TcpAckFrequency key does not exist." Write-Log -Message "TcpAckFrequency key does not exist." -Severity Failed Write-Host "REQUIRED ACTION: Set the TcpAckFrequency registry value to 1 for $adapter ?" -NoNewline $resp = Read-Host -Prompt "Y/N?" if ($resp.ToUpper() -eq 'Y') { Write-Host "Creating Registry key and setting to disabled..." New-ItemProperty -Path $RegKeyPath -Name 'TcpAckFrequency' -Value '1' -PropertyType DWORD -Force -ErrorAction SilentlyContinue Write-Log -Message "Creating Registry key and setting to disabled per user request." -Severity Information } else { Write-Host "WARNING" -ForegroundColor Yellow -NoNewline Write-Host ": TcpAckFrequency registry key exists but is enabled. Changing to disabled." Set-ItemProperty -Path $RegKeyPath -Name 'TcpAckFrequency' -Value '1' -Type DWORD -Force -ErrorAction SilentlyContinue Write-Log -Message "TcpAckFrequency registry key exists but is enabled. Changing to disabled." -Severity Warning } } if ($resp.ToUpper() -eq 'N') { Write-Host "ABORTED" -ForegroundColor Yellow -NoNewline Write-Host ": Registry key not created or altered by request of user." Write-Log -Message "Registry key not created or altered by request of user." -Severity Warning } ## TcpNoDelay if ((Get-ItemProperty $RegkeyPath).$TNDRegKey -eq "1") { Write-Host "PASSED" -ForegroundColor Green -NoNewline Write-Host ": TcpNoDelay (Nagle) is set to disabled (1). No action required." Write-Log -Message "TcpNoDelay (Nagle) is set to disabled (1). No action required." -Severity Passed } if (-not (Get-ItemProperty $RegkeyPath $TNDRegKey -ErrorAction SilentlyContinue)) { Write-Host "REQUIRED ACTION: Set the TcpNodelay (Nagle) registry value to 1 for $adapter ?" -NoNewline $resp = Read-Host -Prompt "Y/N?" if ($resp.ToUpper() -eq 'Y') { Write-Host "TcpNoDelay registry key does not exist. Creating..." New-ItemProperty -Path $RegKeyPath -Name 'TcpNoDelay' -Value '1' -PropertyType DWORD -Force -ErrorAction SilentlyContinue Write-Log -Message "TcpNoDelay registry key does not exist. Creating per user request." -Severity Information } else { Write-Host "WARNING" -ForegroundColor Yellow -NoNewline Write-Host ": TcpNoDelay registry key exists. Setting value to 1." Set-ItemProperty -Path $RegKeyPath -Name 'TcpNoDelay' -Value '1' -Type DWORD -Force -ErrorAction SilentlyContinue Write-Log -Message "TcpNoDelay registry key exists. Setting value to 1." -Severity Warning } } if ($resp.ToUpper() -eq 'N') { Write-Host "ABORTED" -ForegroundColor Yellow -NoNewline Write-Host ": TcpNoDelay registry key not created or altered by request of user." Write-Log -Message "TcpNoDelay registry key not created or altered by request of user." -Severity Warning } } } else { Write-host " " Write-Host "The -EnableIscsiTests parameter not present. No iSCSI tests will be run." -ForegroundColor Yellow Write-Host " " Write-Log -Message "The -EnableIscsiTests parameter not present. No iSCSI tests will be run." -Severity Information } Write-Host '' Write-Host "The Test-WindowsBestPractices cmdlet has completed. The log file has been created for reference." -ForegroundColor Green Write-Host '' Write-Log -Message "The Test-WindowsBestPractices cmdlet has completed." -Severity Information } #endregion #region Set-WindowsPowerScheme function Set-WindowsPowerScheme() { <# .SYNOPSIS Cmdlet to set the Power scheme for the Windows OS to High Performance. .DESCRIPTION Cmdlet to set the Power scheme for the Windows OS to High Performance. .PARAMETER ComputerName Optional. The computer name to run the cmdlet against. It defaults to the local computer name. .INPUTS None .OUTPUTS Current power scheme and optional confirmation to alter the setting in the Windows registry. .EXAMPLE Set-WindowsPowerScheme Retrieves the current Power Scheme setting, and if not set to High Performance, asks for confirmation to set it. #> [CmdletBinding()] Param ( [Parameter(Mandatory = $False)] [string] $ComputerName = "$env:COMPUTERNAME" ) $PowerScheme = Get-WmiObject -Class WIN32_PowerPlan -Namespace 'root\cimv2\power' -ComputerName $ComputerName -Filter "isActive='true'" if ($PowerScheme.ElementName -ne "High performance") { Write-Host "WARNING" -ForegroundColor Yellow -NoNewline Write-Host ": Computer Power Scheme is not set to High Performance. Pure Storage best practice is to set this power plan as default." Write-Host " " Write-Host "REQUIRED ACTION: Set the Power Plan to High Performance?" $resp = Read-Host -Prompt "Y/N?" if ($resp.ToUpper() -eq 'Y') { $planId = "8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c" powercfg -setactive "$planId" } } else { Write-Host "PASSED" -ForegroundColor Green -NoNewline Write-Host ": Computer Power Scheme is already set to High Performance. Exiting." } } #endregion #region Get-QuickFixEngineering function Get-QuickFixEngineering() { <# .SYNOPSIS Retrieves all the Windows OS QFE patches applied. .DESCRIPTION Retrieves all the Windows OS QFE patches applied. .INPUTS None .OUTPUTS Outputs a listing of QFE patches applied. .EXAMPLE Get-QuickFixEngineering #> Get-WmiObject -Class Win32_QuickFixEngineering | Select-Object -Property Description, HotFixID, InstalledOn | Format-Table -Wrap } #endregion #region Get-HostBusAdapter function Get-HostBusAdapter() { <# .SYNOPSIS Retrieves host Bus Adapater (HBA) information. .DESCRIPTION Retrieves host Bus Adapater (HBA) information for the host. .PARAMETER ComputerName Optional. The computer name to run the cmdlet against. It defaults to the local computer name. .INPUTS Computer name is optional. .OUTPUTS Host Bus Adapter information. .EXAMPLE Get-HostBusAdapter -ComputerName myComputer #> [CmdletBinding()] Param ( [Parameter(Mandatory = $False)] [string] $ComputerName = "$env:COMPUTERNAME" ) try { $port = Get-WmiObject -Class MSFC_FibrePortHBAAttributes -Namespace 'root\WMI' -ComputerName $ComputerName $hbas = Get-WmiObject -Class MSFC_FCAdapterHBAAttributes -Namespace 'root\WMI' -ComputerName $ComputerName $hbaProp = $hbas | Get-Member -MemberType Property, AliasProperty | Select-Object -ExpandProperty name | Where-Object { $_ -notlike '__*' } $hbas = $hbas | Select-Object -ExpandProperty $hbaProp $hbas | ForEach-Object { $_.NodeWWN = ((($_.NodeWWN) | ForEach-Object { '{0:x2}' -f $_ }) -join ':').ToUpper() } ForEach ($hba in $hbas) { Add-Member -MemberType NoteProperty -InputObject $hba -Name FabricName -Value (($port | Where-Object { $_.instancename -eq $hba.instancename }).attributes | Select-Object @{ Name = 'Fabric Name'; Expression = { (($_.fabricname | ForEach-Object { '{0:x2}' -f $_ }) -join ':').ToUpper() } }, @{ Name = 'Port WWN'; Expression = { (($_.PortWWN | ForEach-Object { '{0:x2}' -f $_ }) -join ':').ToUpper() } }) -PassThru } } catch { } } #endregion #region Register-HostVolumes function Register-HostVolumes() { <# .SYNOPSIS Sets Pure FlashArray connected disks to online. .DESCRIPTION This cmdlet will set any FlashArray volumes (disks) to online in Windows using the diskpart command. .PARAMETER ComputerName Optional. The computer name to run the cmdlet against. It defaults to the local computer name. .INPUTS None .OUTPUTS None .EXAMPLE Register-HostVolumes -ComputerName myComputer Sets all FlashArray disks for myComputer to online. #> [CmdletBinding()] Param ( [Parameter(Mandatory = $False)] [string]$ComputerName = "$env:COMPUTERNAME" ) $cmds = "`"RESCAN`"" $scriptblock = [string]::Join(',', $cmds) $diskpart = $ExecutionContext.InvokeCommand.NewScriptBlock("$scriptblock | DISKPART") $result = Invoke-Command -ComputerName $ComputerName -ScriptBlock $diskpart $disks = Invoke-Command -ComputerName $ComputerName { Get-Disk } # $i = 0 ForEach ($disk in $disks) { If ($disk.FriendlyName -like 'PURE FlashArray*') { If ($disk.OperationalStatus -ne 1) { $disknumber = $disk.Number $cmds = "`"SELECT DISK $disknumber`"", "`"ATTRIBUTES DISK CLEAR READONLY`"", "`"ONLINE DISK`"" $scriptblock = [string]::Join(',', $cmds) $diskpart = $ExecutionContext.InvokeCommand.NewScriptBlock("$scriptblock | DISKPART") $result = Invoke-Command -ComputerName $ComputerName -ScriptBlock $diskpart -ErrorAction Stop } } } } #endregion #region Unregister-HostVolumes function Unregister-HostVolumes() { <# .SYNOPSIS Sets Pure FlashArray connected disks to offline. .DESCRIPTION This cmdlet will set any FlashArray volumes (disks) to offline in Windows using the diskpart command. .PARAMETER ComputerName Optional. The computer name to run the cmdlet against. It defaults to the local computer name. .INPUTS None .OUTPUTS None .EXAMPLE Unregister-HostVolumes -ComputerName myComputer Offlines all FlashArray disks from myComputer. #> [CmdletBinding()] Param ( [Parameter(Mandatory = $False)] [string]$Computername = "$env:COMPUTERNAME" ) $cmds = "`"RESCAN`"" $scriptblock = [string]::Join(',', $cmds) $diskpart = $ExecutionContext.InvokeCommand.NewScriptBlock("$scriptblock | DISKPART") $result = Invoke-Command -ComputerName $Computername -ScriptBlock $diskpart $disks = Invoke-Command -ComputerName $Computername { Get-Disk } ForEach ($disk in $disks) { If ($disk.FriendlyName -like 'PURE FlashArray*') { If ($disk.OperationalStatus -ne 1) { $disknumber = $disk.Number $cmds = "`"SELECT DISK $disknumber`"", "`"OFFLINE DISK`"" $scriptblock = [string]::Join(',', $cmds) $diskpart = $ExecutionContext.InvokeCommand.NewScriptBlock("$scriptblock | DISKPART") $result = Invoke-Command -ComputerName $Computername -ScriptBlock $diskpart -ErrorAction Stop } } } } #endregion #region Get-MPIODiskLBPolicy function Get-MPIODiskLBPolicy() { <# .SYNOPSIS Retrieves the current MPIO Load Balancing policy for Pure FlashArray disk(s). .DESCRIPTION This cmdlet will retrieve the current MPIO Load Balancing policy for connected Pure FlashArrays disk(s) using the mpclaim.exe utlity. .PARAMETER DiskID Optional. If specified, retrieves only the policy for the that disk ID. Otherwise, returns all disks. DiskID is the 'Number' identifier of the disk from the cmdlet 'Get-Disk'. .INPUTS None .OUTPUTS mpclaim.exe output .EXAMPLE Get-MPIODiskLBPolicy -DiskID 1 Returns the current MPIO LB policy for disk ID 1. #> [CmdletBinding()] Param ( [Parameter(Mandatory = $False)][string]$DiskId ) function Invoke-mpclaim($param1, $param2, $param3) { . mpclaim.exe $param1 $param2 $param3 } #Checks whether mpclaim.exe is available. $exists = Test-Path "$env:systemroot\System32\mpclaim.exe" if (-not ($exists)) { Write-Host "mpclaim.exe not found. Is MultiPathIO enabled? Exiting." -ForegroundColor Yellow break } if ($DiskId) { Write-Host "Getting current MPIO Load Balancing Policy for DiskID " + $DiskId -ForegroundColor Green $result = Invoke-mpclaim -param1 "-s" -param2 "-d" -param3 $DiskId return $result } else { Write-Host "Getting current MPIO Load Balancing Policy for all MPIO disks." -ForegroundColor Green $result = Invoke-mpclaim -param1 "-s" -param2 "-d" return $result } } #endregion #region Set-MPIODiskLBPolicy function Set-MPIODiskLBPolicy() { <# .SYNOPSIS Sets the MPIO Load Balancing policy for FlashArray disks. .DESCRIPTION This cmdlet will set the MPIO Load Balancing policy for all connected Pure FlashArrays disks to the desired setting using the mpclaim.exe utlity. The default Windows OS setting is RR. .PARAMETER Policy Required. No default. The Policy type must be specified by the letter acronym for the policy name (ex. "RR" for Round Robin). Available options are: LQD = Least Queue Depth RR = Round Robin FO = Fail Over Only RRWS = Round Robin with Subset WP = Weighted Paths LB = Least Blocks clear = clears current policy and sets to Windows OS default of RR .INPUTS None .OUTPUTS None .EXAMPLE Set-MPIODiskLBPolicy -Policy LQD Sets the MPIO load balancing policy for all Pure disks to Least Queue Depth. .EXAMPLE Set-MPIODiskLBPolicy -Policy clear Clears the current MPIO policy for all Pure disks and sets to the default of RR. #> [CmdletBinding()] Param ( [Parameter(Mandatory)][ValidateSet('LQD','RR','clear','FO','RRWS','WP','LB',IgnoreCase = $true)][string]$Policy ) If ($Policy -eq "LQD") { $pn = "4" } elseif ($Policy -eq "RR") { $pn = "2" } elseif ($Policy -like "clear") { $pn = "0" } elseif ($Policy -eq "FO") { $pn = "1" } elseif ($Policy -eq "RRWS") { $pn = "3" } elseif ($Policy -eq "WP") { $pn = "5" } elseif ($Policy -eq "LB") { $pn = "6" } else { Write-Host "Required policy type parameter of LQD, RR, FO, RRWS, WP LB, or clear not supplied. Exiting." break } function Invoke-MPclaim($param1, $param2, $param3, $param4) { . mpclaim.exe $param1 $param2 $param3 $param4 } #Checks whether mpclaim.exe is available. $exists = Test-Path "$env:systemroot\System32\mpclaim.exe" if (-not ($exists)) { Write-Host "mpclaim.exe not found. Is MultiPathIO enabled? Exiting." -ForegroundColor Yellow break } Write-Host "Setting MPIO Load Balancing Policy to" + $pn + " for all Pure FlashArray disks." $puredisks = Get-PhysicalDisk | Where-Object FriendlyName -Match "PURE" $puredisks | ForEach-Object { # Get disk uniqueid $UniqueID = $_.UniqueId $MPIODisk = (Get-WmiObject -Namespace root\wmi -Class mpio_disk_info).driveinfo | Where-Object { $_.SerialNumber -eq $UniqueID } $MPIODiskID = $MPIODisk.Name.Replace("MPIO Disk", "") $MPIODiskID Invoke-mpclaim -param1 "-l" -param2 "-d" -param3 $MPIODiskID -param4 $pn } Write-Host "New disk LB policy settings:" -ForegroundColor Green Invoke-mpclaim -param1 "-s" -param2 "-d" -param3 "" -param4 "" } #endregion #region Get-VolumeShadowCopy function Get-VolumeShadowCopy() { <# .SYNOPSIS Retrieves the volume shadow copy informaion using the Diskhadow command. .DESCRIPTION .PARAMETER ExposeAs Required. Drive letter, share, or mount point to expose the shadow copy. .PARAMETER ScriptName Optional. Script text file name created to pass to the Diskshadow command. defaults to 'PUREVSS-SNAP'. .PARAMETER ShadowCopyAlias Required. Name of the shadow copy alias. .PARAMETER MetadataFile Required. Full filename for the metadata .cab file. It must exist in the current working folder. .PARAMETER VerboseMode Optional. "On" or "Off". If set to 'off', verbose mode for the Diskshadow command is disabled. Default is 'On'. .INPUTS None .OUTPUTS None .EXAMPLE Get-VolumeShadowCopy -MetadataFile myFile.cab -ShadowCopyAlias MyAlias -ExposeAs MyShadowCopy Exposes the MyAias shadow copy as drive latter G: using the myFie.cab metadata file. .NOTES See https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/diskshadow for more information on the Diskshadow utility. #> [CmdletBinding()] Param ( [Parameter(Mandatory = $False)][string]$ScriptName = "PUREVSS-SNAP", [Parameter(Mandatory = $True)][string]$MetadataFile, [Parameter(Mandatory = $True)][string]$ShadowCopyAlias, [Parameter(Mandatory = $True)][string]$ExposeAs, [ValidateSet("On", "Off")][string]$VerboseMode = "On" ) $dsh = "./$ScriptName.PFA" "SET VERBOSE $VerboseMode", 'RESET', "LOAD METADATA $MetadataFile.cab", 'IMPORT', "EXPOSE %$ShadowCopyAlias% $ExposeAs", 'EXIT' | Set-Content $dsh DISKSHADOW /s $dsh Remove-Item $dsh } #endregion #region New-VolumeShadowCopy function New-VolumeShadowCopy() { <# .SYNOPSIS Creates a new volume shadow copy using Diskshadow. .DESCRIPTION This cmdlet will create a new volume shadow copy using the Diskshadow command, passing the variables specified. .PARAMETER Volume Required. .PARAMETER Scriptname Optional. Script text file name created to pass to the Diskshadow command. Pre-defined as 'PUREVSS-SNAP'. .PARAMETER ShadowCopyAlias Required. Name of the shadow copy alias. .PARAMETER VerboseMode Optional. "On" or "Off". If set to 'off', verbose mode for the Diskshadow command is disabled. Default is 'on'. .INPUTS None .OUTPUTS None .EXAMPLE New-VolumeShadowCopy -Volume Volume01 -ShadowCopyAlias MyAlias Adds a new volume shadow copy of Volume01 using Diskshadow with an alias of 'MyAlias'. .NOTES See https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/diskshadow for more information on the Diskshadow utility. #> [CmdletBinding()] Param ( [Parameter(Mandatory = $True)][string[]]$Volume, [Parameter(Mandatory = $False)][string]$ScriptName = "PUREVSS-SNAP", [Parameter(Mandatory = $True)][string]$ShadowCopyAlias, [ValidateSet("On", "Off")][string]$VerboseMode = "On" ) $dsh = "./$ScriptName.PFA" foreach ($Vol in $Volume) { "ADD VOLUME $Vol ALIAS $ShadowCopyAlias PROVIDER {781c006a-5829-4a25-81e3-d5e43bd005ab}" } 'RESET', 'SET CONTEXT PERSISTENT', 'SET OPTION TRANSPORTABLE', "SET VERBOSE $VerboseMode", 'BEGIN BACKUP', "ADD VOLUME $Volume ALIAS $ShadowCopyAlias PROVIDER {781c006a-5829-4a25-81e3-d5e43bd005ab}", 'CREATE', 'END BACKUP' | Set-Content $dsh DISKSHADOW /s $dsh Remove-Item $dsh } #endregion #region Update-DriveInformation function Update-DriveInformation() { <# .SYNOPSIS Updates drive letters and assigns a label. .DESCRIPTION Thsi cmdlet will update the current drive letter to the new drive letter, and assign a new drive label if specified. .PARAMETER NewDriveLetter Required. Drive lettwre without the colon. .PARAMETER CurrentDriveLetter Required. Drive lettwre without the colon. .PARAMETER NewDriveLabel Optional. Drive label text. Defaults to "NewDrive". .INPUTS None .OUTPUTS None .EXAMPLE Update-DriveInformation -NewDriveLetter S -CurrentDriveLetter M Updates the drive letter from M: to S: and labels S: to NewDrive. #> [CmdletBinding()] Param ( [Parameter(Mandatory = $True)][string]$NewDriveLetter, [Parameter(Mandatory = $True)][string]$CurrentDriveLetter, [Parameter(Mandatory = $False)][string]$NewDriveLabel = "NewDrive" ) $Drive = Get-WmiObject -Class Win32_Volume | Where-Object { $_.DriveLetter -eq "$($CurrentDriveLetter):" } if (!($NewDriveLabel)) { Set-WmiInstance -Input $Drive -Arguments @{ DriveLetter = "$($NewDriveLetter):" } | Out-Null } else { Set-WmiInstance -Input $Drive -Arguments @{ DriveLetter = "$($NewDriveLetter):"; Label = "$($NewDriveLabel)" } | Out-Null } } #endregion #region Set-TlsVersions function Set-TlsVersions() { <# .SYNOPSIS Sets the TLS Version in the local registry. .DESCRIPTION This cmdlet disables TLS version 1.0 and enables TLS Versions 1.1, 1.2, and 1.3 in the local registry. It will prompt for creating a backup of the registry before execution for recovery purposes. .INPUTS None .OUTPUTS Backup of the registry before the changes are implemented. .EXAMPLE Set-TlsVersions Prompts for creation of a registry backup, disables TLS version 1.0, and enables TLS versions 1.1, 1.2, and 1.3. #> [CmdletBinding()] Param ( ) Write-Host "WARNING" -ForegroundColor Yellow -NoNewline Write-Host ": This cmdlet will change TLS protocol settings in the Registry. It is ***highly*** recommended to make a backup of your registry before executing this cmdlet." Write-Host " " Write-Host ": Would you like to create a complete registry backup file before proceeding?" $resp = Read-Host -Prompt "Y/N?" if ($resp.ToUpper() -eq 'Y') { Write-Host "A registry backup is being generated. It will be located in your $env:temp folder as registrybackup.reg." cmd /c regedit /E $env:temp\registrybackup.reg if (!(Test-Path $env:temp\registrybackup.reg -PathType leaf)) { Write-Host "WARNING" -ForegroundColor Yellow -NoNewline Write-Host ": Registry backup failed. Please proceed with caution or manually backup the registry." } else { Write-Host "SUCCESS" -ForegroundColor Green -NoNewline Write-Host ": The registry backup was successful." } } Write-Host " " Write-Host "REQUIRED ACTION: Disable TLS 1.0 and enable TLS versions 1.1, 1.2, and 1.3 on this computer?" $resp = Read-Host -Prompt "Y/N?" if ($resp.ToUpper() -eq 'Y') { # Disable TLS v1.0 New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Server' -Force | Out-Null New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Client' -Force | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Server' -Name 'Enabled' -Value '0' –PropertyType 'DWORD' | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Server' -Name 'DisabledByDefault' -Value '1' –PropertyType 'DWORD' | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Client' -Name 'Enabled' -Value '0' –PropertyType 'DWORD' | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Client' -Name 'DisabledByDefault' -Value '1' –PropertyType 'DWORD' | Out-Null Write-Host "SUCCESS" -ForegroundColor Green -NoNewline Write-Host ": TLS version 1.0 disabled." # Enable TLS v1.1 New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Server' -Force | Out-Null New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Client' -Force | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Server' -Name 'Enabled' -Value '1' –PropertyType 'DWORD' | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Server' -Name 'DisabledByDefault' -Value '0' –PropertyType 'DWORD' | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Client' -Name 'Enabled' -Value '1' –PropertyType 'DWORD' | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Client' -Name 'DisabledByDefault' -Value '0' –PropertyType 'DWORD' | Out-Null Write-Host "SUCCESS" -ForegroundColor Green -NoNewline Write-Host ": TLS version 1.1 enabled." # Enable TLS v1.2 New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server' -Force | Out-Null New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client' -Force | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server' -Name 'Enabled' -Value '1' –PropertyType 'DWORD' | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server' -Name 'DisabledByDefault' -Value '0' –PropertyType 'DWORD' | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client' -Name 'Enabled' -Value '1' –PropertyType 'DWORD' | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client' -Name 'DisabledByDefault' -Value '0' –PropertyType 'DWORD' | Out-Null Write-Host "SUCCESS" -ForegroundColor Green -NoNewline Write-Host ": TLS version 1.2 enabled." # Enable TLS v1.3 New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3\Server' -Force | Out-Null New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3\Client' -Force | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3\Server' -Name 'Enabled' -Value '1' –PropertyType 'DWORD' | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3\Server' -Name 'DisabledByDefault' -Value '0' –PropertyType 'DWORD' | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3\Client' -Name 'Enabled' -Value '1' –PropertyType 'DWORD' | Out-Null New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3\Client' -Name 'DisabledByDefault' -Value '0' –PropertyType 'DWORD' | Out-Null Write-Host "SUCCESS" -ForegroundColor Green -NoNewline Write-Host ": TLS version 1.3 enabled." } else { Write-Host "CANCELLED" -ForegroundColor Yellow -NoNewline Write-Host ": Action cancelled at user request." } } #endregion #region Get-WindowsDiagnosticInfo function Get-WindowsDiagnosticInfo() { <# .SYNOPSIS Gathers Windows operating system, hardware, and software information, including logs for diagnostics. This cmdlet requires Administrative permissions. .DESCRIPTION This script will collect detailed information on the Windows operating system, hardware and software components, and collect event logs in .evtx and .csv formats. It will optionally collect WSFC logs and optionally compress all gathered files intoa .zip file for easy distribution. This script will place all of the files in a parent folder in the root of the C:\ drive that is named after the computer NetBios name($env:computername). Each section of information gathered will have it's own child folder in that parent folder. .PARAMETER Cluster Optional. Collect Windows Server Failover Cluster (WSFC) logs. .PARAMETER Compress Optional. Compress the folder that contains all the gathered data into a zip file. The file name will be the computername_diagnostics.zip. .INPUTS None .OUTPUTS Diagnostic outputs in txt and event log files. Compressed zip file. .EXAMPLE Get-WindowsDiagnosticInfo.ps1 -Cluster Retrieves all of the operating system, hardware, software, event log, and WSFC logs into the default folder. .EXAMPLE Get-WindowsDiagnosticInfo.ps1 -Compress Retrieves all of the operating system, hardware, software, event log, and compresses the parent folder into a zip file that will be created in the root of the C: drive. .NOTES This cmdlet requires Administrative permissions. #> [cmdletbinding()] Param( [Parameter(ValuefromPipeline = $false, Mandatory = $false)][switch]$Cluster, [Parameter(ValuefromPipeline = $false, Mandatory = $false)][switch]$Compress ) Get-ElevatedStatus # create root outfile $folder = Test-Path -PathType Container -Path "c:\$env:computername" if ($folder -eq "false") { New-Item -Path "c:\$env:computername" -ItemType "directory" | Out-Null } Set-Location -Path "c:\$env:computername" Write-Host "" # system information Write-Host "Retrieving MSInfo32 information. This will take some time to complete. Please wait..." -ForegroundColor Yellow msinfo32 /report msinfo32.txt | Out-Null Write-Host "Completed MSInfo32 information." -ForegroundColor Green Write-Host "" ## hotfixes Write-Host "Retrieving Hotfix information..." -ForegroundColor Yellow Get-WmiObject -Class Win32_QuickFixEngineering | Select-Object -Property Description, HotFixID, InstalledOn | Format-Table -Wrap -AutoSize | Out-File "HotfixesQFE.txt" Get-HotFix | Format-Table -Wrap -AutoSize | Out-File "Get-Hotfix.txt" Write-Host "Completed HotfixQFE information." -ForegroundColor Green Write-Host "" # storage information New-Item -Path "c:\$env:computername\storage" -ItemType "directory" | Out-Null Set-Location -Path "c:\$env:computername\storage" Write-Host "Retrieving Storage information..." -ForegroundColor Yellow fsutil behavior query Di |