RMS_Support_Tool.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 |
#Requires -Version 5.1 <# ╔═══════════════════════════════════════════════════════════════════════════╗ ║ WARNING: DO NOT MODIFY OR DELETE ANY COMPONENT OF THE RMS_Support_Tool OR ║ ║ THE RESULTING TRACE FILES, AS THIS WILL RESULT IN INCORRECT INFORMATION ║ ║ WHEN ANALYZING YOUR ENVIRONMENT. ║ ╚═══════════════════════════════════════════════════════════════════════════╝ #> # Copyright (c) Microsoft Corporation # Licensed under the MIT License <# Defining global variables #> [Version]$Global:strVersion = "2.0.3" <# Defining version #> $Global:strWindowsEdition = (Get-CimInstance Win32_OperatingSystem).Caption <# Defining variable to evaluate Windows version #> $Global:strTempFolder = (Get-Item Env:"Temp").Value <# Defining variable for user temp folder #> $Global:strUserLogPath = New-Item -ItemType Directory -Force -Path $Global:strTempFolder"\RMS_Support_Tool\Logs" <# Defining default user log path #> $Global:bolRunningAsAdmin = [bool](([System.Security.Principal.WindowsIdentity]::GetCurrent()).Groups -match "S-1-5-32-544") <# Defining control variable for permission checks #> $Global:strDefaultWindowTitle = $Host.UI.RawUI.WindowTitle <# Caching window title #> $Global:host.UI.RawUI.WindowTitle = "RMS_Support_Tool ($Global:strVersion)" <# Set window title #> $Global:strUniqueLogFolder = $null <# Defining variable for unique user log folder #> $Global:MenuAnalyzeExtended = $false <# Defining variable for ANALYZE menu handling #> $Global:MenuCollectExtended = $false <# Defining variable for COLLECT menu handling #> $Global:bolCommingFromMenu = $false <# Defining control variable for menu handling inside function calls #> $Global:FormatEnumerationLimit = -1 <# Defining variable to show full Format-List for arrays #> <# Predefine connection settings #> [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 [System.Net.WebRequest]::DefaultWebProxy = [System.Net.WebRequest]::GetSystemWebProxy() [System.Net.WebRequest]::DefaultWebProxy.Credentials = [System.Net.CredentialCache]::DefaultNetworkCredentials <# Core function definitions for script module #> Function RMS_Support_Tool { <# .SYNOPSIS The 'RMS Support Tool' provides the functionality to reset all Microsoft® AIP/MIP/AD RMS client services and collect and analyze data for troubleshooting. .DESCRIPTION The 'RMS Support Tool' provides the functionality to reset all Microsoft® AIP/MIP/AD RMS client services. Its main purpose is to delete the currently downloaded policies, reset all settings for AIP/MIP/AD RMS services, and it can also be used to collect and analyze troubleshooting data. .NOTES Please find more information on this website about how to use the RMS_Support_Tool: https://aka.ms/RMS_Support_Tool Note: - Please only run RMS_Support_Tool if you have been prompted to do so by a Microsoft® support engineer. - It is recommended to test the RMS_Support_Tool with a test environment before executing it in a live environment. - Do not modify any component of the RMS_Support_Tool in any kind, as this will result in incorrect information in the analysis of your environment. - Nomenclature: AIP = Azure Information Protection. MSIP/MIP = Microsoft® Information Protection. MSIPC = Microsoft® Information Protection Client. RMS = Rights Management Service. AD RMS = Active Directory Rights Management Service. MIT LICENSE Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: DISCLAIMER OF WARRANTY: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. PLEASE DO UNDERSTAND THAT THERE IS NO GUARANTEE THAT THIS SOFTWARE WILL RUN WITH ANY GIVEN ENVIRONMENT OR CONFIGURATION. BY INSTALLING AND USING THE SOFTWARE YOU ACCEPT THIS DISCLAIMER OF WARRANTY. IF YOU DO NOT ACCEPT THE TERMS, DO NOT INSTALL OR USE THIS SOFTWARE. VERSION 2.0.3 CREATE DATE 08/06/2021 AUTHOR Claus Schiroky Customer Service & Support - EMEA Modern Work Team Microsoft Deutschland GmbH HOMEPAGE https://aka.ms/RMS_Support_Tool SPECIAL THANKS TO Matthias Meiling Information Protection - EMEA Security Team Microsoft Romania SRL Steve Light Information Protection - ATC Security Team Microsoft Corp. PRIVACY STATEMENT https://privacy.microsoft.com/PrivacyStatement COPYRIGHT Copyright (c) Microsoft Corporation. .PARAMETER Information This parameter shows syntax and a description. .PARAMETER Disclaimer This paramter displays the disclaimer of warranty. Please read it carefully, and act accordingly. .PARAMETER Help This parameter opens the help file. .PARAMETER Reset IMPORTANT: Before you proceed with this option, please close all open applications. This option removes AIP/MIP/AD RMS certificates, policy templates, labels and corresponding settings. Before, the RMS_Support_Tool creates a backup copy of existing custom configurations from the following registry key: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSIPC\ServiceLocation] The name of the backup file is ServiceLocationBackup.reg. Note: - Reset with the default argument will not reset all settings, but only user-specific settings if you run PowerShell with user permissions. This is sufficient in most cases to reset Microsoft® 365 desktop applications, while a complete reset is useful for all other applications. - f you want a complete reset, you must run the RMS_Support_Tool in an administrative PowerShell window as a user with local administrative permissions.When an Office 2013 installation is detected, modern authentication (ADAL) is automatically enabled as a precaution. Valid <String> arguments are: "Default", or "Silent": Default: When you run PowerShell with user permissions, this argument removes only user-specific AIP/MIP/AD RMS certificates, policy templates and settings: PS C:\> RMS_Support_Tool -Reset Default All group policy settings are reapplied by "gpupdate /force", and the following registry keys are cleaned up: [HKCU:\SOFTWARE\Classes\Local Settings\Software\Microsoft\MSIPC] [HKCU:\SOFTWARE\Classes\Local Settings\Software\Microsoft\AIPMigration] [HKCU:\SOFTWARE\Classes\Microsoft.IPViewerChildMenu] [HKCU:\SOFTWARE\Microsoft\Office\15.0\Common\DRM] [HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\DRM] [HKCU:\SOFTWARE\Wow6432Node\Microsoft\Office\15.0\Common\DRM] [HKCU:\SOFTWARE\Wow6432Node\Microsoft\Office\16.0\Common\DRM] [HKCU:\SOFTWARE\Microsoft\XPSViewer\Common\DRM] [HKCU:\SOFTWARE\Microsoft\MSIP] [HKCU:\SOFTWARE\Microsoft\MSOIdentityCRL] [HKCR:\AllFilesystemObjects\shell\Microsoft.Azip.Inspect] [HKCR:\AllFilesystemObjects\shell\Microsoft.Azip.RightClick] The DRMEncryptProperty and OpenXMLEncryptProperty registry setting are purged of the following keys: [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\15.0\Common\Security] [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\16.0\Common\Security] The following file system folders are cleaned up as well: %LOCALAPPDATA%\Microsoft\Office\DLP\mip %TEMP%\Diagnostics %LOCALAPPDATA%\Microsoft\MSIP %LOCALAPPDATA%\Microsoft\MSIPC %LOCALAPPDATA%\Microsoft\DRM When you run the RMS_Support_Tool in an administrative PowerShell window as a user with local administrative permissions, the following registry keys are cleaned up in addition: [HKLM:\SOFTWARE\Wow6432Node\Microsoft\MSIPC] [HKLM:\SOFTWARE\Microsoft\MSIPC] [HKLM:\SOFTWARE\Microsoft\MSDRM] [HKLM:\SOFTWARE\Wow6432Node\Microsoft\MSDRM] [HKLM:\SOFTWARE\WOW6432Node\Microsoft\MSIP] Silent: This command line-parameter argument does the same as "-Reset Default", but does not print any output - unless an error occurs when attempting to reset: PS C:\> RMS_Support_Tool -Reset Silent If a silent reset triggers an error, you can use the additional parameter "-Verbose" to find out more about the cause of the error: PS C:\> RMS_Support_Tool -Reset Silent -Verbose You can also review the Script.log file for errors of silent reset. .PARAMETER RecordProblem IMPORTANT: Before you proceed with this option, please close all open applications. Note: - When you run PowerShell with user permissions, neither CAPI2 or AIP event logs, network trace, nor filter drivers are recorded. - If you want a complete record, you must run the RMS_Support_Tool in an administrative PowerShell window as a user with local administrative permissions. As a first step, this parameter cleans up existing MSIP/MSIPC log folders, then it activates the required logging, tracing or debugging mechanisms by implementing registry settings, and enabling some Windows event logs. This process will be reflected by a progress bar “Enable logging...". In the event that you accidentally close the PowerShell window while logging is enabled, the RMS_Support_Tool disables logging the next time you start it. In a second step asks you to reproduce the problem. While you’re doing so, the RMS_Support_Tool collects and records data. Once you have reproduced the problem, all collected files will be stored into the default logs folder (%temp%\RMS_Support_Tool\Logs). Every time you call this option, a new unique subfolder will be created in the logs-folder that reflects the date and time when it was created, e.g. “210209-133005”. While the files are being cached, you will see a progress bar “Collecting logs...". In the last step, the RMS_Support_Tool resets all activated log, trace, and debug settings to their defaults. This process will be reflected by a progress bar “Disable logging...". You can then review the log files in the logs folder. .PARAMETER CollectAIPServiceConfiguration This parameter collects AIP service configuration information of your tenant. Results are written into the log file AIPServiceConfiguration.log in the subfolder "Collect" of the Logs folder. Note: - You must run the RMS_Support_Tool in an administrative PowerShell window as a user with local administrative permissions to continue with this option. Please contact your administrator if necessary. - You need to know your Microsoft® 365 global administrator account information to proceed with this option, as you will be asked for your credentials. .PARAMETER CollectAIPProtectionTemplates This parameter collects AIP protection templates of your tenant. Results are written into the log file AIPProtectionTemplates.log in the subfolder "Collect" of the Logs folder. Note: - You must run the RMS_Support_Tool in an administrative PowerShell window as a user with local administrative permissions to continue with this option. Please contact your administrator if necessary. - You need to know your Microsoft® 365 global administrator account information to proceed with this option, as you will be asked for your credentials. .PARAMETER CollectLabelsAndPolicies This parameter collects the labels and policy definitions from your Microsoft® 365 Security Center. Those with protection and those with classification only. Results are written into log file LabelsAndPolicies.log in the subfolder "Collect" of the Logs folder. Note: - You must run the RMS_Support_Tool in an administrative PowerShell window as a user with local administrative permissions to continue with this option. Please contact your administrator if necessary. - You need to know your Microsoft® 365 global administrator account information to proceed with this option, as you will be asked for your credentials. - The Microsoft® Exchange Online PowerShell V2 cmdlets are required to proceed this option. If you do not have this module installed, RMS_Support_Tool will try to install it from PowerShell Gallery. .PARAMETER AnalyzeEndpointURLs This parameter analyzes important enpoint URLs. The URLs are taken from your local registry or your tenant's AIP service configuration information, and extended by additional relevant URLs. In a first step, this parameter is used to check whether you can access the URL. In a second step, the issuer of the corresponding certificate of the URL is validated. This process is represented by an output with the Tenant Id, Endpoint name, URL, Issuer, and the Status of the validation of the certificate issuer. For example: ----------------------------------------------- Tenant Id: 48fc04bd-c84b-44ac-91b7-a4c5eefd5ac1 ----------------------------------------------- Endpoint: CertificationDistributionPointUrl URL: https://48fc04bd-c84b-44ac-91b7-a4c5eefd5ac1.rms.na.aadrm.com/_wmcs/certification Issuer: C=US, S=Washington, L=Redmond, O=Microsoft Corporation, CN=Microsoft Secure Server CA 2011 Status: Ok (200) In addition, analyze results are written into log file EndpointURLs.log in the subfolder "Analyze" of the Logs folder. Note: - You must run the RMS_Support_Tool in an administrative PowerShell window as a user with local administrative permissions to continue with this option, if the corresponding Microsoft® 365 desktop application is not bootstraped. Please contact your administrator if necessary. - You need to know your Microsoft® 365 global administrator account information to proceed with this option, as you will be asked for your credentials. .PARAMETER AnalyzeProtection This option analyzes whether the current user is able to use protection. Therefore an ad-hoc protection policy for custom permissions is created, and used to validate the protection with a sample file (Protection.txt). The result is represented by an output with the status of that process. For example: License : {[Users, RMSSupToolEncrTest@microsoft.com], [Permissons, VIEWER]} File : C:\Users\<UserName>\AppData\Local\Temp\RMS_Support_Tool\Logs\Analyze\Protection.ptxt Verification : Successfull In addition, analyze results are written to the Protection.log file, and the resulting protected file (Protection.ptxt) is stored in the subfolder "Analyze" of the Logs folder. Note: - Please pay attention to point 1. Microsoft® Azure Information Protection cmdlets of the requirements section of this help file. .PARAMETER CheckForUpdate This parameter checks if a new version is available for the RMS_Support_Tool. If you run the RMS_Support_Tool with administrative permissions, it automatically performs each new update. Note: - Under certain circumstances, you may need to run the RMS_Support_Tool in an administrative PowerShell window as a user with local administrative permissions to perform an update. - If the RMS_Support_Tool was not installed via PowerShell Gallery, any older version must first be removed before an update or installation can be performed. .PARAMETER CompressLogs This command line parameter should always be used at the very end of a scenario. IMPORTANT: Do not modify or delete any of the resulting trace files, as this will result in incorrect information when analyzing your environment. This parameter compresses all collected log files and folders into a .zip archive, and the corresponding file is saved to your desktop. In addition, the default logs folder (%temp%\RMS_Support_Tool\Logs) is cleaned. After this step you can send/upload the .zip file for the Microsoft® support engineer. .PARAMETER Menu This will start the RMS_Support_Tool with the default menu. .PARAMETER Version This parameter displays the version of the RMS_Support_Tool. .EXAMPLE RMS_Support_Tool -Information This shows syntax and description. .EXAMPLE RMS_Support_Tool -Disclaimer This displays the disclaimer of warranty. Please read it carefully, and act accordingly. .EXAMPLE RMS_Support_Tool -Help This parameter opens the help file. .EXAMPLE RMS_Support_Tool -Reset Default This parameter removes AIP/MIP/AD RMS certificates, policy templates and corresponding settings. .EXAMPLE RMS_Support_Tool -Reset Silent This parameter removes all AIP/MIP/AD RMS certificates, policy templates and all corresponding user settings without any output. .EXAMPLE RMS_Support_Tool -RecordProblem This parameter removes all AIP/MIP/AD RMS certificates, policy templates and all corresponding machine settings, and starts recording data. .EXAMPLE RMS_Support_Tool -CollectAIPServiceConfiguration This parameter collects AIP service configuration information of your tenant. .EXAMPLE RMS_Support_Tool -CollectAIPProtectionTemplates This parameter collects AIP protection templates of your tenant. .EXAMPLE RMS_Support_Tool -CollectLabelsAndPolicies This parameter collects the labels and policy definitions from your Microsoft® 365 Security Center .EXAMPLE RMS_Support_Tool -AnalyzeEndpointURLs This parameter analyzes important enpoint URLs, and the results are written into a log file. .EXAMPLE RMS_Support_Tool -AnalyzeProtection This option analyzes whether the current user is able to use protection. .EXAMPLE RMS_Support_Tool -CompressLogs This parameter compress all collected logs files into a .zip archive, and the corresponding path and file name is displayed. .EXAMPLE RMS_Support_Tool -CheckForUpdate This parameter checks if a new version is available for the RMS_Support_Tool. .EXAMPLE RMS_Support_Tool -RecordProblem -CompressLogs This parameter removes AIP/MIP/AD RMS certificates, policy templates and corresponding settings, starts recording data, and compress all collected logs files to a .zip archive in the users desktop folder. .EXAMPLE RMS_Support_Tool -Menu This will start the RMS_Support_Tool with the default menu. .EXAMPLE RMS_Support_Tool -Version This parameter displays the version of the RMS_Support_Tool. .LINK https://aka.ms/RMS_Support_Tool #> <# Defining CmdletBinding attribut to define parameter settings #> [CmdletBinding ( HelpURI = "https://aka.ms/RMS_Support_Tool", <# URL for help file; used with parameter Help #> PositionalBinding = $false, <# Parameters in the function are not positional #> DefaultParameterSetName = "Menu" <# If no parameter has been selected, this will be the default #> )] <# Parameter definitions #> Param ( <# Parameter definition for Information #> [Alias("i")] [Parameter(ParameterSetName = "Information")] [switch]$Information, <# Parameter definition for Disclaimer #> [Alias("d")] [Parameter(ParameterSetName = "Disclaimer")] [switch]$Disclaimer, <# Parameter definition for Help #> [Alias("h")] [Parameter(ParameterSetName = "Help")] [switch]$Help, <# Parameter definition for Reset #> [Alias("r")] [Parameter(ParameterSetName = "Reset and logging")] [ValidateSet("Default", "Silent")] [string]$Reset="Default", <# Parameter definition for RecordProblem #> [Alias("p")] [parameter(ParameterSetName = "Reset and logging")] [switch]$RecordProblem, <# Parameter definition for CollectAIPServiceConfiguration #> [Alias("a")] [Parameter(ParameterSetName = "Reset and logging")] [switch]$CollectAIPServiceConfiguration, <# Parameter definition for CollectAIPProtectionTemplates #> [Alias("o")] [Parameter(ParameterSetName = "Reset and logging")] [switch]$CollectAIPProtectionTemplates, <# Parameter definition for CollectLabelsAndPolicies #> [Alias("l")] [Parameter(ParameterSetName = "Reset and logging")] [switch]$CollectLabelsAndPolicies, <# Parameter definition for AnalyzeEndpointURLs #> [Alias("u")] [Parameter(ParameterSetName = "Reset and logging")] [switch]$AnalyzeEndpointURLs, <# Parameter definition for AnalyzeProtection #> [Alias("t")] [Parameter(ParameterSetName = "Reset and logging")] [switch]$AnalyzeProtection, <# Parameter definition for CheckForUpdate #> [Parameter(ParameterSetName = "Update")] [switch]$CheckForUpdate, <# Parameter definition for CompressLogs, with preset. #> [Alias("z")] [Parameter(ParameterSetName = "Reset and logging")] [switch]$CompressLogs, <# Parameter definition for Menu #> [Parameter(ParameterSetName = "Menu")] [switch]$Menu, <# Parameter definition for Version #> [Alias("v")] [Parameter(ParameterSetName = "Version")] [switch]$Version ) <# Action if the parameter '-Information' has been selected #> If ($PsCmdlet.ParameterSetName -eq "Information") { <# Calling information function #> fncInformation <# Verbose/Logging #> fncLogging -strLogFunction "RMS_Support_Tool" -strLogDescription "Information" -strLogValue "Proceeded" } <# Action if the parameter '-Disclaimer' has been selected #> If ($PSBoundParameters.ContainsKey("Disclaimer")) { <# Calling disclaimer function #> fncDisclaimer <# Verbose/Logging #> fncLogging -strLogFunction "RMS_Support_Tool" -strLogDescription "Disclaimer" -strLogValue "Proceeded" } <# Action if the parameter '-Help' has been selected #> If ($PSBoundParameters.ContainsKey("Help")) { <# Calling help function #> fncHelp <# Verbose/Logging #> fncLogging -strLogFunction "RMS_Support_Tool" -strLogDescription "Help" -strLogValue "Proceeded" } <# Action if the parameter '-Reset' has been selected #> If ($PSBoundParameters.ContainsKey("Reset")) { <# Verbose/Logging #> fncLogging -strLogFunction "RMS_Support_Tool" -strLogDescription "Parameter Reset" -strLogValue "Triggered" <# Calling reset function #> fncReset -strResetMethod $Reset } <# Action if the parameter '-RecordProblem' has been selected #> If ($PSBoundParameters.ContainsKey("RecordProblem")) { <# Verbose/Logging #> fncLogging -strLogFunction "RMS_Support_Tool" -strLogDescription "Parameter RecordProblem" -strLogValue "Triggered" <# Calling record problem function #> fncRecordProblem } <# Action if the parameter '-CollectAIPServiceConfiguration' has been selected #> If ($PSBoundParameters.ContainsKey("CollectAIPServiceConfiguration")) { <# Verbose/Logging #> fncLogging -strLogFunction "RMS_Support_Tool" -strLogDescription "Parameter CollectAIPServiceConfiguration" -strLogValue "Triggered" <# Calling function to collect AIP configuration #> fncCollectAIPServiceConfiguration } <# Action if the parameter '-CollectAIPProtectionTemplates' has been selected #> If ($PSBoundParameters.ContainsKey("CollectAIPProtectionTemplates")) { <# Verbose/Logging #> fncLogging -strLogFunction "RMS_Support_Tool" -strLogDescription "Parameter CollectAIPProtectionTemplates" -strLogValue "Triggered" <# Calling function to collect AIP protection templates #> fncCollectAIPProtectionTemplates } <# Action if the parameter '-CollectLabelsAndPolicies' has been selected #> If ($PSBoundParameters.ContainsKey("CollectLabelsAndPolicies")) { <# Verbose/Logging #> fncLogging -strLogFunction "RMS_Support_Tool" -strLogDescription "Parameter CollectLabelsAndPolicies" -strLogValue "Triggered" <# Calling function to collect labels and policies #> fncCollectLabelsAndPolicies } <# Action if the parameter '-AnalyzeEndpointURLs' has been selected #> If ($PSBoundParameters.ContainsKey("AnalyzeEndpointURLs")) { <# Verbose/Logging #> fncLogging -strLogFunction "RMS_Support_Tool" -strLogDescription "Parameter AnalyzeEndpointsURLs" -strLogValue "Triggered" <# Calling AnalyzeEndpoints function #> fncAnalyzeEndpointURLs } <# Action if the parameter '-AnalyzeProtection' has been selected #> If ($PSBoundParameters.ContainsKey("AnalyzeProtection")) { <# Verbose/Logging #> fncLogging -strLogFunction "RMS_Support_Tool" -strLogDescription "Parameter AnalyzeProtection" -strLogValue "Triggered" <# Calling AnalyzeProtection function #> fncAnalyzeProtection } <# Action if the parameter '-CheckForUpdate' has been selected #> If ($PSBoundParameters.ContainsKey("CheckForUpdate")) { <# Verbose/Logging #> fncLogging -strLogFunction "RMS_Support_Tool" -strLogDescription "Parameter CheckForUpdate" -strLogValue "Triggered" <# Calling CheckForUpdate function #> fncCheckForUpdate } <# Action if the parameter '-CompressLogs' has been selected #> If ($PSBoundParameters.ContainsKey("CompressLogs")) { <# Verbose/Logging #> fncLogging -strLogFunction "RMS_Support_Tool" -strLogDescription "Parameter CompressLogs" -strLogValue "Triggered" <# Calling function to compress all logs into a zip archive #> fncCompressLogs <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Exit function #> Break } <# Action if the parameter '-Menu' has been selected; default without any parameter #> If ($PsCmdlet.ParameterSetName -eq "Menu") { <# Calling function to show menu #> fncShowMenu <# Verbose/Logging #> fncLogging -strLogFunction "RMS_Support_Tool" -strLogDescription "Menu" -strLogValue "Proceeded" } <# Action if the parameter '-Version' has been selected #> If ($PSBoundParameters.ContainsKey("Version")) { <# Calling function to display version information #> fncShowVersion <# Verbose/Logging #> fncLogging -strLogFunction "RMS_Support_Tool" -strLogDescription "Version" -strLogValue "Proceeded" } } <# Function that creates some default log enties #> Function fncCreateDefaultLogEntries { <# Verbose/Logging #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "Script module version" -strLogValue $Global:strVersion <# Script module version #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "Windows edition" -strLogValue $Global:strWindowsEdition <# Windows edition #> <# Verbose/Logging: Windows version #> If ((Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\" -Name ReleaseID -ErrorAction SilentlyContinue).ReleaseId) { <# Windows version and release ID #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "Windows version" -strLogValue $([System.Environment]::OSVersion.Version) ($((Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\" -Name ReleaseID).ReleaseId)) } Else { <# Windows version #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "Windows version" -strLogValue $([System.Environment]::OSVersion.Version) } <# Verbose/Logging #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "Windows architecture" -strLogValue $((Get-CimInstance Win32_OperatingSystem -Verbose:$false).OSArchitecture) <# Windows architecture #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "Username" -strLogValue $([System.Environment]::UserName) <# Username #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "Machine name" -strLogValue $([System.Environment]::MachineName) <# Machine name #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "PowerShell Host" -strLogValue $($Host.Name.ToString()) <# PowerShell host #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "PowerShell Version" -strLogValue $($Host.Version.ToString()) <# PowerShell version #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "PowerShell Edition" -strLogValue $($PSVersionTable.PSEdition.ToString()) <# PowerShell edition #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "PowerShell Build version" -strLogValue $($PSVersionTable.BuildVersion) <# PowerShell build version #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "PowerShell Current culture" -strLogValue $($Host.CurrentCulture.ToString()) <# PowerShell current culture #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "PowerShell Current UI culture" -strLogValue $($Host.CurrentUICulture.ToString()) <# PowerShell current UI culture #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "PowerShell CLR version" -strLogValue $($PSVersionTable.CLRVersion.ToString()) <# PowerShell CRL version #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "PowerShell WSManStack version" -strLogValue $($PSVersionTable.WSManStackVersion.ToString()) <# PowerShell WSManStack version #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "PowerShell PSRemotingProtocol version" -strLogValue $($PSVersionTable.PSRemotingProtocolVersion.ToString()) <# PowerShell PSRemotingProtocol version #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "PowerShell Serialization version" -strLogValue $($PSVersionTable.SerializationVersion.ToString()) <# PowerShell Serialization version #> <# Log, if running with local administrative permissions #> If ($Global:bolRunningAsAdmin -eq $true) { <# Verbose/Logging #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "PowerShell Mode" -strLogValue "Administrator" } Else{ <# Verbose/Logging #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "PowerShell mode" -strLogValue "User" } <# Verbose/Logging: AIP client version #> If (Get-Module -ListAvailable -Name AzureInformationProtection -Verbose:$false) { <# Logging: If AIP client is installed #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "AIP client version" -strLogValue $((Get-Module -ListAvailable -Name AzureInformationProtection -Verbose:$false).Version) } Else { <# Logging: If AIP client is not installed #> fncLogging -strLogFunction "fncCreateDefaultLogEntries" -strLogDescription "AIP client installed" -strLogValue $false } } <# Function for evaluating Windows and PowerShell version (Exit, if an unsupported version/environment is found) #> Function fncCheckWindowsAndPSVersion { <# Checking for supported OS versions #> If (-Not $Global:strWindowsEdition -Match "Windows 8.1" -Or -Not $Global:strWindowsEdition -Match "Windows 10" -Or -Not $Global:strWindowsEdition -Match "2012" -Or -Not $Global:strWindowsEdition -Match "Server 2016" -Or -Not $Global:strWindowsEdition -Match "Server 2019") { <# Clear global variables #> $Global:strWindowsEdition = $null <# Verbose/Logging #> fncLogging -strLogFunction "fncCheckWindowsAndPSVersion" -strLogDescription "Unsupported operating system" -strLogValue $true <# Console output #> Write-Output (Write-Host "ATTENTION: The RMS_Support_Tool does not support the operating system you're using.`nPlease ensure to use one of the following supported operating systems:`nMicrosoft® Windows 8.1, Windows 10, Windows Server 2012, Windows Server 2012 R2, Windows Server 2016 and Windows Server 2019.`n" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Exit function #> Break } <# Checking for supported PowerShell version #> If ($PSVersionTable.PSVersion.Major -cnotmatch "5") { <# Verbose/Logging #> fncLogging -strLogFunction "fncCheckWindowsAndPSVersion" -strLogDescription "Unsupported PowerShell version" -strLogValue $true <# Console output #> Write-Output (Write-Host "ATTENTION: The 'RMS_Support_Tool.psm1' cannot be run because it contained a '#requires' statement for Windows PowerShell 5.1.`nThe version of Windows PowerShell that is required by the script does not match the currently running version of Windows PowerShell $($PSVersionTable.PSVersion).`n" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Exit function #> Break } } <# Function responsable to check for new version #> Function fncCheckForUpdate { <# Check for latest version of the script module #> <# Verbose/Logging #> fncLogging -strLogFunction "fncCheckForUpdate" -strLogDescription "Update" -strLogValue "Initiated" <# Console output #> Write-Output "CHECK FOR UPDATE:`n" Write-Output "Searching for new version..." <# Defining default message for outdated version #> $Private:strOutdatedVersionMessage = "ATTENTION: You're using an outdated version of the RMS_Support_Tool.`nPlease update to the latest version by running the following command:`n`nPS C:\> Update-Module -Name RMS_Support_Tool -Force`n`nNote:`n`n- Under certain circumstances, you may need to run the RMS_Support_Tool as user with local administrative permissions to perform an update.`n- If the RMS_Support_Tool was not installed via PowerShell Gallery, any older version must first be removed before an update or installation can be performed." <# Validating connection to PowerShell Gallery by Find-Module #> If (Find-Module -Name RMS_Support_Tool -Repository PSGallery -ErrorAction SilentlyContinue -WarningAction SilentlyContinue) { <# Actions, if PowerShell Gallery can be reached #> <# Filling variable with online version information #> [Version]$Private:strOnlineVersion = (Find-Module -Name RMS_Support_Tool -Repository PSGallery).Version # Comparing local version vs. latest (online) version #> If ([Version]::new($Private:strOnlineVersion.Major, $Private:strOnlineVersion.Minor, $Private:strOnlineVersion.Build) -gt [Version]::new($Global:strVersion.Major, $Global:strVersion.Minor, $Global:strVersion.Build) -eq $true) { <# Action, if running as administrator #> If (([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator) -eq $true) { <# Update module only if the existing version was installed by PowerShell Gallery #> If ((Get-InstalledModule -Name RMS_Support_Tool -ErrorAction SilentlyContinue -WarningAction SilentlyContinue) -eq $true) { <# Console output #> Write-Output "A new version of the RMS_Support_Tool is available." Write-Output "Updating RMS_Support_Tool, please wait..." <# Updating RMS_Support_Tool #> Update-Module -Name RMS_Support_Tool -Force <# Internet availalbe: Console output #> Write-Output (Write-Host "ATTENTION: A new version of the RMS_Support_Tool has been installed.`nThe RMS_Support_Tool is now terminated.`nPlease restart with a new PowerShell session/window." -ForegroundColor Red) <# Verbose/Logging #> fncLogging -strLogFunction "fncCheckForUpdate" -strLogDescription "Script module version" -strLogValue "Updated" } Else { <# Action, if module was not installed via PowerShell Gallery #> <# Console output #> Write-Output (Write-Host $Private:strOutdatedVersionMessage -ForegroundColor Red) <# Verbose/Logging #> fncLogging -strLogFunction "fncCheckForUpdate" -strLogDescription "Script module version" -strLogValue "Outdated" } } Else { <# Actions, if running without administrative permissions #> <# Console output #> Write-Output (Write-Host $Private:strOutdatedVersionMessage -ForegroundColor Red) <# Verbose/Logging #> fncLogging -strLogFunction "fncCheckForUpdate" -strLogDescription "Script module version" -strLogValue "Outdated" } <# Signal sound #> [console]::beep(500,200) <# Verbose/Logging #> fncLogging -strLogFunction "fncCheckForUpdate" -strLogDescription "Update" -strLogValue "Proceeded" fncLogging -strLogFunction "fncCheckForUpdate" -strLogDescription "Exit script module" -strLogValue $true <# Releasing private/global variables #> [Version]$Private:strOnlineVersion = $null $Global:strWindowsEdition = $null <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Console output #> Write-Output (Write-Host "CHECK FOR UPDATE: Proceeded.`n" -ForegroundColor Green) <# Exit function #> Break } Else { <# Console output #> Write-Output "You're using the latest version of the RMS_Support_Tool." <# Verbose/Logging #> fncLogging -strLogFunction "fncCheckForUpdate" -strLogDescription "Script module version" -strLogValue "Latest" <# Console output #> Write-Output (Write-Host "CHECK FOR UPDATE: Proceeded.`n" -ForegroundColor Green) } } Else { <# Actions, if PowerShell Gallery can not be reached (no internet connection) #> <# Console output #> Write-Output (Write-Host "ATTENTION: Checking for update could not be performed.`nEither the website cannot be reached or there is no connection to the Internet.`n`nYou are using version: $Global:strVersion.`n`nPlease check on the following website if you are using the latest version of the RMS_Support_Tool, and update if necessary:`nhttps://aka.ms/RMS_Support_Tool/Latest" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Verbose/Logging #> fncLogging -strLogFunction "fncCheckForUpdate" -strLogDescription "Update" -strLogValue "No internet connection" <# Console output #> Write-Output (Write-Host "CHECK FOR UPDATE: Proceeded.`n" -ForegroundColor Green) <# Console output with pause #> fncPause } <# Signal sound #> [console]::beep(1000,200) <# Verbose/Logging #> fncLogging -strLogFunction "fncCheckForUpdate" -strLogDescription "Update" -strLogValue "Proceeded" <# Releasing private variables #> [Version]$Private:strOnlineVersion = $null } <# Function that creates single log entries for log file and verbose output #> Function fncLogging ($strLogFunction, $strLogDescription, $strLogValue) { <# Checking if path exist and create it, if not #> If ($(Test-Path -Path $Global:strUserLogPath) -Eq $false) { New-Item -ItemType Directory -Force -Path $Global:strUserLogPath | Out-Null <# Defining default user log path #> } <# Verbose output #> Write-Verbose "$(Get-Date -UFormat "%Y-%m-%d"), $(Get-Date -UFormat "%H:%M"), $strLogFunction, $strLogDescription, $strLogValue" <# Write (append) verbose output to log file #> Write-Verbose "$(Get-Date -UFormat "%Y-%m-%d"), $(Get-Date -UFormat "%H:%M"), $strLogFunction, $strLogDescription, $strLogValue" -ErrorAction SilentlyContinue -Verbose 4>> $Global:strUserLogPath"\Script.log" } <# Function to show information #> Function fncInformation { <# Verbose/Logging #> fncLogging -strLogFunction "fncInformation" -strLogDescription "Information" -strLogValue "Called" <# Action, if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Call Information #> Get-Help -Verbose:$false RMS_Support_Tool } <# Action, if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Console output #> Write-Output "NAME:`nRMS_Support_Tool`n`nDESCRIPTION:`nThe RMS_Support_Tool provides the functionality to reset all Microsoft® AIP/MIP/AD RMS client services. Its main purpose is to delete the currently downloaded policies, reset all settings for AIP/MIP/AD RMS services, and it can also be used to collect and analyze troubleshooting data.`n`nVERSION:`n$Global:strVersion`n`nAUTHOR:`nClaus Schiroky`nCustomer Service & Support - EMEA Modern Work Team`nMicrosoft Deutschland GmbH`n`nHOMEPAGE:`nhttps://aka.ms/RMS_Support_Tool`n`nSPECIAL THANKS TO:`nMatthias Meiling`nInformation Protection - EMEA Security Team`nMicrosoft Romania SRL`n`nSteve Light`nInformation Protection - ATC Security Team`nMicrosoft Corp.`n`nPRIVACY STATEMENT:`nhttps://privacy.microsoft.com/PrivacyStatement`n`nCOPYRIGHT:`nCopyright (c) Microsoft Corporation.`n" } } <# Function to show disclaimer #> Function fncDisclaimer { <# Verbose/Logging #> fncLogging -strLogFunction "fncDisclaimer" -strLogDescription "Disclaimer" -strLogValue "Called" <# Console output #> Write-Output (Write-Host "DISCLAIMER OF WARRANTY: THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. PLEASE DO UNDERSTAND THAT THERE IS NO GUARANTEE THAT THIS SOFTWARE WILL RUN WITH ANY GIVEN ENVIRONMENT OR CONFIGURATION. BY INSTALLING AND USING THE SOFTWARE YOU ACCEPT THIS DISCLAIMER OF WARRANTY. IF YOU DO NOT ACCEPT THE TERMS, DO NOT INSTALL OR USE THIS SOFTWARE.`n`nNote:`n`n- Please only run RMS_Support_Tool if you have been prompted to do so by a Microsoft® support engineer.`n- It is recommended to test the RMS_Support_Tool with a test environment before executing it in a live environment.`n- Do not modify any component of the RMS_Support_Tool in any kind, as this will result in incorrect information in the analysis of your environment.`n- Before using the RMS_Support_Tool, please ensure to read its manual:`n https://aka.ms/RMS_Support_Tool`n" -ForegroundColor Red) } <# Function to show help file #> Function fncHelp { <# Action if help file can be found in script module folder #> If ($(Test-Path $Private:PSScriptRoot"\RMS_Support_Tool.htm") -Eq $true) { <# Open help file #> Invoke-Item $Private:PSScriptRoot"\RMS_Support_Tool.htm" <# Verbose/Logging #> fncLogging -strLogFunction "fncHelp" -strLogDescription "Help" -strLogValue "Called" } <# Action if help file can't be found in script module folder #> If ($(Test-Path $Private:PSScriptRoot"\RMS_Support_Tool.htm") -Eq $false) { <# Checking if internet connection is available #> If ($(fncTestInternetAccess "github.com") -Eq $true) { <# Call online help; Set by HelpURI in CmdletBinding #> Get-Help -Verbose:$false RMS_Support_Tool -Online <# Verbose/Logging #> fncLogging -strLogFunction "fncHelp" -strLogDescription "Help" -strLogValue "Called" } Else { <# Action if web site is unavailable or if there's no internet connection #> <# Console output #> Write-Output (Write-Host "ATTENTION: The help file (RMS_Support_Tool.htm) could not be found.`nEither the website cannot be reached or there is no internet connection.`n`nNote:`n`n- If you’re working in an environment that does not have internet access, you must download the file manually, before proceeding the RMS_Support_Tool.`n- You must place the file to the location where you have stored the RMS_Support_Tool files.`n- Please download the file from the following hyperlink (from a machine where you have internet access):`n https://aka.ms/RMS_Support_Tool/Latest`n" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Verbose/Logging #> fncLogging -strLogFunction "fncHelp" -strLogDescription "Help" -strLogValue "No internet connection" } } } <# Function to reset Microsoft® AIP/MIP/AD RMS services for the current user #> Function fncReset ($strResetMethod) { <# Action if function was not called with default #> If ($strResetMethod -notmatch "Silent") { <# Console output #> Write-Output "RESET:" <# Verbose/Logging #> fncLogging -strLogFunction "fncReset" -strLogDescription "Reset Default" -strLogValue "Initiated" <# Checking if not running as administrator #> If ($Global:bolRunningAsAdmin -eq $false) { <# Console output #> Write-Output (Write-Host "ATTENTION: Please note that this will not reset all settings, but only user-specific settings.`nIf you want a complete reset, you must run the RMS_Support_Tool in an administrative PowerShell window as a user with local administrative permissions." -ForegroundColor Red) <# Console output #> Write-Output "Resetting user-specific AIP/MIP/AD RMS settings, please wait..." } Else{ <# Action if running as administrator #> <# Console output #> Write-Output "Resetting all AIP/MIP/AD RMS settings, please wait..." } } Else { <# Action if function was called with silent argument #> <# Verbose/Logging #> fncLogging -strLogFunction "fncReset" -strLogDescription "Reset Silent" -strLogValue "Initiated" } <# If "registry overrides" exist, create a backup copy #> If ($(Test-Path -Path "HKLM:\SOFTWARE\Microsoft\MSIPC\ServiceLocation") -Eq $true) { <# Backup registry settings to a reg file #> REG EXPORT "HKLM\SOFTWARE\Microsoft\MSIPC\ServiceLocation" $Private:PSScriptRoot\Logs\ServiceLocationBackup.reg /Y | Out-Null <# Console output #> Write-Output "Your ServiceLocation registry settings were stored to"$Private:PSScriptRoot\Logs\ServiceLocationBackup.reg <# Verbose/Logging #> fncLogging -strLogFunction "fncReset" -strLogDescription "Export ServiceLocation backup" -strLogValue "ServiceLocationBackup.reg" } <# Force update group policy settings #> Echo Y | gpupdate /force | Out-Null <# Cleaning user registry keys #> fncDeleteItem "HKCU:\SOFTWARE\Classes\Local Settings\Software\Microsoft\MSIPC" fncDeleteItem "HKCU:\SOFTWARE\Classes\Local Settings\Software\Microsoft\AIPMigration" fncDeleteItem "HKCU:\SOFTWARE\Classes\Microsoft.IPViewerChildMenu" fncDeleteItem "HKCU:\SOFTWARE\Microsoft\Cloud\Office" fncDeleteItem "HKCU:\SOFTWARE\Microsoft\Office\15.0\Common\DRM" fncDeleteItem "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\DRM" fncDeleteItem "HKCU:\SOFTWARE\Wow6432Node\Microsoft\Office\15.0\Common\DRM" fncDeleteItem "HKCU:\SOFTWARE\Wow6432Node\Microsoft\Office\16.0\Common\DRM" fncDeleteItem "HKCU:\SOFTWARE\Microsoft\XPSViewer\Common\DRM" fncDeleteItem "HKCU:\SOFTWARE\Microsoft\MSIP" fncDeleteItem "HKCU:\SOFTWARE\Microsoft\MSOIdentityCRL" Remove-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Security\Lables" -Name "UseOfficeForLabelling" -Force -ErrorAction SilentlyContinue | Out-Null Remove-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Office\15.0\Common\Security" -Name "DRMEncryptProperty" -Force -ErrorAction SilentlyContinue | Out-Null Remove-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Security" -Name "DRMEncryptProperty" -Force -ErrorAction SilentlyContinue | Out-Null Remove-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Security" -Name "OpenXMLEncryptProperty" -Force -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncReset" -strLogDescription "UseOfficeForLabelling" -strLogValue "Removed" fncLogging -strLogFunction "fncReset" -strLogDescription "DRMEncryptProperty" -strLogValue "Removed" fncLogging -strLogFunction "fncReset" -strLogDescription "OpenXMLEncryptProperty" -strLogValue "Removed" <# Cleaning client classes registry keys #> fncDeleteItem "HKCR:\AllFilesystemObjects\shell\Microsoft.Azip.Inspect" fncDeleteItem "HKCR:\AllFilesystemObjects\shell\Microsoft.Azip.RightClick" <# Cleaning client folders in file system #> fncDeleteItem "\\?\$env:LOCALAPPDATA\Microsoft\Office\DLP\mip" fncDeleteItem "\\?\$env:TEMP\Diagnostics" fncDeleteItem "\\?\$env:LOCALAPPDATA\Microsoft\MSIP" fncDeleteItem "\\?\$env:LOCALAPPDATA\Microsoft\MSIPC" fncDeleteItem "\\?\$env:LOCALAPPDATA\Microsoft\DRM" <# Clearing user settings and RMS templates for the current user #> If (Get-Module -ListAvailable -Name AzureInformationProtection) { <# Checking for installed AIP client #> <# Clearing user settings and RMS templates #> Clear-AIPAuthentication -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncReset" -strLogDescription "AIPAuthentication" -strLogValue "Cleared" } <# Checking for Office 2013, and enable modern authentication if installed #> If ($(fncCheckForOffice2013) -Eq $true) { <# Checking for Office 2013 registry key #> If ($(Test-Path -Path "HKCU:\SOFTWARE\Microsoft\Office\15.0") -Eq $true) { <# Creating registry key (overwrite) #> New-Item -Path "HKCU:\SOFTWARE\Microsoft\Office\15.0\Common\Identity" -ErrorAction SilentlyContinue | Out-Null <# Implementing registry settings to enable modern authentication for Office 2013 #> New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Office\15.0\Common\Identity" -Name "EnableADAL" -Value 1 -PropertyType DWord -ErrorAction SilentlyContinue | Out-Null New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Office\15.0\Common\Identity" -Name "Version" -Value 1 -PropertyType DWord -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncReset" -strLogDescription "ADAL for Office 2013" -strLogValue "Enabled" } } <# Additional actions to proceed administrative reset #> If ($Global:bolRunningAsAdmin -eq $true) { # Cleaning machine registry keys #> fncDeleteItem "HKLM:\SOFTWARE\Wow6432Node\Microsoft\MSIPC" fncDeleteItem "HKLM:\SOFTWARE\Microsoft\MSIPC" fncDeleteItem "HKLM:\SOFTWARE\Microsoft\MSDRM" fncDeleteItem "HKLM:\SOFTWARE\Wow6432Node\Microsoft\MSDRM" fncDeleteItem "HKLM:\SOFTWARE\WOW6432Node\Microsoft\MSIP" <# Verbose/Logging #> fncLogging -strLogFunction "fncReset" -strLogDescription "Reset complete" -strLogValue $true } Else{ <# Verbose/Logging #> fncLogging -strLogFunction "fncReset" -strLogDescription "Reset complete" -strLogValue $false } <# Action if function was not called silent from command line #> If ($strResetMethod -notmatch "Silent") { <# Console output #> Write-Output (Write-Host "RESET: Proceeded.`n" -ForegroundColor Green) <# Verbose/Logging #> fncLogging -strLogFunction "fncReset" -strLogDescription "Reset Default" -strLogValue "Proceeded" } Else { <# Action if function was called with the silent argument #> <# Verbose/Logging #> fncLogging -strLogFunction "fncReset" -strLogDescription "Reset Silent" -strLogValue "Proceeded" } <# Signal sound #> [console]::beep(1000,200) } <# Function to check, if Office 2013 is installed; used to enable ADAL at reset #> Function fncCheckForOffice2013 { <# Looping through uninstall registry key to find any Office application #> Get-ChildItem -Path "HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall" -Name | ForEach-Object { <# Checking for Office applications/GUIDs #> If ($_.ToString() -like "*0000000FF1CE}") { <# Checking for major version '15' = Office 2013 #> If (Get-ItemProperty $_.PSPath | Where-Object {$_.VersionMajor -eq "15"}) { <# Returning 'true', if an Office 2013 applictation was found #> Return $true <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Leaving ForEach loop #> Break } Else { <# Returning 'false', if no Office 2013 applictation was found #> Return $false <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Leaving loop #> Break } } } } <# Function to delete item/s or folders (with IO error handling); used in fncReset, and fncDisableLogging #> Function fncDeleteItem ($Private:objItem) { Try { <# Checking if key, file or folder exist and proceed with related actions #> If ($(Test-Path -Path $Private:objItem) -Eq $true) { <# Deleting folder or registry key #> Remove-Item -Path $Private:objItem -Recurse -Force -ErrorAction Stop | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncDeleteItem" -strLogDescription "Item deleted" -strLogValue $Private:objItem.TrimStart("\\?\") } } Catch [System.IO.IOException] { <# Actions if files or folders cannot be accessed, because they are locked/used by another process <#> <# Console output #> Write-Output (Write-Host "WARNING: Some items or folders are still used by another process.`nIMPORTANT: Please close all applications (or restart machine) and try again." -ForegroundColor Red) <# Verbose/Logging #> fncLogging -strLogFunction "fncDeleteItem" -strLogDescription "Item locked" -strLogValue $Private:objItem.TrimStart("\\?\") fncLogging -strLogFunction "fncDeleteItem" -strLogDescription "Reset" -strLogValue "ERROR: Reset failed" <# Releasing private variable #> $Private:objItem = $null <# Action if function was not called from the menu #> If ($Global:bolCommingFromMenu -eq $false) { <# Console output #> Write-Output (Write-Host "RESET: Failed.`n" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Interrupting Reset #> Break } <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Console output #> Write-Output (Write-Host "RESET: Failed.`n" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Console output with pause #> fncPause <# Calling menu #> fncShowMenu } } <# Releasing private variable #> $Private:objItem = $null } <# Function to copy item/s (with error handler); used in fncCollectLogging #> Function fncCopyItem ($Private:objItem, $Private:strDestination, $Private:strFileName) { Try { <# Checking if path exist and proceed with file copy #> If ($(Test-Path -Path $Private:objItem) -Eq $true) { <# Copy item/s #> Copy-Item -Path $Private:objItem -Destination $Private:strDestination -Recurse -Force -ErrorAction Stop | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncCopyItem" -strLogDescription "Item copied" -strLogValue $Private:strFileName } } Catch [System.IO.IOException] { <# Action if file cannot be accessed, because it's locked/used by another process <#> <# Verbose/Logging #> fncLogging -strLogFunction "fncCopyItem" -strLogDescription "Item locked" -strLogValue "ERROR: "$Private:objItem <# Releasing private variable #> $Private:objItem = $null $Private:strDestination = $null } <# Releasing private variables #> $Private:objItem = $null $Private:strDestination = $null } <# Function to check for internet access #> Function fncTestInternetAccess ($Private:strURL) { <# Checking if internet access is available #> If ($(Test-Connection $Private:strURL -Count 1 -Quiet) -Eq $true) { <# Return true, if we have internet access #> Return $true <# Verbose/Logging #> fncLogging -strLogFunction "fncTestInternetAccess" -strLogDescription "Internet access" -strLogValue $true } Else { <# Return false, if we do not have internet access #> Return $false <# Verbose/Logging #> fncLogging -strLogFunction "fncTestInternetAccess" -strLogDescription "Internet access" -strLogValue $false } <# Releasing private variable #> $Private:strURL = $null } <# Function to record data/problem #> Function fncRecordProblem { <# Console output #> Write-Output "RECORD PROBLEM:" Write-Output (Write-Host "ATTENTION: Before you proceed with this option, please close all open applications." -ForegroundColor Red) $Private:ReadHost = Read-Host "Only if the above is true, please press [Y]es to continue, or [N]o to cancel" <# Verbose/Logging #> fncLogging -strLogFunction "fncRecordProblem" -strLogDescription "Record Problem" -strLogValue "Initiated" <# Actions if yes was selected #> If ($Private:ReadHost -Eq "Y") { <# Checking if not running as administrator #> If ($Global:bolRunningAsAdmin -eq $false) { <# Verbose/Logging #> Write-Output (Write-Host "ATTENTION: Please note that neither CAPI2 or AIP event logs, network trace nor filter drivers are recorded.`nIf you want a complete record, you must run the RMS_Support_Tool in an administrative PowerShell window as a user with local administrative permissions." -ForegroundColor Red) } <# Console output #> Write-Output "Initializing, please wait..." <# Variables for unique log folder #> $Private:strUniqueFolderName = (Get-Date -Verbose:$false -UFormat "%y%m%d-%H%M%S") $Global:strUniqueLogFolder = $Global:strUserLogPath.ToString() + "\" + $Private:strUniqueFolderName.ToString() <# Create unique log folder #> New-Item -ItemType Directory -Force -Path $Global:strUniqueLogFolder | Out-Null <# Verbose/Logging #> fncLogging "fncRecordProblem" -strLogDescription "New log folder created" -strLogValue $Private:strUniqueFolderName <# Cleaning MSIP/MSIPC client folders in file system #> fncDeleteItem "\\?\$env:LOCALAPPDATA\Microsoft\MSIP" fncDeleteItem "\\?\$env:LOCALAPPDATA\Microsoft\MSIPC" <# Calling function to enable logging #> fncEnableLogging <# Console output, after permission check #> If ($Global:bolRunningAsAdmin -eq $false) { <# Console output, if not running with administrative permissions #> Write-Output "Record problem is now activated for user '$Env:UserName'." } Else { <# Console output if running with administrative permissions #> Write-Output "Record problem is now activated for administrator '$Env:UserName'." } <# Console output #> Write-Output (Write-Host "IMPORTANT: Now start to reproduce your problem, but leave this window open." -ForegroundColor Red) Read-Host "After reproducing the problem, close all applications you have used for, then come back here and press enter to continue" <# Console output #> Write-Output "Collecting logs, please wait...`n" <# Calling function to collect log files #> fncCollectLogging <# Function to disable/rool back logging settings #> fncDisableLogging <# Verbose/Logging #> fncLogging -strLogFunction "fncRecordProblem" -strLogDescription "Record Problem" -strLogValue "Proceeded" <# Console output #> Write-Output "Log files: $Global:strUniqueLogFolder" Write-Output (Write-Host "RECORD PROBLEM: Proceeded.`n" -ForegroundColor Green) <# Releasing variable #> $Global:strUniqueLogFolder = $null <# Signal sound #> [console]::beep(1000,200) } <# Actions if 'No' (cancel) was selected #> ElseIf ($Private:ReadHost -eq "N") { <# Verbose/Logging #> fncLogging -strLogFunction "fncRecordProblem" -strLogDescription "Record Problem" -strLogValue "Canceled" <# Action if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Exit function #> Break } <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Clearing console #> Clear-Host <# Calling show menu function #> fncShowMenu } } Else { <# Actions if any other key was pressed #> <# Verbose/Logging #> fncLogging -strLogFunction "fncRecordProblem" -strLogDescription "Record Problem" -strLogValue "Canceled" <# Action if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Exit function #> Break } <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Clearing console #> Clear-Host <# Calling show menu function #> fncShowMenu } } <# Releasing private variable #> $Private:ReadHost = $null } <# Function to initialize/enable logging #> Function fncEnableLogging { <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "Enable logging" -strLogValue "Triggered" <# Implement registry key for function fncValidateForActivatedLogging to check whether logging was left enabled (for problem record) #> If ($(Test-Path -Path "HKCU:\SOFTWARE\Microsoft\RMS_Support_Tool") -Eq $false) { <# Checking, if path exist (to check for logging enabled), and create it if not #> <# Create registry key, if does not exist #> New-Item -Path "HKCU:\SOFTWARE\Microsoft\RMS_Support_Tool" -Force | Out-Null } <# Implement registry key to check for enabled logging on next start, and rollback settings if necessary #> New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\RMS_Support_Tool" -Name "LoggingActivated" -Value $true -PropertyType DWord -Force -ErrorAction SilentlyContinue | Out-Null <# Progress bar #> Write-Progress -Activity " Enable logging..." -PercentComplete 0 <# Checking if running with administrative permissions, and enabling corresponding logs #> If ($Global:bolRunningAsAdmin -eq $true) { <# Progress bar update #> Write-Progress -Activity " Enable logging: CAPI2 event logging..." -PercentComplete (100/8 * 1) <# Enable CAPI2 event log #> Echo Y | wevtutil set-log Microsoft-Windows-CAPI2/Operational /enabled:True <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "CAPI2 event log" -strLogValue "Enabled" <# Clear CAPI2 event log #> wevtutil.exe clear-log Microsoft-Windows-CAPI2/Operational <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "CAPI2 event log" -strLogValue "Cleared" <# Progress bar update #> Write-Progress -Activity " Enable logging: Starting network trace..." -PercentComplete (100/8 * 2) <# Start network trace #> netsh.exe trace start capture=yes scenario=NetConnection,InternetClient sessionname="RMS_Support_Tool-Trace" report=disabled maxsize=1024, tracefile=$Global:strUniqueLogFolder"\NetMon.etl" | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "Network trace" -strLogValue "Started" } <# Progress bar update #> Write-Progress -Activity " Enable logging: Office logging..." -PercentComplete (100/8 * 3) <# Enable Office logging for 2013 (15.0), 2016 (16.0) #> If ($(Test-Path -Path "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Logging") -Eq $false) { <# Create registry key, if does not exist #> New-Item -Path "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Logging" -Force | Out-Null } <# Check for registry key 'Logging' (2013) #> If ($(Test-Path -Path "HKCU:\SOFTWARE\Microsoft\Office\15.0\Common\Logging") -Eq $false) { <# Create registry key, if does not exist #> New-Item -Path "HKCU:\SOFTWARE\Microsoft\Office\15.0\Common\Logging" -Force | Out-Null } <# Check for registry key 'Logging' (2016 x64) #> If ($(Test-Path -Path "HKCU:\SOFTWARE\Wow6432Node\Microsoft\Office\16.0\Common\Logging") -Eq $false) { <# Create registry key, if does not exist #> New-Item -Path "HKCU:\SOFTWARE\Wow6432Node\Microsoft\Office\16.0\Common\Logging" -Force | Out-Null } <# Check for registry key 'Logging' (2013 x64) #> If ($(Test-Path -Path "HKCU:\SOFTWARE\Wow6432Node\Microsoft\Office\15.0\Common\Logging") -Eq $false) { <# Create logging registry key, if it does not exist #> New-Item -Path "HKCU:\SOFTWARE\Wow6432Node\Microsoft\Office\15.0\Common\Logging" -Force | Out-Null } <# Implementing registry settings to enable logging for the different Office versions #> New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Logging" -Name "EnableLogging" -Value 1 -PropertyType DWord -Force | Out-Null New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Office\15.0\Common\Logging" -Name "EnableLogging" -Value 1 -PropertyType DWord -Force | Out-Null New-ItemProperty -Path "HKCU:\SOFTWARE\Wow6432Node\Microsoft\Office\15.0\Common\Logging" -Name "EnableLogging" -Value 1 -PropertyType DWord -Force | Out-Null New-ItemProperty -Path "HKCU:\SOFTWARE\Wow6432Node\Microsoft\Office\16.0\Common\Logging" -Name "EnableLogging" -Value 1 -PropertyType DWord -Force | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "Office Logging" -strLogValue "Enabled" <# Progress bar update #> Write-Progress -Activity " Enable logging: Office TCOTrace..." -PercentComplete (100/8 * 4) <# Enable Office TCOTrace logging for Office 2013 (15.0), 2016 (16.0) #> If ($(Test-Path -Path "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Debug") -Eq $false) { <# Check for registry key 'Debug' (2016) #> <# Create registry key if it does not exist #> New-Item -Path "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Debug" -Force | Out-Null } New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Debug" -Name "TCOTrace" -Value 1 -PropertyType DWord -Force | Out-Null <# Check for registry key 'Debug' (2013) #> If ($(Test-Path -Path "HKCU:\SOFTWARE\Microsoft\Office\15.0\Common\Debug") -Eq $false) { <# Check for registry key 'Debug' (2013) #> <# Create registry key if it does not exist #> New-Item -Path "HKCU:\SOFTWARE\Microsoft\Office\15.0\Common\Debug" -Force | Out-Null } New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Office\15.0\Common\Debug" -Name "TCOTrace" -Value 1 -PropertyType DWord -Force | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "Office TCOTrace" -strLogValue "Enabled" <# Progress bar update #> Write-Progress -Activity " Enable logging: Cleaning MSIP/MSIPC logs..." -PercentComplete (100/8 * 5) <# Cleaning MSIP/MSIPC/AIP v2 logs folder content #> If ($(Test-Path -Path $env:LOCALAPPDATA\Microsoft\MSIP\Logs) -Eq $true) { <# If foler exist #> <# Cleaning MSIP/AIP v1/2 log folder content #> Remove-Item -Path "\\?\$env:LOCALAPPDATA\Microsoft\MSIP\Logs" -Recurse -Force -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "MSIP log folder" -strLogValue "Cleared" } <# Checking if MSIPC folder exist #> If ($(Test-Path -Path $env:LOCALAPPDATA\Microsoft\MSIPC\Logs) -Eq $true) { <# Cleaning MSIPC log folder content #> Remove-Item -Path "\\?\$env:LOCALAPPDATA\Microsoft\MSIPC\Logs" -Recurse -Force -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "MSIPC log folder" -strLogValue "Cleared" } <# Checking if MSIP folder exist #> If ($(Test-Path -Path $env:LOCALAPPDATA\Microsoft\MSIP\mip) -Eq $true) { <# Cleaning MIP SDK/AIP v2 log folder content #> Remove-Item -Path "\\?\$env:LOCALAPPDATA\Microsoft\MSIP\mip" -Recurse -Force -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "MIP log folder" -strLogValue "Cleared" } <# Checking if MIP folder exist #> If ($(Test-Path -Path $env:LOCALAPPDATA\Microsoft\Office\DLP\mip) -Eq $true) { <# Cleaning Office DLP/MIP log folder content #> Remove-Item -Path "\\?\$env:LOCALAPPDATA\Microsoft\Office\DLP\mip" -Recurse -Force -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "Office DLP/MIP log folder" -strLogValue "Cleared" } <# If foler exist #> If ($(Test-Path -Path $env:TEMP\Diagnostics) -Eq $true) { <# Cleaning Office Diagnostics folder content #> Remove-Item -Path "\\?\$env:TEMP\Diagnostics" -Recurse -Force -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "Office Diagnostics log folder" -strLogValue "Cleared" } <# Progress bar update #> Write-Progress -Activity " Enable logging: Flushing DNS..." -PercentComplete (100/8 * 6) <# Flush DNS #> ipconfig.exe /flushdns | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "Flush DNS" -strLogValue "Called" <# Progress bar update #> Write-Progress -Activity " Enable logging: Starting PSR..." -PercentComplete (100/8 * 7) <# Start PSR #> psr.exe /gui 0 /start /output $Global:strUniqueLogFolder"\ProblemSteps.zip" <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "PSR" -strLogValue "Started" <# Cleaning temp folder for office.log (TCOTrace) #> If ($(Test-Path $Global:strTempFolder"\office.log") -Eq $true) { <# Removing file office.log #> Remove-Item -Path "\\?\$Global:strTempFolder\office.log" -Recurse -Force -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "Office TCOTrace temp file" -strLogValue "Cleared" } <# Cleaning temp folder for office log (machine name) #> If ($(Test-Path "$Global:strTempFolder\$([System.Environment]::MachineName)*.log") -Eq $true) { <# Removing file office.log #> Remove-Item -Path "\\?\$Global:strTempFolder\$([System.Environment]::MachineName)*.log" -Recurse -Force -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "Office log temp file" -strLogValue "Cleared" } <# Progress bar update #> Write-Progress -Activity " Logging enabled" -Completed <# Verbose/Logging #> fncLogging -strLogFunction "fncEnableLogging" -strLogDescription "Enable logging" -strLogValue "Proceeded" } <# Function to disable/rool back all logging settings #> Function fncDisableLogging { <# Verbose/Logging #> fncLogging -strLogFunction "fncDisableLogging" -strLogDescription "Disable logging" -strLogValue "Triggered" <# Progress bar #> Write-Progress -Activity " Disable logging..." -PercentComplete 0 <# Checking if running with administrative permissions, and enabling admininistrative actions #> If ($Global:bolRunningAsAdmin -eq $true) { <# Progress bar update #> Write-Progress -Activity " Disable logging: CAPI2 event log..." -PercentComplete (100/6 * 1) <# Disable CAPI2 event log #> wevtutil.exe set-log Microsoft-Windows-CAPI2/Operational /enabled:false <# Verbose/Logging #> fncLogging -strLogFunction "fncDisableLogging" -strLogDescription "CAPI2 event log" -strLogValue "Disabled" <# Progress bar update #> Write-Progress -Activity " Disable logging: Network trace..." -PercentComplete (100/6 * 2) <# Stopping network trace #> netsh.exe trace stop sessionname="RMS_Support_Tool-Trace" | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncDisableLogging" -strLogDescription "Network trace" -strLogValue "Disabled" } <# Progress bar update #> Write-Progress -Activity " Disable logging: Office logging..." -PercentComplete (100/6 * 3) <# Disable Office logging for 2013 (15.0), 2016 (16.0) #> fncDeleteItem "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Logging" fncDeleteItem "HKCU:\SOFTWARE\Microsoft\Office\15.0\Common\Logging" fncDeleteItem "HKCU:\SOFTWARE\Wow6432Node\Microsoft\Office\15.0\Common\Logging" fncDeleteItem "HKCU:\SOFTWARE\Wow6432Node\Microsoft\Office\16.0\Common\Logging" <# Verbose/Logging #> fncLogging -strLogFunction "fncDisableLogging" -strLogDescription "Office Logging" -strLogValue "Disabled" <# Progress bar update #> Write-Progress -Activity " Disable logging: Office TCOTrace..." -PercentComplete (100/6 * 4) <# Disable Office TCOTrace logging for Office 2013 (15.0), 2016 (16.0) #> fncDeleteItem "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Debug" fncDeleteItem "HKCU:\SOFTWARE\Microsoft\Office\15.0\Common\Debug" <# Verbose/Logging #> fncLogging -strLogFunction "fncDisableLogging" -strLogDescription "Office TCOTrace" -strLogValue "Disabled" <# Progress bar update #> Write-Progress -Activity " Disable logging: PSR..." -PercentComplete (100/6 * 5) <# Stop PSR #> psr.exe /stop <# Verbose/Logging #> fncLogging -strLogFunction "fncDisableLogging" -strLogDescription "PSR" -strLogValue "Disabled" <# Implement registry key for function fncValidateForActivatedLogging to check whether logging was left enabled (for problem record) #> If ($(Test-Path -Path "HKCU:\SOFTWARE\Microsoft\RMS_Support_Tool") -Eq $false) { <# Checking, if path exist (to check for logging enabled), and create it if not #> <# Create registry key if it does not exist #> New-Item -Path "HKCU:\SOFTWARE\Microsoft\RMS_Support_Tool" -Force | Out-Null } <# Implement registry key to check for enabled logging on next start, and rollback settings if necessary #> New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\RMS_Support_Tool" -Name "LoggingActivated" -Value $false -PropertyType DWord -Force -ErrorAction SilentlyContinue | Out-Null <# Progress bar update #> Write-Progress -Activity " Logging disabled" -Completed <# Verbose/Logging #> fncLogging -strLogFunction "fncDisableLogging" -strLogDescription "Disable logging" -strLogValue "Proceeded" } <# Function to check whether logging (for problem record) was left enabled #> Function fncValidateForActivatedLogging { <# Reading registry key to check for enabled logging. Used in fncEnableLogging, and fncDisableLogging #> If ((Get-ItemProperty "HKCU:\SOFTWARE\Microsoft\RMS_Support_Tool" -Name LoggingActivated -ErrorAction SilentlyContinue).LoggingActivated -eq $true) { <# Verbose/Logging #> fncLogging -strLogFunction "fncValidateForActivatedLogging" -strLogDescription "Disable logging" -strLogValue "Initiated" <# Function call to disable/rool back all logging settings #> fncDisableLogging } } <# Function to finalize logging (collecting/exporting data) #> Function fncCollectLogging { <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Collecting logs" -strLogValue "Triggered" <# Progress bar #> Write-Progress -Activity " Collecting logs..." -PercentComplete 0 <# Checking if running with administrative permissons, and enabling admininistrative actions #> If ($Global:bolRunningAsAdmin -eq $true) { <# Progress bar update #> Write-Progress -Activity " Collecting logs: CAPI2 event log..." -PercentComplete (100/25 * 1) <# Export CAPI2 event log #> wevtutil.exe export-log Microsoft-Windows-CAPI2/Operational $Global:strUniqueLogFolder"\CAPI2.evtx" /overwrite:true <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export CAPI2 event log" -strLogValue "CAPI2.evtx" <# Progress bar update #> Write-Progress -Activity " Collecting logs: AIP event log..." -PercentComplete (100/25 * 2) <# Actions when AIP event log exist #> If ([System.Diagnostics.EventLog]::Exists('Azure Information Protection') -Eq $true) { <# Export AIP event log #> wevtutil.exe export-log "Azure Information Protection" $Global:strUniqueLogFolder"\AIP.evtx" /overwrite:true <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export AIP event log" -strLogValue "AIP.evtx" } <# Progress bar update #> Write-Progress -Activity " Collecting logs: Network trace..." -PercentComplete (100/25 * 3) <# Stopping network trace #> netsh.exe trace stop sessionname="RMS_Support_Tool-Trace" | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Network trace" -strLogValue "Stopped" fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export network trace" -strLogValue "NetMon.etl" <# Progress bar update #> Write-Progress -Activity " Collecting logs: Filter drivers..." -PercentComplete (100/25 * 4) <# Export filter drivers #> fltmc.exe filters > $Global:strUniqueLogFolder"\Filters.log" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export filter drivers" -strLogValue "Filters.log" } <# Progress bar update #> Write-Progress -Activity " Collecting logs: PSR recording..." -PercentComplete (100/25 * 5) <# Stop PSR #> psr.exe /stop <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "PSR" -strLogValue "Stopped" fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export PSR" -strLogValue "ProblemSteps.zip" <# Progress bar update #> Write-Progress -Activity " Collecting logs: Application event log..." -PercentComplete (100/25 * 6) <# Export Application event log #> wevtutil.exe export-log Application $Global:strUniqueLogFolder"\Application.evtx" /overwrite:true <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export Application event log" -strLogValue "Application.evtx" <# Progress bar update #> Write-Progress -Activity " Collecting logs: System event log..." -PercentComplete (100/25 * 7) <# Export System event log #> wevtutil.exe export-log System $Global:strUniqueLogFolder"\System.evtx" /overwrite:true <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export System event log" -strLogValue "System.evtx" <# Progress bar update #> Write-Progress -Activity " Collecting logs: Office log files..." -PercentComplete (100/25 * 8) <# Checking for Office log path and create it, if it not exist #> If ($(Test-Path -Path $Global:strUniqueLogFolder"\Office") -Eq $false) { <# Creating Office log folder #> New-Item -ItemType Directory -Force -Path $Global:strUniqueLogFolder"\Office" | Out-Null <# Checking for Office MIP path, and create it only if no AIP client is installed; because with AIP client we collect already the mip folder with the AIPLogs.zip #> If (-not (Get-Module -ListAvailable -Name AzureInformationProtection)) { <# Checking for AIP client #> <# Creating Office MIP log folder #> New-Item -ItemType Directory -Force -Path $Global:strUniqueLogFolder"\Office\mip" | Out-Null <# Export Office MIP content to logs folder #> fncCopyItem $env:LOCALAPPDATA\Microsoft\Office\DLP\mip $Global:strUniqueLogFolder"\Office" "mip\*" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export Office MIP logs" -strLogValue "\Office\mip" } } <# Copy Office Diagnostics folder from temp folder to Office logs folder #> fncCopyItem $env:TEMP\Diagnostics $Global:strUniqueLogFolder"\Office" "Diagnostics\*" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export Office Diagnostics logs" -strLogValue "\Office\Diagnostics" <# Copy office log files from temp folder to logs folder #> fncCopyItem $Global:strTempFolder"\office.log" $Global:strUniqueLogFolder"\Office\office.log" "office.log" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export Office log" -strLogValue "office.log" <# Copy Office logging files for 2013 (15.0), 2016 (16.0) to logs folder #> fncCopyItem "\\?\$Global:strTempFolder\$([System.Environment]::MachineName)*.log" $Global:strUniqueLogFolder"\Office" "Office\$([System.Environment]::MachineName)*.log" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export Office log" -strLogValue "\Office" <# Cleaning Office log files from temp folder #> fncDeleteItem "\\?\$Global:strTempFolder\$([System.Environment]::MachineName)*.log" fncDeleteItem "\\?\$Global:strTempFolder\Office.log" <# Progress bar update #> Write-Progress -Activity " Collecting logs: AIP/MSIP/MSIPC/MIP logs..." -PercentComplete (100/25 * 9) <# Export MIP/MSIP/MSIPC folders (and more) to logs folder #> If (Get-Module -ListAvailable -Name AzureInformationProtection) { <# Checking for AIP client and collecting folder content #> <# Feeding variable with AIP client version information #> $strAIPClientVersion = $((Get-Module -ListAvailable -Name AzureInformationProtection).Version).ToString() <# Action with AIPv1 client #> If ($strAIPClientVersion.StartsWith("1") -eq $true) { <# Copy MSIP content to logs folder #> fncCopyItem $env:LOCALAPPDATA\Microsoft\MSIP $Global:strUniqueLogFolder"\MSIP" "MSIP\*" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export MSIP content" -strLogValue "\MSIP" <# Copy MSIPC content to logs folder #> fncCopyItem $env:LOCALAPPDATA\Microsoft\MSIPC $Global:strUniqueLogFolder"\MSIPC" "MSIPC\*" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export MSIPC content" -strLogValue "\MSIPC" } <# Action with AIPv2 client #> ElseIf ($strAIPClientVersion.StartsWith("2") -eq $true) { <# Checking if running as administrator #> If ($Global:bolRunningAsAdmin -eq $true) { <# Authenticate for accessing logs #> Set-AIPAuthentication <# Remember default progress bar status: 'Continue' #> $Private:strOriginalPreference = $Global:ProgressPreference $Global:ProgressPreference = "SilentlyContinue" <# Hiding progress bar #> <# Exporting AIP log folders #> Export-AIPLogs -FileName "$Global:strUniqueLogFolder\AIPLogs.zip" | Out-Null <# Set back progress bar to previous setting #> $Global:ProgressPreference = $Private:strOriginalPreference } Else { <# Copy MSIP content to logs folder #> fncCopyItem $env:LOCALAPPDATA\Microsoft\MSIP $Global:strUniqueLogFolder"\MSIP" "MSIP\*" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export MSIP content" -strLogValue "\MSIP" <# Copy MSIPC content to logs folder #> fncCopyItem $env:LOCALAPPDATA\Microsoft\MSIPC $Global:strUniqueLogFolder"\MSIPC" "MSIPC\*" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export MSIPC content" -strLogValue "\MSIPC" } <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export AIP Log folders" -strLogValue $true } } Else {<# Action without any AIP client #> <# Export Office MIP content to logs folder #> fncCopyItem $env:LOCALAPPDATA\Microsoft\Office\DLP\mip $Global:strUniqueLogFolder"\Office" "mip\*" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export Office MIP content" -strLogValue "\Office" <# Export Office Diagnostics content to logs folder #> fncCopyItem $env:TEMP\Diagnostics $Global:strUniqueLogFolder"\Office" "Diagnostics\*" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export Office Diagnostics content" -strLogValue "\Office" <# Export MSIP/MSIPC content to logs folder #> fncCopyItem $env:LOCALAPPDATA\Microsoft\MSIP $Global:strUniqueLogFolder"\MSIP" "MSIP\*" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export MSIP content" -strLogValue "\MSIP" <# Copy files to logs folder #> fncCopyItem $env:LOCALAPPDATA\Microsoft\MSIPC $Global:strUniqueLogFolder"\MSIPC" "MSIPC\*" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export MSIPC content" -strLogValue "\MSIPC" } <# Progress bar update #> Write-Progress -Activity " Collecting logs: WinHTTP..." -PercentComplete (100/25 * 10) <# Export WinHTTP #> netsh.exe winhttp show proxy > $Global:strUniqueLogFolder"\WinHTTP.log" <# Verbose/Logging #> fncLOgging -strLogFunction "fncCollectLogging" -strLogDescription "Export WinHTTP" -strLogValue "WinHTTP.log" <# Progress bar update #> Write-Progress -Activity " Collecting logs: WinHTTP (WoW6432)..." -PercentComplete (100/25 * 11) <# Export WinHTTP_WoW6432 (only 64-bit OS) #> If ((Get-CimInstance Win32_OperatingSystem -Verbose:$false).OSArchitecture -eq "64-bit") { & $env:WINDIR\SysWOW64\netsh.exe winhttp show proxy > $Global:strUniqueLogFolder"\WinHTTP_WoW6432.log" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export WinHTTP_WoW6432" -strLogValue "WinHTTP_WoW6432.log" } <# Export IE AutoConfigURL if available #> If ((Get-ItemProperty "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\" -Name AutoConfigURL -ErrorAction SilentlyContinue).AutoConfigURL) { <# Progress bar update #> Write-Progress -Activity " Collecting logs: AutoConfigURL..." -PercentComplete (100/25 * 12) <# Windows version and release ID #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export IE AutoConfigURL" -strLogValue "AutoConfigURL.log" <# Export IE AutoConfigURL #> Get-ItemProperty "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings" | Select-Object AutoConfigURL > $Global:strUniqueLogFolder"\AutoConfigURL.log" } <# Progress bar update #> Write-Progress -Activity " Collecting logs: Machine certificates..." -PercentComplete (100/25 * 13) <# Export machine certificates #> certutil.exe -silent -store my > $Global:strUniqueLogFolder"\CertMachine.log" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export machine certificates" -strLogValue "CertMachine.log" <# Progress bar update #> Write-Progress -Activity " Collecting logs: User certificates..." -PercentComplete (100/25 * 14) <# Export user certificates #> certutil.exe -silent -user -store my > $Global:strUniqueLogFolder"\CertUser.log" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export user certificates" -strLogValue "CertUser.log" <# Progress bar update #> Write-Progress -Activity " Collecting logs: Credentials information..." -PercentComplete (100/25 * 15) <# Export Credential Manager data #> cmdkey.exe /list > $Global:strUniqueLogFolder"\CredMan.log" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export Credential Manager" -strLogValue "CredMan.log" <# Progress bar update #> Write-Progress -Activity " Collecting logs: IP configuration..." -PercentComplete (100/25 * 16) <# Export IP configuration #> ipconfig.exe /all > $Global:strUniqueLogFolder"\IPConfigAll.log" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export ipconfig" -strLogValue "IPConfigAll.log" <# Progress bar update #> Write-Progress -Activity " Collecting logs: DNS..." -PercentComplete (100/25 * 17) <# Export DNS configuration #> ipconfig.exe /displaydns > $Global:strUniqueLogFolder"\WinIPConfig.txt" | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export DNS" -strLogValue "WinIPConfig.txt" <# Progress bar update #> Write-Progress -Activity " Collecting logs: Environment information..." -PercentComplete (100/25 * 18) <# Export environment variables #> Get-ChildItem Env: | Out-File $Global:strUniqueLogFolder"\EnvVar.log" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export environment variables" -strLogValue "EnvVar.log" <# Progress bar update #> Write-Progress -Activity " Collecting logs: Group policy report..." -PercentComplete (100/25 * 19) <# Export group policy results #> gpresult /f /h $Global:strUniqueLogFolder"\Gpresult.htm" | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export group policy report" -strLogValue "Gpresult.htm" <# Progress bar update #> Write-Progress -Activity " Collecting logs: Time zone information..." -PercentComplete (100/25 * 20) <# Export timezone offse (UTC) #> (Get-Timezone).BaseUTCOffset.Hours | Out-File $Global:strUniqueLogFolder"\BaseUTCOffset.log" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export timezone offset" -strLogValue "BaseUTCOffset.log" <# Progress bar update #> Write-Progress -Activity " Collecting logs: Tasklist..." -PercentComplete (100/25 * 21) <# Export Tasklist #> Tasklist.exe /svc > $Global:strUniqueLogFolder"\Tasklist.log" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export Tasklist" -strLogValue "Tasklist.log" <# Progress bar update #> Write-Progress -Activity " Collecting logs: Programs and Features..." -PercentComplete (100/25 * 22) <# Export Programs and Features (32) #> If ($(Test-Path -Path "HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall") -Eq $true) { <# Programs32 #> Get-ItemProperty "HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*" | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Export-CSV $Global:strUniqueLogFolder"\Programs32.log" -ErrorAction SilentlyContinue <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export Programs (x86)" -strLogValue "Programs32.log" } <# Export Programs and Features (64) #> Get-ItemProperty "HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*" | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Export-CSV $Global:strUniqueLogFolder"\Programs64.log" -ErrorAction SilentlyContinue <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export Programs (x64)" -strLogValue "Programs64.log" <# Progress bar update #> Write-Progress -Activity " Collecting logs: AIP registry keys..." -PercentComplete (100/25 * 24) <# Export AIP plugin Adobe Acrobat RMS logs #> If ($(Test-Path -Path $env:LOCALAPPDATA\Microsoft\RMSLocalStorage\MIP\logs) -Eq $true) { <# Progress bar update #> Write-Progress -Activity " Collecting logs: Adobe logs..." -PercentComplete (100/25 * 24) <# Export MSIP/MSIPC content to logs folder #> fncCopyItem $env:LOCALAPPDATA\Microsoft\RMSLocalStorage\MIP\logs $Global:strUniqueLogFolder"\Adobe\LOCALAPPDATA" "Adobe\LOCALAPPDATA\*" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export Adobe logs" -strLogValue "\Adobe" } <# Export AIP plugin Adobe Acrobat RMS logs #> If ($(Test-Path -Path $env:USERPROFILE\appdata\locallow\Microsoft\RMSLocalStorage\mip\logs) -Eq $true) { <# Export MSIP/MSIPC content to logs folder #> fncCopyItem $env:USERPROFILE\appdata\locallow\Microsoft\RMSLocalStorage\mip\logs $Global:strUniqueLogFolder"\Adobe\USERPROFILE" "Adobe\USERPROFILE\*" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export Adobe logs" -strLogValue "\Adobe" } <# Export several registry keys: Defining an array and feeding it with related registry keys #> $Private:arrRegistryKeys = "HKLM:\Software\Classes\MSIP.ExcelAddin", "HKLM:\Software\Classes\MSIP.WordAddin", "HKLM:\SOFTWARE\Classes\MSIP.PowerPointAddin", "HKLM:\SOFTWARE\Classes\MSIP.OutlookAddin", "HKLM:\SOFTWARE\Classes\AllFileSystemObjects\shell\Microsoft.Azip.RightClick", "HKLM:\SOFTWARE\Microsoft\MSIPC", "HKLM:\SOFTWARE\Microsoft\Office\Word\Addins", "HKLM:\SOFTWARE\Microsoft\Office\Excel\Addins", "HKLM:\SOFTWARE\Microsoft\Office\PowerPoint\Addins", "HKLM:\SOFTWARE\Microsoft\Office\Outlook\Addins", "HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\REGISTRY\MACHINE\SOFTWARE\Microsoft\Office\Word\Addins", "HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\REGISTRY\MACHINE\SOFTWARE\Microsoft\Office\Excel\Addins", "HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\REGISTRY\MACHINE\SOFTWARE\Microsoft\Office\PowerPoint\Addins", "HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\REGISTRY\MACHINE\SOFTWARE\Microsoft\Office\Outlook\Addins", "HKLM:\SOFTWARE\WOW6432Node\Microsoft\MSIPC", "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Office\Word\Addins", "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Office\Excel\Addins", "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Office\PowerPoint\Addins", "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Office\Outlook\Addins", "HKCU:\SOFTWARE\Microsoft\MSIP", "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Security", "HKCU:\Software\Microsoft\Office\16.0\Common\Identity", "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Internet", "HKCU:\SOFTWARE\Microsoft\Office\Word\Addins", "HKCU:\SOFTWARE\Microsoft\Office\Excel\Addins", "HKCU:\SOFTWARE\Microsoft\Office\PowerPoint\Addins", "HKCU:\SOFTWARE\Microsoft\Office\Outlook\Addins", "HKCU:\SOFTWARE\Microsoft\Office\16.0\Word\Resiliency", "HKCU:\SOFTWARE\Microsoft\Office\16.0\Excel\Resiliency", "HKCU:\SOFTWARE\Microsoft\Office\16.0\PowerPoint\Resiliency", "HKCU:\SOFTWARE\Microsoft\Office\15.0\Outlook\Resiliency", "HKCU:\SOFTWARE\Microsoft\Office\16.0\Outlook\Resiliency", "HKCU:\SOFTWARE\Classes\Local Settings\SOFTWARE\Microsoft\MSIPC", "HKCR:\MSIP.ExcelAddin", "HKCR:\MSIP.WordAddin", "HKCR:\MSIP.PowerPointAddin", "HKCR:\MSIP.OutlookAddin", "HKCR:\Local Settings\SOFTWARE\Microsoft\MSIPC" <# Loop though array and cache to a temp file #> ForEach ($_ in $Private:arrRegistryKeys) { If ($(Test-Path -Path $_) -Eq $true) { $Private:strTempFile = $Private:strTempFile + 1 & REG EXPORT $_.Replace(":", $null) "$Global:strTempFolder\$Private:strTempFile.reg" /Y | Out-Null <# Remove ":" for export (replace) #> } } <# Inserting first information; create log file #> "Windows Registry Editor Version 5.00" | Set-Content "$Global:strUniqueLogFolder\Registry.log" <# Reading data from cached temp file, and add it to the logfile #> (Get-Content "$Global:strTempFolder\*.reg" | ? {$_ -ne "Windows Registry Editor Version 5.00"} | Add-Content "$Global:strUniqueLogFolder\Registry.log") <# Cleaning temp folder of cached files #> Remove-Item "\\?\$Global:strTempFolder\*.reg" -Force -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Export AIP registry keys" -strLogValue "Registry.log" <# Progress bar update #> Write-Progress -Activity " Logs collected" -Completed <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLogging" -strLogDescription "Collecting logs" -strLogValue "Proceeded" } <# Function to check and update needed modules for PowerShellGallery.com #> Function fncUpdateRequiredModules { <# Checking for AADRM module and uninstalling it (AADRM retired, and replaced by AIPservice: https://docs.microsoft.com/en-us/powershell/azure/aip/overview?view=azureipps) #> If (Get-Module -ListAvailable -Name AADRM) { <# Unstalling AADRM PowerShell module #> Uninstall-Module -Verbose:$false -Name AADRM | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncUpdateRequiredModules" -strLogDescription "AADRM module" -strLogValue "Removed" } <# Define powershellgallery.com as trusted location, to be able to install AIPService module #> Set-PSRepository -Name PSGallery -InstallationPolicy Trusted -ErrorAction SilentlyContinue -WarningAction SilentlyContinue -Verbose:$false | Out-Null <# Remember default progress bar status: 'Continue' #> $Private:strOriginalPreference = $Global:ProgressPreference $Global:ProgressPreference = "SilentlyContinue" <# Hiding progress bar #> <# Validating connection to PowerShell Gallery by Find-Module #> If (Find-PackageProvider -Name NuGet -ErrorAction SilentlyContinue -WarningAction SilentlyContinue) { <# Actions if PowerShell Gallery can be reached #> <# Install/update nuGet provider to be able to install the latest modules #> Install-PackageProvider -Name NuGet -MinimumVersion "2.8.5.208" -ForceBootstrap -Scope CurrentUser -ErrorAction SilentlyContinue -WarningAction SilentlyContinue -Verbose:$false | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncUpdateRequiredModules" -strLogDescription "NuGet version" -strLogValue (Find-PackageProvider -Verbose:$false -Name NuGet).Version } Else { <# Actions if PowerShell Gallery can not be reached (no internet connection) #> <# Verbose/Logging #> fncLogging -strLogFunction "fncUpdateRequiredModules" -strLogDescription "NuGet update" -strLogValue "Failed" } <# Set back progress bar to previous setting #> $Global:ProgressPreference = $Private:strOriginalPreference <# Validating connection to PowerShell Gallery #> If (Get-Module -ListAvailable -Name "AIPService") { <# Updating AIPService if we can connect to PowerShell Gallery #> If (Find-Module -Name AIPService -Repository PSGallery -ErrorAction SilentlyContinue -WarningAction SilentlyContinue) { <# Filling variables with version information #> [Version]$Private:strAIPOnlineVersion = (Find-Module -Name AIPService -Repository PSGallery).Version [Version]$Private:strAIPLocalVersion = (Get-Module -ListAvailable -Name "AIPService").Version | Select-Object -First 1 <# Comparing local version vs. online version #> If ([Version]::new($Private:strAIPOnlineVersion.Major, $Private:strAIPOnlineVersion.Minor, $Private:strAIPOnlineVersion.Build, $Private:strAIPOnlineVersion.Revision) -gt [Version]::new($Private:strAIPLocalVersion.Major, $Private:strAIPLocalVersion.Minor, $Private:strAIPLocalVersion.Build, $Private:strAIPLocalVersion.Revision) -eq $true) { <# Console output #> Write-Output "Updating AIPService module..." <# Updating AIPService PowerShell module #> Update-Module -Verbose:$false -Name AIPService -Force -WarningAction SilentlyContinue -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncUpdateRequiredModules" -strLogDescription "AIPService module" -strLogValue "Updated" } <# Releasing private variables #> [Version]$Private:strAIPOnlineVersion = $null [Version]$Private:strAIPLocalVersion = $null } Else { <# Actions if we can't connect to PowerShell Gallery (no internet connection) #> <# Verbose/Logging #> fncLogging -strLogFunction "fncUpdateRequiredModules" -strLogDescription "AIPService module update" -strLogValue "Failed" } } <# Actions if AIPService module isn't installed #> If (-Not (Get-Module -ListAvailable -Name "AIPService")) { <# Installing AIPService if we can connect to PowerShell Gallery #> If (Find-Module -Name AIPService -Repository PSGallery -ErrorAction SilentlyContinue -WarningAction SilentlyContinue) { <# Console output #> Write-Output "Intalling AIPService module..." <# Installing AIPService PowerShell module #> Install-Module -Verbose:$false -Name AIPService -Repository PSGallery -Scope CurrentUser -WarningAction SilentlyContinue -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncUpdateRequiredModules" -strLogDescription "AIPService module" -strLogValue "Installed" <# Console output #> Write-Output "AIPService module installed." <# Console output #> Write-Output (Write-Host "ATTENTION: To use AIPService cmdlets, you must close this window and run a new instance of PowerShell for it to work.`nThe RMS_Support_Tool is now terminated." -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Calling pause function #> fncPause <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Interrupting, because of module not loaded into PowerShell instance #> Break } Else { <# Actions if we can't connect to PowerShell Gallery (no internet connection) #> <# Verbose/Logging #> fncLogging -strLogFunction "fncUpdateRequiredModules" -strLogDescription "AIPService module installation" -strLogValue "Failed" } } <# Verbose/Logging #> fncLogging -strLogFunction "fncUpdateRequiredModules" -strLogDescription "AIPService version" -strLogValue (Get-Module -Verbose:$false -ListAvailable -Name AIPService).Version } <# Function to collect AIP service configuration #> Function fncCollectAIPServiceConfiguration { <# Console output #> Write-Output "COLLECT AIP SERVICE CONFIGURATION:" <# Checking if not running as administrator #> If ($Global:bolRunningAsAdmin -eq $false) { <# Console output #> Write-Output (Write-Host "ATTENTION: You must run the RMS_Support_Tool in an administrative PowerShell window as a user with local administrative permissions to continue with this option.`nCOLLECT AIP SERVICE CONFIGURATION: Failed.`n" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Action if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Exit function #> Break } <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Calling pause function #> fncPause <# Clearing console #> Clear-Host <# Calling show menu function #> fncShowMenu } } <# Console output #> Write-Output "Initializing, please wait..." <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectAIPServiceConfiguration" -strLogDescription "Collect AIP service configuration" -strLogValue "Initiated" <# Check and update needed modules for PowerShellGallery.com #> fncUpdateRequiredModules <# Console output #> Write-Output "Connecting to AIPService..." <# Connecting/logon to AIPService #> If (Connect-AIPService -Verbose:$false) { <# Action if AIPService connection was opened #> <# Console output #> Write-Output "AIPService connected." <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectAIPServiceConfiguration" -strLogDescription "AIPService connected" -strLogValue $true } Else{ <# Action if AIPService connection failed #> <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectAIPServiceConfiguration" -strLogDescription "AIPService connected" -strLogValue $false fncLogging -strLogFunction "fncCollectAIPServiceConfiguration" -strLogDescription "Collect AIP service configuration" -strLogValue "Login failed" <# Console output #> Write-Output (Write-Host "COLLECT AIP SERVICE CONFIGURATION: Login failed. Please try again.`n" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Action if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Exit function #> Break } <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Calling pause function #> fncPause <# Clearing console #> Clear-Host <# Calling show menu function #> fncShowMenu } } <# Checking if 'Collect'-folder exist and create it, if it not exist #> If ($(Test-Path -Path $Global:strUserLogPath"\Collect") -Eq $false) { New-Item -ItemType Directory -Force -Path $Global:strUserLogPath"\Collect" | Out-Null <# Defining Collect path #> } <# Check for existing AIPService log file and create it, if it not exist #> If ($(Test-Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log") -Eq $false) { <# Create AIPService logging file #> Out-File -FilePath $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Encoding UTF8 -Append -Force } <# Console output #> Write-Output "Collecting AIP service configuration..." <# Check for existing AIPService logging file, and extend it if it exist #> If ($(Test-Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log") -Eq $true) { <# Exporting AIP service configuration and output result: #> <# Timestamp #> $Private:Timestamp = (Get-Date -Verbose:$false -UFormat "%y%m%d-%H%M%S") <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("Date/Timestamp : " + $Private:Timestamp) <# Extend log file #> Write-Output (Write-Host ("Date/Timestamp : $Private:Timestamp") -ForegroundColor Yellow) <# Console output #> $Private:Timestamp = $null <# Releasing variable #> <# AIPService Module version #> $Private:AIPServiceModule = (Get-Module -Verbose:$false -ListAvailable -Name AIPService).Version <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("Module version : $Private:AIPServiceModule") <# Extend log file #> Write-Output (Write-Host ("Module version : $Private:AIPServiceModule") -ForegroundColor Yellow) <# Console output #> $Private:AIPServiceModule = $null <# Releasing variable #> <# BPOSId #> $Private:BPOSId = (Get-AipServiceConfiguration).BPOSId <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("BPOSId : $Private:BPOSId") <# Extend log file #> Write-Output (Write-Host ("BPOSId : $Private:BPOSId") -ForegroundColor Yellow) <# Console output #> $Private:BPOSId = $null <# Releasing variable #> <# RightsManagementServiceId #> $Private:RightsManagementServiceId = (Get-AipServiceConfiguration).RightsManagementServiceId <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("RightsManagementServiceId : $Private:RightsManagementServiceId") <# Extend log file #> Write-Output (Write-Host ("RightsManagementServiceId : $Private:RightsManagementServiceId") -ForegroundColor Yellow) <# Console output #> $Private:RightsManagementServiceId = $null <# Releasing variable #> <# LicensingIntranetDistributionPointUrl #> $Private:LicensingIntranetDistributionPointUrl = (Get-AipServiceConfiguration).LicensingIntranetDistributionPointUrl <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("LicensingIntranetDistributionPointUrl : $Private:LicensingIntranetDistributionPointUrl") <# Extend log file #> Write-Output (Write-Host ("LicensingIntranetDistributionPointUrl : $Private:LicensingIntranetDistributionPointUrl") -ForegroundColor Yellow) <# Console output #> $Private:LicensingIntranetDistributionPointUrl = $null <# Releasing variable #> <# LicensingExtranetDistributionPointUrl #> $Private:LicensingExtranetDistributionPointUrl = (Get-AipServiceConfiguration).LicensingExtranetDistributionPointUrl <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("LicensingExtranetDistributionPointUrl : $Private:LicensingExtranetDistributionPointUrl") <# Extend log file #> Write-Output (Write-Host ("LicensingExtranetDistributionPointUrl : $Private:LicensingExtranetDistributionPointUrl") -ForegroundColor Yellow) <# Console output #> $Private:LicensingExtranetDistributionPointUrl = $null <# Releasing variable #> <# CertificationIntranetDistributionPointUrl #> $Private:CertificationIntranetDistributionPointUrl = (Get-AipServiceConfiguration).CertificationIntranetDistributionPointUrl <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("CertificationIntranetDistributionPointUrl : $Private:CertificationIntranetDistributionPointUrl") <# Extend log file #> Write-Output (Write-Host ("CertificationIntranetDistributionPointUrl : $Private:CertificationIntranetDistributionPointUrl") -ForegroundColor Yellow) <# Console output #> $Private:CertificationIntranetDistributionPointUrl = $null <# Releasing variable #> <# CertificationExtranetDistributionPointUrl #> $Private:CertificationExtranetDistributionPointUrl = (Get-AipServiceConfiguration).CertificationExtranetDistributionPointUrl <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("CertificationExtranetDistributionPointUrl : $Private:CertificationExtranetDistributionPointUrl") <# Extend log file #> Write-Output (Write-Host ("CertificationExtranetDistributionPointUrl : $Private:CertificationExtranetDistributionPointUrl") -ForegroundColor Yellow) <# Console output #> $Private:CertificationExtranetDistributionPointUrl = $null <# Releasing variable #> <# AdminConnectionUrl #> $Private:AdminConnectionUrl = (Get-AipServiceConfiguration).AdminConnectionUrl <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("AdminConnectionUrl : $Private:AdminConnectionUrl") <# Extend log file #> Write-Output (Write-Host ("AdminConnectionUrl : $Private:AdminConnectionUrl") -ForegroundColor Yellow) <# Console output #> $Private:AdminConnectionUrl = $null <# Releasing variable #> <# AdminV2ConnectionUrl #> $Private:AdminV2ConnectionUrl = (Get-AipServiceConfiguration).AdminV2ConnectionUrl <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("AdminV2ConnectionUrl : $Private:AdminV2ConnectionUrl") <# Extend log file #> Write-Output (Write-Host ("AdminV2ConnectionUrl : $Private:AdminV2ConnectionUrl") -ForegroundColor Yellow) <# Console output #> $Private:AdminV2ConnectionUrl = $null <# Releasing variable #> <# OnPremiseDomainName #> $Private:OnPremiseDomainName = (Get-AipServiceConfiguration).OnPremiseDomainName <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("OnPremiseDomainName : $Private:OnPremiseDomainName") <# Extend log file #> Write-Output (Write-Host ("OnPremiseDomainName : $Private:OnPremiseDomainName") -ForegroundColor Yellow) <# Console output #> $Private:OnPremiseDomainName = $null <# Releasing variable #> <# Keys #> $Private:Keys = (Get-AipServiceConfiguration).Keys <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("Keys : $Private:Keys") <# Extend log file #> Write-Output (Write-Host ("Keys : $Private:Keys") -ForegroundColor Yellow) <# Console output #> $Private:Keys = $null <# Releasing variable #> <# CurrentLicensorCertificateGuid #> $Private:CurrentLicensorCertificateGuid = (Get-AipServiceConfiguration).CurrentLicensorCertificateGuid <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("CurrentLicensorCertificateGuid : $Private:CurrentLicensorCertificateGuid") <# Extend log file #> Write-Output (Write-Host ("CurrentLicensorCertificateGuid : $Private:CurrentLicensorCertificateGuid") -ForegroundColor Yellow) <# Console output #> $Private:CurrentLicensorCertificateGuid = $null <# Releasing variable #> <# Templates #> $Private:Templates = (Get-AipServiceConfiguration).Templates <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("Template IDs : $Private:Templates") <# Extend log file #> Write-Output (Write-Host ("Template IDs : $Private:Templates") -ForegroundColor Yellow) <# Console output #> $Private:Templates = $null <# Releasing variable #> <# FunctionalState #> $Private:FunctionalState = (Get-AipServiceConfiguration).FunctionalState <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("FunctionalState : $Private:FunctionalState") <# Extend log file #> Write-Output (Write-Host ("FunctionalState : $Private:FunctionalState") -ForegroundColor Yellow) <# Console output #> $Private:FunctionalState = $null <# Releasing variable #> <# SuperUsersEnabled #> $Private:SuperUsersEnabled = (Get-AipServiceConfiguration).SuperUsersEnabled <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("SuperUsersEnabled : $Private:SuperUsersEnabled") <# Extend log file #> Write-Output (Write-Host ("SuperUsersEnabled : $Private:SuperUsersEnabled") -ForegroundColor Yellow) <# Console output #> $Private:SuperUsersEnabled = $null <# Releasing variable #> <# SuperUsers #> $Private:SuperUsers = (Get-AipServiceConfiguration).SuperUsers <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("SuperUsers : $Private:SuperUsers") <# Extend log file #> Write-Output (Write-Host ("SuperUsers : $Private:SuperUsers") -ForegroundColor Yellow) <# Console output #> $Private:SuperUsers = $null <# Releasing variable #> <# AdminRoleMembers #> $Private:AdminRoleMembers = (Get-AipServiceConfiguration).AdminRoleMembers <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("AdminRoleMembers : $Private:AdminRoleMembers") <# Extend log file #> Write-Output (Write-Host ("AdminRoleMembers : $Private:AdminRoleMembers") -ForegroundColor Yellow) <# Console output #> $Private:AdminRoleMembers = $null <# Releasing variable #> <# KeyRolloverCount #> $Private:KeyRolloverCount = (Get-AipServiceConfiguration).KeyRolloverCount <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("KeyRolloverCount : $Private:KeyRolloverCount") <# Extend log file #> Write-Output (Write-Host ("KeyRolloverCount : $Private:KeyRolloverCount") -ForegroundColor Yellow) <# Console output #> $Private:KeyRolloverCount = $null <# Releasing variable #> <# ProvisioningDate #> $Private:ProvisioningDate = (Get-AipServiceConfiguration).ProvisioningDate <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("ProvisioningDate : $Private:ProvisioningDate") <# Extend log file #> Write-Output (Write-Host ("ProvisioningDate : $Private:ProvisioningDate") -ForegroundColor Yellow) <# Console output #> $Private:ProvisioningDate = $null <# Releasing variable #> <# IPCv3ServiceFunctionalState #> $Private:IPCv3ServiceFunctionalState = (Get-AipServiceConfiguration).IPCv3ServiceFunctionalState <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("IPCv3ServiceFunctionalState : $Private:IPCv3ServiceFunctionalState") <# Extend log file #> Write-Output (Write-Host ("IPCv3ServiceFunctionalState : $Private:IPCv3ServiceFunctionalState") -ForegroundColor Yellow) <# Console output #> $Private:IPCv3ServiceFunctionalState = $null <# Releasing variable #> <# DevicePlatformState #> $Private:DevicePlatformState = (Get-AipServiceConfiguration).DevicePlatformState <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("DevicePlatformState : $Private:DevicePlatformState") <# Extend log file #> Write-Output (Write-Host ("DevicePlatformState : $Private:DevicePlatformState") -ForegroundColor Yellow) <# Console output #> $Private:DevicePlatformState = $null <# Releasing variable #> <# FciEnabledForConnectorAuthorization #> $Private:FciEnabledForConnectorAuthorization = (Get-AipServiceConfiguration).FciEnabledForConnectorAuthorization <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("FciEnabledForConnectorAuthorization : $Private:FciEnabledForConnectorAuthorization") <# Extend log file #> Write-Output (Write-Host ("FciEnabledForConnectorAuthorization : $Private:FciEnabledForConnectorAuthorization") -ForegroundColor Yellow) <# Console output #> $Private:FciEnabledForConnectorAuthorization = $null <# Releasing variable #> <# AIP service templates details log file #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("AIP service templates : AipServiceTemplates.log") <# AipServiceDocumentTrackingFeature #> $Private:AipServiceDocumentTrackingFeature = Get-AipServiceDocumentTrackingFeature <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("AipServiceDocumentTrackingFeature : $Private:AipServiceDocumentTrackingFeature") <# Extend log file #> Write-Output (Write-Host ("AipServiceDocumentTrackingFeature : $Private:AipServiceDocumentTrackingFeature") -ForegroundColor Yellow) <# Console output #> $Private:AipServiceDocumentTrackingFeature = $null <# Releasing variable #> <# AipServiceOnboardingControlPolicy #> $Private:AipServiceOnboardingControlPolicy = ("{[UseRmsUserLicense, " + $(Get-AipServiceOnboardingControlPolicy).UseRmsUserLicense +"], [SecurityGroupObjectId, " + $(Get-AipServiceOnboardingControlPolicy).SecurityGroupObjectId + "], [Scope, " + $(Get-AipServiceOnboardingControlPolicy).Scope + "]}") <# Filling private variable #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("AipServiceOnboardingControlPolicy : $Private:AipServiceOnboardingControlPolicy") <# Extend log file #> Write-Output (Write-Host ("AipServiceOnboardingControlPolicy : $Private:AipServiceOnboardingControlPolicy") -ForegroundColor Yellow) <# Console output #> $Private:AipServiceOnboardingControlPolicy = $null <# Releasing variable #> <# AipServiceDoNotTrackUserGroup #> $Private:AipServiceDoNotTrackUserGroup = Get-AipServiceDoNotTrackUserGroup <# Filling private variable #> <# Actions if AipServiceDoNotTrackUserGroup variable value is not empty #> If ($Private:AipServiceDoNotTrackUserGroup) { Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("AipServiceDoNotTrackUserGroup : $Private:AipServiceDoNotTrackUserGroup") <# Extend log file #> Write-Output (Write-Host ("AipServiceDoNotTrackUserGroup : $Private:AipServiceDoNotTrackUserGroup") -ForegroundColor Yellow) <# Console output #> } Else { <# Actions if variable value is empty #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("AipServiceDoNotTrackUserGroup :") <# Extend log file #> Write-Output (Write-Host ("AipServiceDoNotTrackUserGroup :") -ForegroundColor Yellow) <# Console output #> } <# Releasing AipServiceDoNotTrackUserGroup variable #> $Private:AipServiceDoNotTrackUserGroup = $null <# AipServiceRoleBasedAdministrator #> $Private:AipServiceRoleBasedAdministrator = Get-AipServiceRoleBasedAdministrator <# Filling private variable #> <# Actions if AipServiceRoleBasedAdministrator variable value is not empty #> If ($Private:AipServiceRoleBasedAdministrator) { Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("AipServiceRoleBasedAdministrator : $Private:AipServiceRoleBasedAdministrator") <# Extend log file #> Write-Output (Write-Host ("AipServiceRoleBasedAdministrator : $Private:AipServiceRoleBasedAdministrator") -ForegroundColor Yellow) <# Console output #> } Else { <# Actions if variable value is empty #> Add-Content -Path $Global:strUserLogPath"\Collect\AIPServiceConfiguration.log" -Value ("AipServiceRoleBasedAdministrator :") <# Extend log file #> Write-Output (Write-Host ("AipServiceRoleBasedAdministrator :") -ForegroundColor Yellow) <# Console output #> } <# Releasing AipServiceRoleBasedAdministrator variable #> $Private:AipServiceRoleBasedAdministrator = $null } <# Disconnect from AIPService #> Disconnect-AIPService | Out-Null <# Console output #> Write-Output "AIPService disconnected.`n" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectAipServiceConfiguration" -strLogDescription "AIPService disconnected" -strLogValue $true fncLogging -strLogFunction "fncCollectAipServiceConfiguration" -strLogDescription "Export AIP service configuration" -strLogValue "AIPServiceConfiguration.log" fncLogging -strLogFunction "fncCollectAipServiceConfiguration" -strLogDescription "Collect AIP service configuration" -strLogValue "Proceeded" <# Console output #> Write-Output "Log file: $Global:strUserLogPath\Collect\AIPServiceConfiguration.log" Write-Output (Write-Host "COLLECT AIP SERVICE CONFIGURATION: Proceeded.`n" -ForegroundColor Green) <# Action if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Exit function #> Break } <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Calling pause function #> fncPause <# Clearing console #> Clear-Host <# Calling show menu function #> fncShowMenu } } <# Function to collect AIP protection templates #> Function fncCollectAIPProtectionTemplates { <# Console output #> Write-Output "COLLECT AIP PROTECTION TEMPLATES:" <# Checking if not running as administrator #> If ($Global:bolRunningAsAdmin -eq $false) { <# Console output #> Write-Output (Write-Host "ATTENTION: You must run the RMS_Support_Tool in an administrative PowerShell window as a user with local administrative permissions to continue with this option.`nCOLLECT AIP PROTECTION TEMPLATES: Failed.`n" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Action if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Exit function #> Break } <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Calling pause function #> fncPause <# Clearing console #> Clear-Host <# Calling show menu function #> fncShowMenu } } <# Console output #> Write-Output "Initializing, please wait..." <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectAIPProtectionTemplates" -strLogDescription "Collect AIP protection templates" -strLogValue "Initiated" <# Check and update needed modules for PowerShell Gallery #> fncUpdateRequiredModules <# Console output #> Write-Output "Connecting to AIPService..." <# Connecting/logon to AIPService #> If (Connect-AIPService -Verbose:$false) { <# Action if AIPService connection was opened #> <# Console output #> Write-Output "AIPService connected." <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectAIPProtectionTemplates" -strLogDescription "AIPService connected" -strLogValue $true } Else{ <# Action if AIPService connection failed #> <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectAIPProtectionTemplates" -strLogDescription "AIPService connected" -strLogValue $false fncLogging -strLogFunction "fncCollectAIPProtectionTemplates" -strLogDescription "Collect AIP protection templates" -strLogValue "Login failed" <# Console output #> Write-Output (Write-Host "COLLECT AIP PROTECTION TEMPLATES: Login failed. Please try again.`n" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Action if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Exit function #> Break } <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Calling pause function #> fncPause <# Clearing console #> Clear-Host <# Calling show menu function #> fncShowMenu } } <# Checking if 'Collect'-folder exist and create it, if not #> If ($(Test-Path -Path $Global:strUserLogPath"\Collect") -Eq $false) { New-Item -ItemType Directory -Force -Path $Global:strUserLogPath"\Collect" | Out-Null <# Defining Collect path #> } <# Check for existing log file and create it, if it not exist #> If ($(Test-Path $Global:strUserLogPath"\Collect\AIPProtectionTemplates.log") -Eq $false) { <# Create AIPService logging file #> Out-File -FilePath $Global:strUserLogPath"\Collect\AIPProtectionTemplates.log" -Encoding UTF8 -Append -Force } <# Console output #> Write-Output "Collecting AIP protection templates..." <# Check for existing log file and extend it, if it exist #> If ($(Test-Path $Global:strUserLogPath"\Collect\AIPProtectionTemplates.log") -Eq $true) { <# Exporting AIP protection templates and output result: #> <# Collect AIP protection templates #> $Private:Timestamp = (Get-Date -Verbose:$false -UFormat "%y%m%d-%H%M%S") <# Filling private variable with date/time #> ("Date/Timestamp : " + $Private:Timestamp) | Out-File $Global:strUserLogPath"\Collect\AIPProtectionTemplates.log" -Encoding UTF8 -Append <# Extend log file with date/time #> <# Releasing date/time variable #> $Private:Timestamp = $null <# Add template details #> Get-AipServiceConfiguration | Select-Object -ExpandProperty Templates | Out-File $Global:strUserLogPath"\Collect\AIPProtectionTemplates.log" -Encoding UTF8 -Append <# Extending log file with template summary #> Get-AIPServicetemplate | fl * | Out-File $Global:strUserLogPath"\Collect\AIPProtectionTemplates.log" -Encoding UTF8 -Append <# Extending log file with template details #> } <# Disconnect from AIPService #> Disconnect-AIPService | Out-Null <# Console output #> Write-Output "AIPService disconnected.`n" <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectAIPProtectionTemplates" -strLogDescription "AIPService disconnected" -strLogValue $true fncLogging -strLogFunction "fncCollectAIPProtectionTemplates" -strLogDescription "Export AIP Templates" -strLogValue "AIPProtectionTemplates.log" fncLogging -strLogFunction "fncCollectAIPProtectionTemplates" -strLogDescription "Collect AIP protection templates" -strLogValue "Proceeded" <# Console output #> Write-Output "Log file: $Global:strUserLogPath\Collect\AIPProtectionTemplates.log" Write-Output (Write-Host "COLLECT AIP PROTECTION TEMPLATES: Proceeded.`n" -ForegroundColor Green) <# Action if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Exit function #> Break } <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Calling pause function #> fncPause <# Clearing console #> Clear-Host <# Calling show menu function #> fncShowMenu } } <# Function to collect labels and policies from Security Center #> Function fncCollectLabelsAndPolicies { <# Console output #> Write-Output "COLLECT LABELS AND POLICIES:" <# Checking if not running as administrator #> If ($Global:bolRunningAsAdmin -eq $false) { <# Console output #> Write-Output (Write-Host "ATTENTION: You must run the RMS_Support_Tool in an administrative PowerShell window as a user with local administrative permissions to continue with this option.`nCOLLECT LABELS AND POLICIES: Failed.`n" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Action if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Exit function #> Break } <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Calling pause function #> fncPause <# Clearing console #> Clear-Host <# Calling show menu function #> fncShowMenu } } <# Console output #> Write-Output "Initializing, please wait..." <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLabelsAndPolicies" -strLogDescription "Collect labels and policies" -strLogValue "Initiated" <# Check and update needed modules for PowerShell Gallery #> fncUpdateRequiredModules <# Actions if ExchangeOnlineManagement module is installed #> If (Get-Module -ListAvailable -Name "ExchangeOnlineManagement") { <# Updating ExchangeOnlineManagement, if we can connect to PowerShell Gallery #> If (Find-Module -Name ExchangeOnlineManagement -Repository PSGallery -ErrorAction SilentlyContinue -WarningAction SilentlyContinue) { <# Filling variables with version information #> [Version]$Private:strEOPOnlineVersion = (Find-Module -Name ExchangeOnlineManagement -Repository PSGallery).Version [Version]$Private:strAIPLocalVersion = (Get-Module -ListAvailable -Name "AIPService").Version | Select-Object -First 1 <# Comparing local version vs. online version #> If ([Version]::new($Private:strEOPPOnlineVersion.Major, $Private:strEOPPOnlineVersion.Minor, $Private:strEOPPOnlineVersion.Build) -gt [Version]::new($Private:strEOPLocalVersion.Major, $Private:strEOPLocalVersion.Minor, $Private:strEOPLocalVersion.Build) -eq $true) { <# Console output #> Write-Output "Updating Exchange Online PowerShell V2 module..." <# Updating AIPService PowerShell module #> Update-Module -Verbose:$false -Name ExchangeOnlineManagement -Force -WarningAction SilentlyContinue -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLabelsAndPolicies" -strLogDescription "Exchange Online PowerShell V2 module" -strLogValue "Updated" } <# Releasing private variables #> [Version]$Private:strEOPOnlineVersion = $null [Version]$Private:strEOPLocalVersion = $null } Else { <# Actions if we can't connect to PowerShell Gallery (no internet connection) #> <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLabelsAndPolicies" -strLogDescription "Exchange Online PowerShell V2 module update" -strLogValue "Failed" } } <# Actions if ExchangeOnlineManagement module isn't installed #> If (-Not (Get-Module -ListAvailable -Name "ExchangeOnlineManagement")) { <# Installing ExchangeOnlineManagement if we can connect to PowerShell Gallery #> If (Find-Module -Name ExchangeOnlineManagement -Repository PSGallery -ErrorAction SilentlyContinue -WarningAction SilentlyContinue) { <# Console output #> Write-Output "Installing Exchange Online PowerShell V2 module..." <# Installing ExchangeOnlineManagement PowerShell module #> Install-Module -Verbose:$false -Name ExchangeOnlineManagement -Scope CurrentUser -Repository PSGallery -WarningAction SilentlyContinue -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLabelsAndPolicies" -strLogDescription "Exchange Online PowerShell V2 module" -strLogValue "Installed" <# Console output #> Write-Output "Exchange Online PowerShell V2 module installed." Write-Output (Write-Host "ATTENTION: To use Exchange Online PowerShell V2 cmdlets, you must close this window and run a new instance of PowerShell for it to work.`n The RMS_Support_Tool is now terminated." -ForegroundColor Red) <# Calling pause function #> fncPause <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Releasing private variables #> $Private:ReadHost = $null <# Interrupting, because of module not loaded into PowerShell instance #> Break } Else { <# Actions if we can't connect to PowerShell Gallery (no internet connection) #> <# Console output #> Write-Output (Write-Host "ATTENTION: Collecting labels and policies could not be performed.`nEither PowerShell Gallery cannot be reached or there is no connection to the Internet.`n`nYou must have Exchange Online PowerShell V2 module installed to proceed.`n`nPlease check the following website and install the latest version of the ExchangeOnlineManagement modul:`nhttps://www.powershellgallery.com/packages/ExchangeOnlineManagement`n" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Console output #> Write-Output (Write-Host "COLLECT LABELS AND POLICIES: Failed.`n" -ForegroundColor Red) <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLabelsAndPolicies" -strLogDescription "Exchange Online PowerShell V2 module installation" -strLogValue "Failed" <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Calling pause function #> fncPause <# Clearing console #> Clear-Host <# Calling show menu function #> fncShowMenu } <# Action if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Interrupting, because of missing internet connection #> Break } } } <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLabelsAndPolicies" -strLogDescription "Exchange Online PowerShell V2 module version" -strLogValue (Get-Module -Verbose:$false -ListAvailable -Name ExchangeOnlineManagement).Version <# Console output #> Write-Output "Connecting to Microsoft 365 Security Center..." <# Remember default progress bar status: 'Continue' #> $Private:strOriginalPreference = $Global:ProgressPreference $Global:ProgressPreference = "SilentlyContinue" <# Hiding progress bar #> <# Try to connect/logon to Security Center #> Try { <# Connect/logon to Microsoft 365 Security Center #> Connect-IPPSSession -Verbose:$false -WarningAction SilentlyContinue -ErrorAction SilentlyContinue | Out-Null } Catch { <# Catch action for any error that occur on connect/logon #> <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLabelsAndPolicies" -strLogDescription "Microsoft 365 Security Center connected" -strLogValue $false fncLogging -strLogFunction "fncCollectLabelsAndPolicies" -strLogDescription "Microsoft 365 Security Center" -strLogValue "Login failed" <# Console output #> Write-Output (Write-Host "COLLECT LABELS AND POLICIES: Login failed. Please try again.`n" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Calling pause function #> fncPause <# Clearing console #> Clear-Host <# Calling show menu function #> fncShowMenu } <# Action if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Interrupting, because of missing internet connection #> Break } } <# Console output #> Write-Output "Microsoft 365 Security Center connected." <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLabelsAndPolicies" -strLogDescription "Microsoft 365 Security Center connected" -strLogValue $true <# Console output #> Write-Output "Collecting labels and policies..." <# Checking if 'Collect'-folder exist and create it, if not #> If ($(Test-Path -Path $Global:strUserLogPath"\Collect") -Eq $false) { New-Item -ItemType Directory -Force -Path $Global:strUserLogPath"\Collect" | Out-Null <# Defining Collect path #> } <# Check for existing LabelsAndPolicies.log file and create it, if it not exist #> If ($(Test-Path $Global:strUserLogPath"\Collect\LabelsAndPolicies.log") -Eq $false) { <# Create CollectLabels.log logging file #> Out-File -FilePath $Global:strUserLogPath"\Collect\LabelsAndPolicies.log" -Encoding UTF8 -Append -Force } <# Check for existing CollectLabels.log file and extend it, if it exist #> If ($(Test-Path $Global:strUserLogPath"\Collect\LabelsAndPolicies.log") -Eq $true) { <# Collecting data #> Add-Content -Path $Global:strUserLogPath"\Collect\LabelsAndPolicies.log" -Value "CURRENT POLICY:`n" (Get-LabelPolicy).Name | ft -AutoSize | Out-File $Global:strUserLogPath"\Collect\LabelsAndPolicies.log" -Encoding UTF8 -Append -Force | Format-List Add-Content -Path $Global:strUserLogPath"\Collect\LabelsAndPolicies.log" -Value "`nALL LABELS:" Get-Label | ft -AutoSize | Out-File $Global:strUserLogPath"\Collect\LabelsAndPolicies.log" -Encoding UTF8 -Append -Force Add-Content -Path $Global:strUserLogPath"\Collect\LabelsAndPolicies.log" -Value "ALL LABELS WITH DETAILS:" Get-Label | fl * | Out-File $Global:strUserLogPath"\Collect\LabelsAndPolicies.log" -Encoding UTF8 -Append -Force Add-Content -Path $Global:strUserLogPath"\Collect\LabelsAndPolicies.log" -Value "LABEL POLICIES:" Get-LabelPolicy | Out-File $Global:strUserLogPath"\Collect\LabelsAndPolicies.log" -Encoding UTF8 -Append -Force } <# Disconnect from Exchange Online Protection (EOP) #> Remove-PSSession -ComputerName (Get-PSSession).ComputerName <# Set back progress bar to previous default #> $Global:ProgressPreference = $Private:strOriginalPreference <# Console output #> Write-Output "Microsoft 365 Security Center disconnected." <# Verbose/Logging #> fncLogging -strLogFunction "fncCollectLabelsAndPolicies" -strLogDescription "Microsoft 365 Security Center disconnected" -strLogValue $true fncLogging -strLogFunction "fncCollectLabelsAndPolicies" -strLogDescription "Export labels and policy" -strLogValue "LabelsAndPolicies.log" fncLogging -strLogFunction "fncCollectLabelsAndPolicies" -strLogDescription "Collect labels and policies" -strLogValue "Proceeded" <# Console output #> Write-Output "`nLog file: $Global:strUserLogPath\Collect\LabelsAndPolicies.log" Write-Output (Write-Host "COLLECT LABELS AND POLICIES: Proceeded.`n" -ForegroundColor Green) <# Signal sound #> [console]::beep(1000,200) <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Calling pause function #> fncPause <# Clearing console #> Clear-Host <# Calling show menu function #> fncShowMenu } <# Action if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Interrupting, because of missing internet connection #> Break } } <# Function to verify Endpoint URL http status code/used in function fncVerifyIssuer #> Function fncVerifyEndpoint ($strURL, $strEndpointName) { <# Checking for endpoints to extend #> If ($strEndpointName -Eq "LicensingIntranetDistributionPointUrl" -or $strEndpointName -eq "LicensingExtranetDistributionPointUrl" -or $strEndpointName -eq "CertificationDistributionPointUrl") { <# Extending URL with .asmx #> $strURL = $strURL + "/ServiceLocator.asmx" } Try { <# Action with http return code 200 #> <# Initialize web connection to check for URL #> $Private:CheckConnection = (Invoke-WebRequest -Uri $strURL -UseBasicParsing -DisableKeepAlive).StatusCode <# Check for successfully web connection and output result #> If ($Private:CheckConnection -eq 200) { <# Function return value (http status) #> Return, $Private:CheckConnection <# Verbose/Logging #> fncLogging -strLogFunction "fncVerifyEndpoint" -strLogDescription $strEndpointName -strLogValue $Private:CheckConnection } } Catch [Net.WebException] { <# Action with http errors #> <# Catching http error into variable #> $Private:HttpStatusCode = [int]$_.Exception.Response.StatusCode <# Function return value (http status) #> Return, $Private:HttpStatusCode <# Verbose/Logging #> fncLogging -strLogFunction "fncVerifyEndpoint" -strLogDescription $strEndpointName -strLogValue $Private:HttpStatusCode } } <# Function to analyze AIP endpoint URLs #> Function fncAnalyzeEndpointURLs { <# Verbose/Logging #> fncLogging -strLogFunction "fncAnalyzeEndpointURLs" -strLogDescription "Analyze endpoint URLs" -strLogValue "Initiated" <# Console output #> Write-Output "ANALYZE ENDPOINT URLs:" <# Defining and filling variables with static URLs #> $Private:MyUnifiedLabelingDistributionPointUrl = "https://dataservice.protection.outlook.com" $Private:MyTelemetryDistributionPointUrl = "https://self.events.data.microsoft.com" $Private:MyAIPv1PolicyDistributionPointUrl = "https://api.informationprotection.azure.com" <# Defining and filling variable with date/time for unique log folder #> $Private:MyTimestamp = (Get-Date -Verbose:$false -UFormat "%y%m%d-%H%M%S") $Private:strCertLogPath = "$Global:strUserLogPath\Analyze\$Private:MyTimestamp" <# Checking if 'Analyze'-folder exist and create it, if not #> If ($(Test-Path -Path $Private:strCertLogPath) -Eq $false) { New-Item -ItemType Directory -Force -Path $Private:strCertLogPath | Out-Null <# Defining Analyze path #> } <# Check for existing EndpointURLs.log file and create it, if it not exist #> If ($(Test-Path $Global:strUserLogPath"\Analyze\EndpointURLs.log") -Eq $false) { Out-File -FilePath $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Encoding UTF8 -Append -Force } <# Checking for analyze AIP endpoints URLs [MSIPC] if bootstrap was done/running with user permissions/reading URLs from registry #> If ($(Test-Path -Path "HKCU:\Software\Classes\Local Settings\Software\Microsoft\MSIPC") -Eq $true) { <# Console output #> Write-Output "Initializing, please wait..." Write-Output "Verifying endpoint URLs...`n" <# Reading URLs from registry #> Get-ChildItem -Path "HKCU:\Software\Classes\Local Settings\Software\Microsoft\MSIPC" | ForEach-Object { <# Reading Tenant Id #> $Private:strMainKey = $_.Name.Substring(75).ToString() <# Actions if it's about '.aadrm.com', but not about 'discover.aadrm.com' #> If ($Private:strMainKey -like "*.aadrm.com" -and $Private:strMainKey -notmatch "discover.aadrm.com") { <# Private variabel definition for Tenant Id string #> $Private:strTenantId = $Private:strMainKey.Remove(36) <# Console output #> Write-Output (Write-Host "-------------------------------------------------`nTenant Id: $Private:strTenantId`n-------------------------------------------------`n" -ForegroundColor Magenta) <# Create Tenant Id as first log entry #> Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value "-----------------------------------------------`nTenant Id: $Private:strTenantId`n-----------------------------------------------" <# Defining and filling variables with URLs #> $Private:MyLicensingIntranetDistributionPointUrl = (Get-ItemProperty "HKCU:\Software\Classes\Local Settings\Software\Microsoft\MSIPC\$Private:strMainKey\Identities" -ErrorAction SilentlyContinue).InternalUrl $Private:MyLicensingExtranetDistributionPointUrl = (Get-ItemProperty "HKCU:\Software\Classes\Local Settings\Software\Microsoft\MSIPC\$Private:strMainKey\Identities" -ErrorAction SilentlyContinue).ExternalUrl <# Defining and filling variables: Extending colledted registry key with https and subkey #> $Private:strMainKey = "https://$Private:strMainKey".ToString() $Private:MyCertificationDistributionPointUrl = "$Private:strMainKey/_wmcs/certification" <# Create Timestamp #> Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value ("Date/Timestamp: " + (Get-Date -Verbose:$false -UFormat "$Private:MyTimestamp")) <# Add read mode #> Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value ("Read from registry [MSIPC]:`n") <# Calling function to verify endpoint and certificate issuer #> fncVerifyIssuer -strCertURL $Private:MyLicensingIntranetDistributionPointUrl -strEndpointName "LicensingIntranetDistributionPointUrl" -strLogPath $Private:strCertLogPath fncVerifyIssuer -strCertURL $Private:MyLicensingExtranetDistributionPointUrl -strEndpointName "LicensingExtranetDistributionPointUrl" -strLogPath $Private:strCertLogPath fncVerifyIssuer -strCertURL $Private:MyCertificationDistributionPointUrl -strEndpointName "CertificationDistributionPointUrl" -strLogPath $Private:strCertLogPath fncVerifyIssuer -strCertURL $Private:MyUnifiedLabelingDistributionPointUrl -strEndpointName "UnifiedLabelingDistributionPointUrl" -strLogPath $Private:strCertLogPath fncVerifyIssuer -strCertURL $Private:MyTelemetryDistributionPointUrl -strEndpointName "TelemetryDistributionPointUrl" -strLogPath $Private:strCertLogPath fncVerifyIssuer -strCertURL $Private:MyAIPv1PolicyDistributionPointUrl -strEndpointName "AIPv1PolicyDistributionPointUrl" -strLogPath $Private:strCertLogPath <# Verbose/Logging #> fncLogging -strLogFunction "fncAnalyzeEndpointURLs" -strLogDescription "Export endpoint URLs" -strLogValue "EndpointURLs.log" fncLogging -strLogFunction "fncAnalyzeEndpointURLs" -strLogDescription "Analyze endpoint URLs" -strLogValue "Proceeded" } } <# Checking for analyze AIP endpoints URLs [MSIP] if bootstrap was done/running in 'non-admin mode'/reading URLs from registry #> If ($(Test-Path -Path "HKCU:\Software\Classes\Local Settings\Software\Microsoft\MSIPC\MSIP") -Eq $true) { <# Reading URLs from registry #> Get-ChildItem -Path "HKCU:\Software\Classes\Local Settings\Software\Microsoft\MSIPC\MSIP" | ForEach-Object { <# Reading Tenant Id #> $Private:strMainKey = $_.Name.Substring(80).ToString() <# Actions if it's about '.aadrm.com', but not about 'discover.aadrm.com' #> If ($Private:strMainKey -like "*.aadrm.com" -and $Private:strMainKey -notmatch "discover.aadrm.com") { <# Private variabel definition for Tenant Id string #> $Private:strTenantId = $Private:strMainKey.Remove(36) <# Console output #> Write-Output (Write-Host "------------------------------------------------`nTenant Id: $Private:strTenantId`n------------------------------------------------`n" -ForegroundColor Magenta) <# Create Tenant Id as first log entry #> Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value "------------------------------------------------`nTenant Id: $Private:strTenantId`n------------------------------------------------" <# Defining and filling variables with URLs #> $Private:MyLicensingIntranetDistributionPointUrl = (Get-ItemProperty "HKCU:\Software\Classes\Local Settings\Software\Microsoft\MSIPC\MSIP\$Private:strMainKey\Identities" -ErrorAction SilentlyContinue).InternalUrl $Private:MyLicensingExtranetDistributionPointUrl = (Get-ItemProperty "HKCU:\Software\Classes\Local Settings\Software\Microsoft\MSIPC\MSIP\$Private:strMainKey\Identities" -ErrorAction SilentlyContinue).ExternalUrl <# Defining and filling variables: Extending colledted registry key with https and subkey #> $Private:strMainKey = "https://$Private:strMainKey".ToString() $Private:MyCertificationDistributionPointUrl = "$Private:strMainKey/_wmcs/certification" <# Create Timestamp #> Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value ("Date/Timestamp: " + (Get-Date -Verbose:$false -UFormat "$Private:MyTimestamp")) <# Add read mode #> Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value ("Read from registry [MSIP]:`n") <# Calling function to verify endpoint and certificate issuer #> fncVerifyIssuer -strCertURL $Private:MyLicensingIntranetDistributionPointUrl -strEndpointName "LicensingIntranetDistributionPointUrl" -strLogPath $Private:strCertLogPath fncVerifyIssuer -strCertURL $Private:MyLicensingExtranetDistributionPointUrl -strEndpointName "LicensingExtranetDistributionPointUrl" -strLogPath $Private:strCertLogPath fncVerifyIssuer -strCertURL $Private:MyCertificationDistributionPointUrl -strEndpointName "CertificationDistributionPointUrl" -strLogPath $Private:strCertLogPath fncVerifyIssuer -strCertURL $Private:MyUnifiedLabelingDistributionPointUrl -strEndpointName "UnifiedLabelingDistributionPointUrl" -strLogPath $Private:strCertLogPath fncVerifyIssuer -strCertURL $Private:MyTelemetryDistributionPointUrl -strEndpointName "TelemetryDistributionPointUrl" -strLogPath $Private:strCertLogPath fncVerifyIssuer -strCertURL $Private:MyTelemetryDistributionPointUrl -strEndpointName "AIPv1PolicyDistributionPointUrl" -strLogPath $Private:strCertLogPath } } } } Else { <# Actions for analyze AIP endpoints URLs, if bootstrap has failed/reading URLs from portal/running administrative #> <# Actions if running administrative #> If ($Global:bolRunningAsAdmin -eq $true) { <# Console output #> Write-Output "Initializing, please wait..." <# Check and update needed modules for PowerShellGallery.com #> fncUpdateRequiredModules <# Console output #> Write-Output "Verifying endpoint URLs..." Write-Output "Connecting to AIPService..." <# Connect to AIPService #> If (Connect-AIPService -Verbose:$false) { <# Action when an AIPService connection is opened #> <# Private variabel definition for Tenant Id string #> $Private:strTenantId = (Get-AipServiceConfiguration).RightsManagementServiceId <# Console output #> Write-Output "AIPService connected`n" Write-Output (Write-Host "------------------------------------------------`nTenant Id: $Private:strTenantId`n------------------------------------------------`n" -ForegroundColor Magenta) <# Verbose/Logging #> fncLogging -strLogFunction "fncAnalyzeEndpointURLs" -strLogDescription "AIPService connected" -strLogValue $true } Else{ <# Action if AIPService connection failed #> <# Verbose/Logging #> fncLogging -strLogFunction "fncAnalyzeEndpointURLs" -strLogDescription "AIPService connected" -strLogValue $false fncLogging -strLogFunction "fncAnalyzeEndpointURLs" -strLogDescription "Admin login" -strLogValue "Login failed" <# Console output #> Write-Output (Write-Host "ANALYZE ENDPOINT URLs: Login failed. Please try again.`n" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Action if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Exit function #> Break } <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Calling pause function #> fncPause <# Clearing console #> Clear-Host <# Calling show menu function #> fncShowMenu } } <# Defining and filling variables with URLs #> $Private:MyLicensingIntranetDistributionPointUrl = (Get-AipServiceConfiguration).LicensingIntranetDistributionPointUrl.ToString() $Private:MyLicensingExtranetDistributionPointUrl = (Get-AipServiceConfiguration).LicensingExtranetDistributionPointUrl.ToString() $Private:MyCertificationDistributionPointUrl = (Get-AipServiceConfiguration).CertificationExtranetDistributionPointUrl.ToString() <# Create Tenant Id as first log entry #> Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value "------------------------------------------------`nTenant Id: $Private:strTenantId`n------------------------------------------------" <# Create Timestamp #> Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value ("Date/Timestamp: " + (Get-Date -Verbose:$false -UFormat "$Private:MyTimestamp")) <# Add read mode #> Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value ("Read from portal:`n") <# Calling function to verify endpoint and certificate issuer #> fncVerifyIssuer -strCertURL $Private:MyLicensingIntranetDistributionPointUrl -strEndpointName "LicensingIntranetDistributionPointUrl" -strLogPath $Private:strCertLogPath fncVerifyIssuer -strCertURL $Private:MyLicensingExtranetDistributionPointUrl -strEndpointName "LicensingExtranetDistributionPointUrl" -strLogPath $Private:strCertLogPath fncVerifyIssuer -strCertURL $Private:MyCertificationDistributionPointUrl -strEndpointName "CertificationDistributionPointUrl" -strLogPath $Private:strCertLogPath fncVerifyIssuer -strCertURL $Private:MyUnifiedLabelingDistributionPointUrl -strEndpointName "UnifiedLabelingDistributionPointUrl" -strLogPath $Private:strCertLogPath fncVerifyIssuer -strCertURL $Private:MyTelemetryDistributionPointUrl -strEndpointName "TelemetryDistributionPointUrl" -strLogPath $Private:strCertLogPath fncVerifyIssuer -strCertURL $Private:MyAIPv1PolicyDistributionPointUrl -strEndpointName "AIPv1PolicyDistributionPointUrl" -strLogPath $Private:strCertLogPath <# Disconnect from AIPService #> Disconnect-AIPService | Out-Null <# Console output #> Write-Output "AIPService disconnected`n" <# Verbose/Logging #> fncLogging -strLogFunction "fncAnalyzeEndpointURLs" -strLogDescription "AIPService disconnected" -strLogValue $true fncLogging -strLogFunction "fncAnalyzeEndpointURLs" -strLogDescription "Export endpoint URLs" -strLogValue "EndpointURLs.log" fncLogging -strLogFunction "fncAnalyzeEndpointURLs" -strLogDescription "Analyze endpoint URLs" -strLogValue "Proceeded" <# Releasing private variable #> $Private:strTenantId = $null } Else { <# Actions if running with user permissions #> <# Console output #> Write-Output (Write-Host "ATTENTION: You must run the RMS_Support_Tool in an administrative PowerShell window as a user with local administrative permissions to continue with this option." -ForegroundColor Red) Write-Output (Write-Host "Alternatively, you can start (bootstrap) any Microsoft© 365 desktop application and try again.`nANALYZE ENDPOINT URLs: Failed.`n" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Action if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Exit function #> Break } <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Calling pause function #> fncPause <# Clearing console #> Clear-Host <# Calling show menu function #> fncShowMenu } } } <# Signal sound #> [console]::beep(1000,200) <# Console output #> Write-Output "Log file: $Global:strUserLogPath\Analyze\EndpointURLs.log" Write-Output (Write-Host "ANALYZE ENDPOINT URLs: Proceeded.`n" -ForegroundColor Green) <# Releasing private variables #> $Private:MyLicensingIntranetDistributionPointUrl = $null $Private:MyLicensingExtranetDistributionPointUrl = $null $Private:MyCertificationDistributionPointUrl = $null $Private:MyTimestamp = $null $Private:strTenantId = $null $Private:strMainKey = $null $Private:strCertLogPath = $null } <# Function to verify certificates issuer #> Function fncVerifyIssuer ($strCertURL, $strEndpointName, $strLogPath) { <# Actions if $strCertURL variable value is not empty #> If ($strCertURL) { <# Defining web request with URL #> $Private:strWebRequest = [System.Net.HttpWebRequest]::Create($strCertURL) <# Get web response for URL #> Try { <# Getting web response for analyzing certificates issuer #> $Private:strWebRequest.GetResponse() | Out-Null } Catch { <# Action if analyze/web request failed #> <# Ignoring 'Catch' (happen when Web Request fail/end) #> } <# Defining certificate file conditions #> $Private:MyWebCert = $Private:strWebRequest.ServicePoint.Certificate <# Exporting web certificate #> $Private:MyCertBinaries = $Private:MyWebCert.Export([Security.Cryptography.X509Certificates.X509ContentType]::Cert) <# Creating temporarily certificate file #> Set-Content -Value $Private:MyCertBinaries -Encoding Byte -Path "$strLogPath\$strEndpointName.ce_" $Private:MyCertFile = New-Object System.Security.Cryptography.X509Certificates.X509Certificate <# Import certificate file for analyzing #> $Private:MyCertFile.Import("$strLogPath\$strEndpointName.ce_") <# Feed variable/certificate data with issuer #> $Private:MyCertFile = $Private:MyCertFile.GetIssuerName() <# Verbose/Logging #> fncLogging -strLogFunction "fncVerifyIssuer" -strLogDescription "Export certificate" -strLogValue "$strEndpointName.ce_" <# Calling function to verify endpoint https status code #> $Private:strHttpCode = fncVerifyEndpoint $strCertURL -strEndpointName $strEndpointName <# Console output #> Write-Output (Write-Host "Endpoint: $strEndpointName" -ForegroundColor Yellow) Write-Output (Write-Host "URL: $strCertURL" -ForegroundColor Yellow) Write-Output (Write-Host "Issuer: $Private:MyCertFile" -ForegroundColor Yellow) Write-Output (Write-Host "Http: $Private:strHttpCode`n" -ForegroundColor Yellow) <# Verbose/Logging #> fncLogging -strLogFunction "fncVerifyIssuer" -strLogDescription $strEndpointName -strLogValue "Http: $Private:strHttpCode" <# Check for existing EndpointURLs.log file and extend it, if it exist #> If ($(Test-Path $Global:strUserLogPath"\Analyze\EndpointURLs.log") -Eq $true) { <# Exporting analyze result #> Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value "Endpoint: $strEndpointName" Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value "URL: $strCertURL" Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value "Issuer: $Private:MyCertFile" Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value "Http: $Private:strHttpCode`n" } } Else { <# Actions if $strCertURL variable value is empty #> <# Verbose/Logging #> fncLogging -strLogFunction "fncVerifyIssuer" -strLogDescription "Export certificate" -strLogValue "-" <# Console output #> Write-Output (Write-Host "Endpoint: $strEndpointName" -ForegroundColor Yellow) Write-Output (Write-Host "URL: -" -ForegroundColor Yellow) Write-Output (Write-Host "Issuer: -" -ForegroundColor Yellow) Write-Output (Write-Host "Http: -`n" -ForegroundColor Yellow) <# Verbose/Logging #> fncLogging -strLogFunction "fncVerifyIssuer" -strLogDescription $strEndpointName -strLogValue "Http: -" <# Check for existing EndpointURLs.log file and extend it, if it exist #> If ($(Test-Path $Global:strUserLogPath"\Analyze\EndpointURLs.log") -Eq $true) { <# Exporting analyze result #> Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value "Endpoint: $strEndpointName" Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value "URL: -" Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value "Issuer: -" Add-Content -Path $Global:strUserLogPath"\Analyze\EndpointURLs.log" -Value "Http: -`n" } } <# Releasing private variables #> $Private:MyWebCert = $null $Private:MyCertFile = $null $Private:strHttpCode = $null $Private:strWebRequest = $null } <# Function to request license to check protection/encryption #> Function fncAnalyzeProtection { <# Verbose/Logging #> fncLogging -strLogFunction "fncAnalyzeProtection" -strLogDescription "Analyze protection" -strLogValue "Initiated" <# Console output #> Write-Output "ANALYZE PROTECTION:" <# Console output #> Write-Output "Initializing, please wait..." <# Checking if 'Analyze'-folder exist and create it, if not #> If ($(Test-Path -Path $Global:strUserLogPath"\Analyze") -Eq $false) { New-Item -ItemType Directory -Force -Path $Global:strUserLogPath"\Analyze" | Out-Null <# Defining Analyze path #> } <# Check for existing Protection.log file and create it, if it not exist #> If ($(Test-Path $Global:strUserLogPath"\Analyze\Protection.log") -Eq $false) { <# Create Protection.log file #> Out-File -FilePath $Global:strUserLogPath"\Analyze\Protection.log" -Encoding UTF8 -Append -Force } <# Create Timestamp as first log entry #> Add-Content -Path $Global:strUserLogPath"\Analyze\Protection.log" -Value ("Date/Timestamp : " + (Get-Date -Verbose:$false -UFormat "%y%m%d-%H%M%S")) <# Check for existing/previous (protected) Protection.ptxt file #> If ($(Test-Path $Global:strUserLogPath"\Analyze\Protection.ptxt") -Eq $true) { <# Delete existing/previous Protection.ptxt file to be able to create new without error #> fncDeleteItem "\\?\$Global:strUserLogPath\Analyze\Protection.ptxt" } <# Console output #> Write-Output (Write-Host "Verifying protection...`n") <# Checking for AIP client 1/2 and trying to protect a sample file #> If (Get-Module -ListAvailable -Name AzureInformationProtection) { <# Feeding variable with AIP client version information #> $strAIPClientVersion = $((Get-Module -ListAvailable -Name AzureInformationProtection).Version).ToString() <# Check for existing Protection.txt sample file and create it, if it not exist #> If ($(Test-Path $Global:strUserLogPath"\Analyze\Protection.txt") -Eq $false) { <# Creating sample text file #> Out-File -FilePath $Global:strUserLogPath"\Analyze\Protection.txt" -Encoding UTF8 -Append -Force <# Add content to file #> Add-Content -Path $Global:strUserLogPath"\Analyze\Protection.txt" -Value "This file has been created by the RMS_Support_Tool." } <# Console output #> Write-Output (Write-Host "License : {[OwnerMail, RMSSupToolEncrTest@microsoft.com], [UserMail, RMSSupToolEncrTest@microsoft.com], [Permissions, EDIT]}" -ForegroundColor Yellow) <# Logging #> fncLogging -strLogFunction "fncAnalyzeProtection" -strLogDescription "License created" -strLogValue $true <# Trying protection with AIPv1 client #> If ($strAIPClientVersion.StartsWith("1") -eq $true) { <# Feeding variable with temporary license #> $Private:TempLicense = New-RMSProtectionLicense -OwnerEmail "RMSSupToolEncrTest@microsoft.com" -UserEmail "RMSSupToolEncrTest@microsoft.com" -Permission EDIT <# Add content to log file #> Add-Content -Path $Global:strUserLogPath"\Analyze\Protection.log" -Value "License : {[OwnerMail, RMSSupToolEncrTest@microsoft.com], [UserMail, RMSSupToolEncrTest@microsoft.com], [Permission, EDIT]}" <# Protect test file with temporary license #> $Private:TempTestFile = (Protect-RMSFile -License $Private:TempLicense -InPlace -File $Global:strUserLogPath"\Analyze\Protection.txt" -ErrorAction SilentlyContinue).EncryptedFile <# Checking if protection was successfull #> If ($Private:TempTestFile.EndsWith(".ptxt") -eq $true) { <# Checking for protection status #> If ((Get-RMSFileStatus -file $Private:TempTestFile -ErrorAction SilentlyContinue).Status -match "Protected") { <# Console output #> Write-Output (Write-Host "File : $Global:strUserLogPath\Analyze\Protection.ptxt" -ForegroundColor Yellow) Write-Output (Write-Host "Verification : Successfull`n" -ForegroundColor Green) <# Logging #> fncLogging -strLogFunction "fncAnalyzeProtection" -strLogDescription "Verification" -strLogValue "Successfull" <# Add content to log file #> Add-Content -Path $Global:strUserLogPath"\Analyze\Protection.log" -Value "File : $Global:strUserLogPath\Analyze\Protection.ptxt" Add-Content -Path $Global:strUserLogPath"\Analyze\Protection.log" -Value "Verification : Successfull`n" } Else { <# Console output #> Write-Output (Write-Host "Verification : Failed (ERROR)`n" -ForegroundColor Red) <# Logging #> fncLogging -strLogFunction "fncAnalyzeProtection" -strLogDescription "Verification" -strLogValue "Failed (ERROR)" <# Add content to log file #> Add-Content -Path $Global:strUserLogPath"\Analyze\Protection.log" -Value "Verification : Failed (ERROR)`n" } } } <# Trying protection with AIPv2 client #> ElseIf ($strAIPClientVersion.StartsWith("2") -eq $true) { <# Feeding variable with temporary license #> $Private:TempLicense = New-AIPCustomPermissions -Users "RMSSupToolEncrTest@microsoft.com" -Permissions Viewer <# Add content to log file #> Add-Content -Path $Global:strUserLogPath"\Analyze\Protection.log" -Value "License : {[Users, RMSSupToolEncrTest@microsoft.com], [Permissons, VIEWER]}" <# Remember default progress bar status: 'Continue' #> $Private:strOriginalPreference = $Global:ProgressPreference $Global:ProgressPreference = "SilentlyContinue" <# Hiding progress bar #> <# Protect and check if it was successfull #> If ((Set-AIPFileLabel $Global:strUserLogPath"\Analyze\Protection.txt" -CustomPermissions $Private:TempLicense -ErrorAction SilentlyContinue).Status -eq "Success") { <# Console output #> Write-Output (Write-Host "File : $Global:strUserLogPath\Analyze\Protection.ptxt" -ForegroundColor Yellow) Write-Output (Write-Host "Verification : Successfull`n" -ForegroundColor Green) <# Logging #> fncLogging -strLogFunction "fncAnalyzeProtection" -strLogDescription "Verification" -strLogValue "Successfull" <# Add content to log file #> Add-Content -Path $Global:strUserLogPath"\Analyze\Protection.log" -Value "File : $Global:strUserLogPath\Analyze\Protection.ptxt" Add-Content -Path $Global:strUserLogPath"\Analyze\Protection.log" -Value "Verification : Successfull`n" } Else { <# Console output #> Write-Output (Write-Host "Verification : Failed (ERROR)`n" -ForegroundColor Red) <# Logging #> fncLogging -strLogFunction "fncAnalyzeProtection" -strLogDescription "Verification" -strLogValue "Failed (ERROR)" <# Add content to log file #> Add-Content -Path $Global:strUserLogPath"\Analyze\Protection.log" -Value "Verification : Failed (ERROR)`n" } <# Set back progress bar to previous setting #> $Global:ProgressPreference = $Private:strOriginalPreference } } Else { <# Console output #> Write-Output (Write-Host "ATTENTION: Microsoft® Azure Information Protection cmdlets are required to proceed this option!`nPlease review point 1 in the requirements section of the help file for additional information.`n" -ForegroundColor Red) <# Add content to log file #> Add-Content -Path $Global:strUserLogPath"\Analyze\Protection.log" -Value "Verification : Failed (No AIP client)`n" <# Console output #> Write-Output "Log file: $Global:strUserLogPath\Analyze\Protection.log" Write-Output (Write-Host "ANALYZE PROTECTION: Failed.`n" -ForegroundColor Red) <# Signal sound #> [console]::beep(500,200) <# Logging if AIP client is not installed #> fncLogging -strLogFunction "fncAnalyzeProtection" -strLogDescription "AIP client installed" -strLogValue $false fncLogging -strLogFunction "fncAnalyzeProtection" -strLogDescription "Verification" -strLogValue "Failed (No AIP client)" fncLogging -strLogFunction "fncAnalyzeProtection" -strLogDescription "Export analyze protection" -strLogValue "Protection.log" fncLogging -strLogFunction "fncAnalyzeProtection" -strLogDescription "Analyze protection" -strLogValue "Failed" <# Action if function was called from command line #> If ($Global:bolCommingFromMenu -eq $false) { <# Set back window title to default #> $Global:host.UI.RawUI.WindowTitle = $Global:strDefaultWindowTitle <# Exit function #> Break } <# Action if function was called from the menu #> If ($Global:bolCommingFromMenu -eq $true) { <# Calling pause function #> fncPause <# Clearing console #> Clear-Host <# Calling show menu function #> fncShowMenu } } <# Deleting sample text file #> fncDeleteItem "\\?\$Global:strUserLogPath\Analyze\Protection.txt" <# Releasing private variables #> $Private:TempLicense = $null $Private:TempTestFile = $null $strAIPClientVersion = $null <# Verbose/Logging #> fncLogging -strLogFunction "fncAnalyzeProtection" -strLogDescription "Export analyze protection" -strLogValue "Protection.log" fncLogging -strLogFunction "fncAnalyzeProtection" -strLogDescription "Analyze protection" -strLogValue "Proceeded" <# Console output #> Write-Output "Log file: $Global:strUserLogPath\Analyze\Protection.log" Write-Output (Write-Host "ANALYZE PROTECTION: Proceeded.`n" -ForegroundColor Green) <# Signal sound #> [console]::beep(1000,200) } <# Function to compress all log files into a .zip archive #> Function fncCompressLogs { <# Console output #> Write-Output "COMPRESS LOGS:`nCompressing logs, please wait...`n" <# Defining default zip folder path #> $Global:strZipSourcePath = $Global:strTempFolder + "\RMS_Support_Tool" <# Verbose/Logging #> fncLogging -strLogFunction "fncCompressLogs" -strLogDescription "Compress logs" -strLogValue "Initiated" fncLogging -strLogFunction "fncCompressLogs" -strLogDescription "Zip source path" -strLogValue $Global:strZipSourcePath <# Compress all files into a .zip file #> If ($(Test-Path -Path $Global:strZipSourcePath) -Eq $true) { <# Actions, if path exist #> <# Defining .zip file name #> $Private:strZipFile = "RMS_Support_Tool (" + $env:USERNAME + (Get-Date -UFormat "-%H%M%S") + ").zip".ToString() <# Defining user desktop path #> $Private:DesktopPath = [Environment]::GetFolderPath("Desktop") <# Verbose/Logging #> fncLogging -strLogFunction "fncCompressLogs" -strLogDescription "Zip destination path" -strLogValue $Private:DesktopPath fncLogging -strLogFunction "fncCompressLogs" -strLogDescription "Zip file name" -strLogValue $Private:strZipFile fncLogging -strLogFunction "fncCompressLogs" -strLogDescription "Compress logs" -strLogValue "Proceeded" <# Compress all files and logs into zip file (overwrites) #> Compress-Archive -Path $Global:strZipSourcePath"\Logs\*" -DestinationPath "$Private:DesktopPath\$Private:strZipFile" -Force -ErrorAction SilentlyContinue } <# Console output #> Write-Output "Zip file: $Private:DesktopPath\$Private:strZipFile" Write-Output (Write-Host "COMPRESS LOGS: Proceeded.`n" -ForegroundColor Green) <# Cleaning Logs folders if .zip archive is on the desktop #> If ($(Test-Path -Path $Private:DesktopPath\$Private:strZipFile) -Eq $true) { <# Actions, if file exist on desktop #> <# Cleaning Logs folders #> Remove-Item "\\?\$Global:strZipSourcePath\Logs" -Recurse -Force -ErrorAction SilentlyContinue | Out-Null <# Verbose/Logging #> fncLogging -strLogFunction "fncCompressLogs" -strLogDescription "Log folders cleaned" -strLogValue $true } Else{ <# Verbose/Logging #> fncLogging -strLogFunction "fncCompressLogs" -strLogDescription "Log folders cleaned" -strLogValue $false } <# Signal sound #> [console]::beep(1000,200) <# Releasing private variable #> $Private:strZipFile = $null $Private:DesktopPath = $null <# Releasing global variable #> $Global:strWindowsEdition = $null $Global:strZipSourcePath = $null } <# Function to pause menu for message display #> Function fncPause { <# Filling variable with default pause message #> $Private:strPauseMessage = "Press any key to continue" <# Pausing the script module with a message #> If ($Global:psISE) { <# Actions, if running in PowerShell ISE #> Add-Type -AssemblyName System.Windows.Forms [System.Windows.Forms.MessageBox]::Show("$Private:strPauseMessage") } Else { <# Actions if running in PowerShell command window #> <# Console output #> Write-Output (Write-Host $Private:strPauseMessage -ForegroundColor Yellow) $Private:strValue = $Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown") } <# Verbose/Logging #> fncLogging -strLogFunction "fncPause" -strLogDescription "Pause" -strLogValue "Called" } <# Function to call script module menu #> Function fncShowMenu { <# Clearing console #> Clear-Host <# Helper variable to control menu handling inside function calls #> $Global:bolCommingFromMenu = $true <# Verbose/Logging #> fncLogging -strLogFunction "fncShowMenu" -strLogDescription "Main menu" -strLogValue "Called" <# Menu output #> Write-Output "RMS_Support_Tool:`n" Write-Output (Write-Host " [I] INFORMATION" -ForegroundColor Green) Write-Output (Write-Host " [D] DISCLAIMER" -ForegroundColor Red) Write-Output (Write-Host " [H] HELP" -ForegroundColor Green) Write-Output (Write-Host " [R] RESET" -ForegroundColor Yellow) Write-Output (Write-Host " [P] RECORD PROBLEM" -ForegroundColor Yellow) Write-Output (Write-Host " [C] COLLECT" -ForegroundColor Yellow) If (@($Global:MenuCollectExtended) -Match $true) { Write-Output (Write-Host " ├──[A] AIP service configuration" -ForegroundColor Yellow) Write-Output (Write-Host " ├──[O] AIP protection templates" -ForegroundColor Yellow) Write-Output (Write-Host " └──[L] Labels and policies" -ForegroundColor Yellow) Write-Output (Write-Host " [Y] ANALYZE" -ForegroundColor Yellow) If (@($Global:MenuAnalyzeExtended) -Match $true) { Write-Output (Write-Host " ├──[U] Endpoint URLs" -ForegroundColor Yellow) Write-Output (Write-Host " └──[T] Protection" -ForegroundColor Yellow) Write-Output (Write-Host " [Z] COMPRESS LOGS" -ForegroundColor Yellow) Write-Output (Write-Host " [X] EXIT`n" -ForegroundColor Green) } Else { Write-Output (Write-Host " [Z] COMPRESS LOGS" -ForegroundColor Yellow) Write-Output (Write-Host " [X] EXIT`n" -ForegroundColor Green) } } Else { Write-Output (Write-Host " [Y] ANALYZE" -ForegroundColor Yellow) If (@($Global:MenuAnalyzeExtended) -Match $true) { Write-Output (Write-Host " ├──[U] Endpoint URLs" -ForegroundColor Yellow) Write-Output (Write-Host " └──[T] Protection" -ForegroundColor Yellow) Write-Output (Write-Host " [Z] COMPRESS LOGS" -ForegroundColor Yellow) Write-Output (Write-Host " [X] EXIT`n" -ForegroundColor Green) } Else { Write-Output (Write-Host " [Z] COMPRESS LOGS" -ForegroundColor Yellow) Write-Output (Write-Host " [X] EXIT`n" -ForegroundColor Green) } } <# Defining menu selection variable #> $Private:intMenuSelection = Read-Host "Please select an option and press enter" <# Actions for information menu selected #> If ($Private:intMenuSelection -Eq "I") { <# Verbose/Logging #> fncLogging -strLogFunction "fncShowMenu" -strLogDescription "[I] INFORMATION" -strLogValue "Selected" <# Clearing console #> Clear-Host <# Calling information function #> fncInformation <# Calling pause function #> fncPause } <# Actions for disclaimer menu selected #> If ($Private:intMenuSelection -Eq "D") { <# Verbose/Logging #> fncLogging -strLogFunction "fncShowMenu" -strLogDescription "[D] DISCLAIMER" -strLogValue "Selected" <# Clearing console #> Clear-Host <# Calling disclaimer function #> fncDisclaimer <# Calling pause function #> fncPause } <# Actions for help menu selected #> If ($Private:intMenuSelection -Eq "H") { <# Verbose/Logging #> fncLogging -strLogFunction "fncShowMenu" -strLogDescription "[H] HELP" -strLogValue "Selected" & |