Private/KmsFunctions.ps1
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 |
function Get-KmsLicenseState { param([string]$LicenseState) switch ($LicenseState) { 0 { 'Unlicensed' } 1 { 'Activated' } 2 { 'Grace Period' } 3 { 'Out-of-Tolerance Grace Period' } 4 { 'Non-Genuine Grace Period' } 5 { 'Notifications Mode' } 6 { 'Extended Grace Period' } } } function Get-KmsErrorCode { param([string]$ErrorCode) switch ($ErrorCode) { { $_ -eq '0x0' -or $_ -eq '0x00000000' } { $null } '0xC004F035' { 'The Software Licensing Service reported that the computer could not be activated with a Volume license product key. Volume-licensed systems require upgrading from a qualifying operating system. Please contact your system administrator or use a different type of key.' } '0xC004F038' { 'The Software Licensing Service reported that the computer could not be activated. The count reported by your Key Management Service (KMS) is insufficient. Please contact your system administrator.' } '0xC004F039' { 'The Software Licensing Service reported that the product could not be activated. The Key Management Service (KMS) is not enabled.' } '0x4004F040' { 'The Software Licensing Service reported that the product was activated but the owner should verify the Product Use Rights.' } '0x4004F041' { 'SL_I_VL_OOB_NO_BINDING_SERVER_REGISTRATION' } { $_ -eq '0x4004F042' -or $_ -eq '0xC004F042' } { 'The Software Licensing Service determined that the specified Key Management Service (KMS) cannot be used' } '0x4004F056' { 'The Software Licensing Service reported that the product could not be activated using the Key Management Service (KMS).' } '0xC004F015' { 'The Software Licensing Service reported that the license is not installed.' } '0xC004F041' { 'The Software Licensing Service determined that the Key Management Service (KMS) is not activated. KMS needs to be activated. Please contact system administrator.' } '0xC0020017' { 'The RPC Service is unavailable.' } default { $ErrorCode } } } function Get-KmsProductSku { param([string]$ProductSku) # see https://github.com/asaboss/py-kms-server/ for updates # check https://github.com/CNMan/balala/blob/master/pkconfig.csv for more updates switch ($ProductSku) { '5DBE2163-3FA9-464C-B8B7-CAADDE61E4FF' { 'RTM_HomeStudent_OEM_Perp' } '09E2D37E-474B-4121-8626-58AD9BE5776F' { 'RTM_HomeStudent_Retail' } '8C54246A-31FE-4274-90C7-687987735848' { 'RTM_Outlook_OEM_Perp' } 'FBF4AC36-31C8-4340-8666-79873129CF40' { 'RTM_Outlook_Retail' } '8FB0D83E-2BCC-43CD-871A-6AD7A06349F4' { 'RTM_Outlook_SubPrepid' } '2C8ACFCA-F0D9-4CCF-BA28-2F2C47DA8BA5' { 'RTM_Outlook_Trial' } '745FB377-0A59-4CA9-B9A9-C359557A2C4E' { 'RTM_AccessRuntime_ByPass' } '0B1ACA01-5C25-468F-809D-DA81CB49AC3A' { 'RTM_HomeBusinessDemo_BypassTrial' } 'F63B84D0-ED9D-4B05-99E4-19D33FD7AFBD' { 'RTM_HomeBusiness_OEM_Perp' } '0EAAF923-70A2-48BD-A6F1-54CC1AA95C13' { 'RTM_HomeBusiness_OEM_Perp2' } '7B7D1F17-FDCB-4820-9789-9BEC6E377821' { 'RTM_HomeBusiness_Retail' } '4790B2A5-BBF2-4C26-976F-D7736E516CCE' { 'RTM_HomeBusiness_Trial' } '19316117-30A8-4773-8FD9-7F7231F4E060' { 'RTM_HomeBusinessSub_SubPrepid' } '8C893555-CB79-4BAA-94EA-780E01C3AB15' { 'RTM_Mondo_BypassTrial2' } 'F6183964-39E3-46A9-A641-734041BAFF89' { 'RTM_Mondo_OEM_Perp' } '14F5946A-DEBC-4716-BABC-7E2C240FEC08' { 'RTM_Mondo_Retail' } '4671E3DF-D7B8-4502-971F-C1F86139A29A' { 'RTM_Mondo_Retail2' } '09AE19CA-75F8-407F-BF70-8D9F24C8D222' { 'RTM_Mondo_Retail3' } '3D9F0DCA-BCF1-4A47-8F90-EB53C6111AFD' { 'RTM_Mondo_SubPrepid' } '8A730535-A343-44EB-91A2-B1650DE0A872' { 'RTM_Mondo_Trial' } 'EFEEFEDE-44B4-44FF-84D5-01B67A380024' { 'RTM_Mondo_Trial2' } 'AB324F86-606E-42EC-93E3-FC755989FE19' { 'RTM_Mondo_Trial3' } '60CD7BD4-F23C-4E58-9D81-968591E793EA' { 'RTM_Mondo_ByPass' } 'A42E403B-B141-4FA2-9781-647604D09BFB' { 'RTM_Mondo_BypassTrial' } 'EF3D4E49-A53D-4D81-A2B1-2CA6C2556B2C' { 'Office Mondo 2010' } '533B656A-4425-480B-8E30-1A2358898350' { 'RTM_Mondo_MAK' } '2C971DC3-E122-4DBD-8ADF-B5777799799A' { 'RTM_Mondo_Subscription' } '2BCDDDBE-4EBE-4728-9594-625E26137761' { 'RTM_ProfessionalDemo_BypassTrial' } '1783C7A6-840C-4B33-AF05-2B1F5CD73527' { 'RTM_Professional_OEM_Perp' } '8B559C37-0117-413E-921B-B853AEB6E210' { 'RTM_Professional_Retail' } 'DF01848D-8F9D-4589-9198-4AC51F2547F3' { 'RTM_Professional_Trial' } '71391382-EFB5-48B3-86BD-0450650FED7D' { 'RTM_GrooveServer_ByPass' } 'B13B737A-E990-4819-BC00-1A12D88963C3' { 'RTM_GrooveServer_BypassTrial' } 'B5300EA3-8300-42D6-A3CD-4BFFA76397BA' { 'RTM_GrooveServerEMS_ByPass' } '7C7F5B37-6BBA-49D2-B0DE-27CC76BCE67D' { 'RTM_GrooveServerEMS_BypassTrial' } '8FC4269F-A845-4D1F-9DF0-9F499C92D9CB' { 'RTM_HomeStudentDemo_BypassTrial' } 'F10D4C70-F7CC-452A-B4B8-F12E3D6F4EEC' { 'RTM_HomeStudent_BypassTrial' } '0E795CCE-5BAD-40B1-8803-CE71FB89031D' { 'RTM_HomeStudent_OEM_Perp2' } 'DDB12F7C-CE7E-4EE5-A01C-E6AF9EDBC020' { 'RTM_HomeStudent_OEM_Perp3' } '1CAEF4EC-ADEC-4236-A835-882F5AFD4BF0' { 'RTM_HomeStudent_Retail2' } '7B0FF49B-22DA-4C74-876F-B039616D9A4E' { 'RTM_HomeStudent_Retail3' } 'AFCA9E83-152D-48A8-A492-6D552E40EE8A' { 'RTM_HomeStudent_SubPrepid' } '3850C794-B06F-4633-B02F-8AC4DF0A059F' { 'RTM_HomeStudent_Trial' } 'ED21638F-97FF-4A65-AD9B-6889B93065E2' { 'RTM_ProjectServer_ByPass' } '84902853-59F6-4B20-BC7C-DE4F419FEFAD' { 'RTM_ProjectServer_BypassTrial' } 'D3422CFB-8D8B-4EAD-99F9-EAB0CCD990D7' { 'RTM_Standard_Retail' } 'BC8275B7-D67A-4390-8C5E-CC57CFC74328' { 'RTM_Standard_SubPrepid' } '2BEB303E-66C6-4422-B2EC-5AEA48B75EE5' { 'RTM_HomeBusiness_BypassTrial' } '00B6BBFC-4091-4182-BB81-93A9A6DEB46A' { 'RTM_HomeBusiness_OEM_Perp3' } '00495466-527F-442F-A681-F36FAD813F86' { 'RTM_HomeBusiness_Retail2' } '4EFBD4C4-5422-434C-8C25-75DA21B9381C' { 'RTM_HomeBusiness_Retail3' } 'B21DA2D5-50F1-4C5C-BF59-07BAA35E25BA' { 'RTM_HomeBusiness_SubPrepid' } '1DFBB6C1-0C4D-44E9-A0EA-77F59146E011' { 'RTM_HomeBusiness_Trial2' } 'AB586F5C-5256-4632-962F-FEFD8B49E6F4' { 'Office OneNote 2010' } '6860B31F-6A67-48B8-84B9-E312B3485C4B' { 'RTM_OneNote_MAK' } '4365667B-8304-463E-B542-2DF8D0A73EA9' { 'RTM_Professional_BypassTrial' } '6912CCDF-557A-497C-9903-3DE6CE9FA631' { 'RTM_Professional_DeltaTrial' } '7D4627B9-9467-4AA7-AE7F-892807D78D8F' { 'RTM_Professional_OEM_Perp2' } '7E05FC0C-7CE4-4849-BB0B-231BDF5DCA70' { 'RTM_Professional_OEM_Perp3' } '50AC2361-FE88-4E5E-B0B2-13ACC96CA9AE' { 'RTM_Professional_Retail2' } 'A7971F62-61D0-4C67-ABCC-085C10CF470F' { 'RTM_Professional_Retail3' } '71FB05B7-19E2-4567-AF77-8F31681D39D2' { 'RTM_Professional_SubPrepid' } '42122F59-2850-485E-B0C0-1AACA1C88923' { 'RTM_Professional_Trial2' } '9F82274C-C0EF-4212-B8D9-97A6BFBC2DC7' { 'RTM_HSOneNote_OEM_Perp' } '25FE4611-B44D-49CC-AE87-2143D299194E' { 'RTM_HSOneNote_Retail' } 'D82665D5-2D8F-46BA-ABEC-FDF06206B956' { 'RTM_HSOneNote_SubPrepid' } 'B49D9ABE-7F30-40AA-9A4C-BDE08A14832D' { 'RTM_HSOneNote_Trial' } 'D79A3F4F-E768-4114-8D3A-7F9F45687F67' { 'RTM_HSWord_OEM_Perp' } 'A963D7AE-7A88-41A7-94DA-8BB5635A8AF9' { 'RTM_HSWord_Retail' } 'C735DCC2-F5E9-4077-A72F-4B6D254DDC43' { 'RTM_HSWord_SubPrepid' } '533D80CB-BF68-48DB-AB3E-165B5377599E' { 'RTM_HSWord_Trial' } '115A5CF2-D4CF-4627-91DC-839DF666D082' { 'RTM_OneNote_OEM_Perp' } '3F7AA693-9A7E-44FC-9309-BB3D8E604925' { 'RTM_OneNote_Retail' } '698FA94F-EB99-43BE-AB8C-5A085C36936C' { 'RTM_OneNote_SubPrepid' } '8CC3794C-4B71-44EA-BAAE-D95CC1D17042' { 'RTM_OneNote_Trial' } 'AF2AFE5B-55DD-4252-AF42-E6F79CC07EBC' { 'RTM_SmallBusBasicsMSDN_Retail' } 'EA509E87-07A1-4A45-9EDC-EBA5A39F36AF' { 'Office Small Business Basics 2010' } '8090771E-D41A-4482-929E-DE87F1F47E46' { 'RTM_SmallBusBasics_MAK' } 'BED40A3E-6ACA-4512-8012-70AE831A2FC5' { 'RTM_Word_OEM_Perp' } 'DB3BBC9C-CE52-41D1-A46F-1A1D68059119' { 'RTM_Word_Retail' } '99279F42-6DE2-4346-87B1-B0EC99C7525C' { 'RTM_Word_SubPrepid' } '195E23D7-E0B7-4C30-8A30-8E9941AFD07E' { 'RTM_Word_Trial' } '1359DCE0-0DC8-4171-8C43-BA8B9F2E5D1D' { 'RTM_VisioPro_OEM_Perp' } 'D0A97E12-08A1-4A45-ADD5-1155B204E766' { 'RTM_VisioPro_Retail' } '0993043D-664F-4B2E-A7F1-FD92091FA81F' { 'RTM_VisioPro_Retail2' } '0EC894E8-A5A9-48DE-9463-061C4801EE8F' { 'RTM_VisioPro_SubPrepid' } '673EA9EA-9BC0-463F-93E5-F77655E46630' { 'RTM_VisioPro_Trial' } '3B02A9FF-CED3-46D6-9298-A4334829748F' { 'RTM_PersonalDemo_BypassTrial' } '20F986B2-048B-4810-9421-73F31CA97657' { 'RTM_PersonalPrepaid_Trial' } '40EC9524-41D7-41D7-95C7-E5F185F92EA3' { 'RTM_Personal_OEM_Perp' } 'ACB51361-C0DB-4895-9497-1831C41F31A6' { 'RTM_Personal_Retail' } '45AB9E9F-C1DC-4BC7-8E37-89E0C1241776' { 'RTM_Personal_Retail2' } '148CE971-9CCE-4DE0-9FD6-4871BEBD5666' { 'RTM_Personal_SubPrepid' } 'E98EF0C0-71C4-42CE-8305-287D8721E26C' { 'RTM_ProPlusSub_SubPrepid' } 'BB42DD2B-070C-4F5B-947A-55F56A16D4F3' { 'RTM_VisioPrem_OEM_Perp' } '66CAD568-C2DC-459D-93EC-2F3CB967EE34' { 'RTM_VisioPrem_Retail' } '3513C04B-9085-43A9-8F9A-639993C19E80' { 'RTM_VisioPrem_SubPrepid' } '7616C283-5C5B-4054-B52C-902F03E4DCDF' { 'RTM_VisioPrem_Trial' } '0B172E55-95AE-4C78-8C58-81AA98AB7F94' { 'RTM_VisioPro_OEM_Perp2' } '40BECF98-1D17-43EF-989F-1D92396A2741' { 'RTM_VisioStd_OEM_Perp' } 'BA24D057-8B5F-462E-87FE-485038C68954' { 'RTM_VisioStd_Retail' } '4CC91C85-44A8-4834-B15D-FFEA4616E4E4' { 'RTM_VisioStd_SubPrepid' } 'A27DF0C4-AE71-4DDD-BBEB-6D6222FE3A17' { 'RTM_VisioStd_Trial' } '2D0882E7-A4E7-423B-8CCC-70D91E0158B1' { 'Office Word 2010' } '98D4050E-9C98-49BF-9BE1-85E12EB3AB13' { 'RTM_Word_MAK' } 'FABC9393-6174-4192-B3EE-6340E16CF90D' { 'RTM_ProjectPro_OEM_Perp' } '725714D7-D58F-4D12-9FA8-35873C6F7215' { 'RTM_ProjectPro_Retail' } 'AA188B61-D3D3-443C-9DEC-5B42393EE5CB' { 'RTM_ProjectPro_Retail2' } '9A13EB9C-006F-450A-9F59-4CEC1EAB88F5' { 'RTM_ProjectPro_SubPrepid' } '694E35B9-F965-47D7-AA19-AB2783224ADF' { 'RTM_ProjectPro_Trial' } 'EAEED721-9715-46FC-B2F8-03EEA2EF1FE2' { 'RTM_Excel_OEM_Perp' } '4EAFF0D0-C6CB-4187-94F3-C7656D49A0AA' { 'RTM_Excel_Retail' } '0BE50797-9053-4F15-B9B1-2F2C5A310816' { 'RTM_Excel_SubPrepid' } '8FC26056-52E4-4519-889F-CDBEDEAC7C31' { 'RTM_Excel_Trial' } '09ED9640-F020-400A-ACD8-D7D867DFD9C2' { 'Office Mondo 2010' } '247E7706-0D68-4F56-8D78-2B8147A11CA8' { 'RTM_PowerPoint_OEM_Perp' } '133C8359-4E93-4241-8118-30BB18737EA0' { 'RTM_PowerPoint_Retail' } '1EEA4120-6699-47E9-9E5D-2305EE108BAC' { 'RTM_PowerPoint_SubPrepid' } '1C57AD8F-60BE-4CE0-82EC-8F55AA09751F' { 'RTM_PowerPoint_Trial' } '8B1F0A02-07D6-411C-9FC7-9CAA3F86D1FE' { 'RTM_ProjectStd_OEM_Perp' } '688F6589-2BD9-424E-A152-B13F36AA6DE1' { 'RTM_ProjectStd_Retail' } 'F4C9C7E4-8C96-4513-ADA3-0A514B3AC5CF' { 'RTM_ProjectStd_SubPrepid' } 'F510F8DE-4325-4461-BD33-571EDBE0A933' { 'RTM_ProjectStd_Trial' } '191301D3-A579-428C-B0C7-D7988500F9E3' { 'RTM_ProPlusAcad_MAK' } '42CBF3F6-4D5E-49C6-991A-0D99B8429A6D' { 'RTM_ProPlusMSDN_Retail' } '4E6F61A8-989B-463C-9948-83B894540AD4' { 'RTM_Publisher_OEM_Perp' } '98677603-A668-4FA4-9980-3F1F05F78F69' { 'RTM_Publisher_Retail' } '17B7CE1A-92A9-4B59-A7D0-E872D8A9A994' { 'RTM_Publisher_SubPrepid' } '1A069855-55EC-4CCF-9C45-2AC5D500F792' { 'RTM_Publisher_Trial' } 'DD457678-5C3E-48E4-BC67-A89B7A3E3B44' { 'RTM_StandardAcad_MAK' } 'B6D2565C-341D-4768-AD7D-ADDBE00BB5CE' { 'RTM_StandardMSDN_Retail' } '9DA2A678-FB6B-4E67-AB84-60DD6A9C819A' { 'Office Standard 2010' } '1F76E346-E0BE-49BC-9954-70EC53A4FCFE' { 'RTM_Standard_MAK' } '3FDFBCC8-B3E4-4482-91FA-122C6432805C' { 'RTM_MOSS_ByPass' } 'B2C0B444-3914-4ACB-A0B8-7CF50A8F7AA0' { 'RTM_MOSS_BypassTrial' } '1F230F82-E3BA-4053-9B6D-E8F061A933FC' { 'RTM_MOSSFISEnt_ByPass' } 'F48AC5F3-0E33-44D8-A6A9-A629355F3F0C' { 'RTM_MOSSFISEnt_BypassTrial' } '9C2C3D66-B43B-4C22-B105-67BDD5BB6E85' { 'RTM_MOSSFISStd_ByPass' } '8F23C830-C19B-4249-A181-B20B6DCF7DBE' { 'RTM_MOSSFISStd_BypassTrial' } 'D5595F62-449B-4061-B0B2-0CBAD410BB51' { 'RTM_MOSSPremium_ByPass' } '88BED06D-8C6B-4E62-AB01-546D6005FE97' { 'RTM_MOSSPremium_BypassTrial' } 'C1CEDA8B-C578-4D5D-A4AA-23626BE4E234' { 'RTM_OEM_ByPass' } 'AE3ED6AE-2654-4B82-A4BA-331265BB8972' { 'RTM_ProfessionalAcad_OEM_Perp' } 'C4109E90-6C4A-44F6-B380-EF6137122F16' { 'RTM_ProfessionalAcad_Retail' } '23037F94-D654-4F38-962F-FF5B15348630' { 'RTM_ProfessionalAcad_Trial' } '75BB133B-F5DD-423C-8321-3BD0B50322A5' { 'RTM_ProPlusAcad_Retail' } '88B5EC99-C9D1-47F9-B1F2-3C6C63929B7B' { 'RTM_SmallBusBasics_OEM_Perp' } 'DBE3AEE0-5183-4FF7-8142-66050173CB01' { 'RTM_SmallBusBasics_Retail' } '08CEF85D-8704-417E-A749-B87C7D218CAD' { 'RTM_SmallBusBasics_SubPrepid' } '4519ABCF-23DB-487B-AC28-7C9EBE801716' { 'RTM_SmallBusBasics_Trial' } '8CE7E872-188C-4B98-9D90-F8F90B7AAD02' { 'Office Access 2010' } '95AB3EC8-4106-4F9D-B632-03C019D1D23F' { 'RTM_Access_MAK' } '209408DF-98DB-4EEB-B96B-D0B9A4B13468' { 'RTM_Groove_OEM_Perp' } '7004B7F0-6407-4F45-8EAC-966E5F868BDE' { 'RTM_Groove_Retail' } '84155B23-BAE0-4748-967B-40E12917B0BB' { 'RTM_Groove_SubPrepid' } 'DD1E0912-6816-4DC2-A8BF-AA2971DB0E25' { 'RTM_Groove_Trial' } '8C7E3A91-E176-4AB3-84B9-A7E0EFB3A6DD' { 'RTM_HSExcel_OEM_Perp' } 'C3AE020C-5A71-4CC5-A27A-2A97C2D46860' { 'RTM_HSExcel_Retail' } 'C7DF3516-425A-4A84-9420-0112F3094D90' { 'RTM_HSExcel_SubPrepid' } 'F4F25E2B-C13C-4256-8E4C-5D4D82E1B862' { 'RTM_HSExcel_Trial' } '95FF18B9-F2CF-4291-AB2E-BC17D54AA756' { 'RTM_HSPowerPoint_OEM_Perp' } 'D652AD8D-DA5C-4358-B928-7FB1B4DE7A7C' { 'RTM_HSPowerPoint_Retail' } '31E631F4-EE62-4B1F-AEB6-3B30393E0045' { 'RTM_HSPowerPoint_SubPrepid' } '131E900A-EFA8-412E-BA20-CB0F4BE43054' { 'RTM_HSPowerPoint_Trial' } '866AC003-01A0-49FD-A6EC-F8F56ABDCFAB' { 'RTM_InfoPath_OEM_Perp' } 'EF1DA464-01C8-43A6-91AF-E4E5713744F9' { 'RTM_InfoPath_Retail' } '0209AC7B-8A4B-450B-92F2-B583152A2613' { 'RTM_InfoPath_SubPrepid' } '4F0B7650-A09D-4180-976D-76D8B31EA1B4' { 'RTM_InfoPath_Trial' } '7B8EBE34-08FC-46C5-8BFA-161B12A43E41' { 'RTM_ProjectPro_OEM_Perp2' } 'FD2BBCED-F8DB-45BC-B4D6-AC05A47D3691' { 'RTM_ProjectPro_Trial2' } '8C5EDB5D-9AA0-47A7-9416-D61C7419A60A' { 'RTM_ProPlusMSDN_Retail2' } '6F327760-8C5C-417C-9B61-836A98287E0C' { 'Office Professional Plus 2010' } 'BFE7A195-4F8F-4F0B-A622-CF13C7D16864' { 'RTM_ProPlus_KMS_Host' } 'FDF3ECB9-B56F-43B2-A9B8-1B48B6BAE1A7' { 'RTM_ProPlus_MAK' } '2637E47C-CD16-45A1-8FF7-B7938723FD10' { 'RTM_HomeBusinessSub_Subscription' } 'F3329A70-BB26-4DD1-AF64-68E10C1AE635' { 'RTM_OfficeLPK_ByPass' } 'ECB7C192-73AB-4DED-ACF4-2399B095D0CC' { 'Office OutLook 2010' } 'A9AEABD8-63B8-4079-A28E-F531807FD6B8' { 'RTM_Outlook_MAK' } '288B2C51-35B5-41CA-AA5B-524DA113B4BD' { 'RTM_ProjectLPK_ByPass' } '47A5840C-8124-4A1F-A447-50168CD6833D' { 'RTM_ProjectProMSDN_Retail' } '4D06F72E-FD50-4BC2-A24B-D448D7F17EF2' { 'RTM_ProjectProSub_SubPrepid' } '3047CDE0-03E2-4BAE-ABC9-40AD640B418D' { 'RTM_ProjectProSub_Subscription' } 'DF133FF7-BF14-4F95-AFE3-7B48E7E331EF' { 'Office Project Pro 2010' } '1CF57A59-C532-4E56-9A7D-FFA2FE94B474' { 'RTM_ProjectPro_MAK' } '5DC7BF61-5EC9-4996-9CCB-DF806A2D0EFE' { 'Office Project Standard 2010' } '11B39439-6B93-4642-9570-F2EB81BE2238' { 'RTM_ProjectStd_MAK' } '71AF7E84-93E6-4363-9B69-699E04E74071' { 'RTM_ProPlus_Retail' } '46C84AAD-65C7-482D-B82A-1EDC52E6989A' { 'RTM_ProPlus_Retail2' } '28FE27A7-2E11-4C05-8DD0-E1F1C08DC3AE' { 'RTM_ProPlus_SubPrepid' } '8C5FA740-5DCA-43F9-BE1B-D0281BCF9779' { 'RTM_ProPlus_Trial' } 'AE28E0AB-590F-4BE3-B7F6-438DDA6C0B1C' { 'RTM_ProPlusSub_Subscription' } 'A4F824FC-C80E-4111-9884-DCEECE7D81A1' { 'RTM_PTK_ByPass' } '08460AA2-A176-442C-BDCA-26928704D80B' { 'RTM_SearchServer_ByPass' } 'BC4C1C97-9013-4033-A0DD-9DC9E6D6C887' { 'RTM_SearchServer_BypassTrial' } '1328E89E-7EC8-4F7E-809E-7E945796E511' { 'RTM_SearchServerExpress_ByPass' } 'DAF85377-642C-4222-BCD8-DF5925C70AFB' { 'RTM_ServerLPK_ByPass' } 'B78DF69E-0966-40B1-AE85-30A5134DEDD0' { 'RTM_SPD_ByPass' } '59EC6B79-F6F5-4ADD-A5A0-B755BFB77422' { 'RTM_StarterPrem_SubPrepid' } '2745E581-565A-4670-AE90-6BF7C57FFE43' { 'RTM_Starter_ByPass' } 'EFF34BA1-2794-4908-9501-5190C8F2025E' { 'RTM_Sub4_Subscription' } '4A8825CE-A527-4A42-B59C-17B22CFE644F' { 'RTM_VisioLPK_ByPass' } '926E4E17-087B-47D1-8BD7-91A394BC6196' { 'RTM_WCServer_ByPass' } '2D45B535-68E6-44E0-8496-FC74F1491566' { 'RTM_WCServer_BypassTrial' } '99ff9b26-016a-49d3-982e-fc492f352e57' { 'Windows Vista Business - GVLK' } '277f97c7-ffde-47da-b7c4-6451bd00f2ec' { 'Windows Vista Business/SB' } '5d0b855e-cbe7-4f6d-93bd-5ab3befc5bfe' { 'Windows Vista Business N' } 'a5829b27-5111-45b5-8f96-58f59c7c8e06' { 'Windows Vista Business/Enterprise - MAK' } 'cf67834d-db4a-402c-ab1f-2c134f02b700' { 'Windows Vista Enterprise - GVLK' } 'c0be86d5-c12e-4658-880c-3079a2b70a42' { 'Longhorn Home Basic' } 'a0103e3a-99bd-41b1-84c5-77c98856d538' { 'Longhorn Home Basic - OEM' } '68d73c70-5fdd-42dd-bfd0-476d274fcca6' { 'Windows Vista Home Basic N' } '6a426eed-440e-4dcc-8661-2b0731ef764f' { 'Longhorn Home Premium' } '5a9b0253-41d9-4818-94ca-24153a333bb4' { 'Longhorn Home Premium - OEM' } 'be6f6d4a-4378-4c58-9756-349afa6818ac' { 'LH Pro Std/SBS/Ent - VL Binding Service' } 'af743c9a-e298-419e-ac41-a1ff22ff558b' { 'Windows Vista Starter Digital Boost - OEM' } '5ea7b0e1-8ab1-4a6a-9b64-f967db49fb2a' { 'Windows Vista Ultimate - OCUR' } 'b9a68c83-16e0-4547-a3d5-ea4ad899b63e' { 'Longhorn Enterprise Server - OEM' } '4bc32e2f-76a8-41e2-93f3-bda7ad012b3f' { 'Longhorn Pro Standard/SBS - OEM' } 'a2f9cc7b-aa41-4386-b745-8e9b1c831a44' { 'Longhorn Datacenter Server' } 'c9da5d13-70a5-4023-ab1e-ee9415c2c476' { 'Longhorn Enterprise Server (ADS)' } '080abd49-69a4-490d-98f9-00c9dbb748a6' { 'Longhorn Enterprise Server - IA64' } '71915630-6184-4aa2-8a02-420b14b96f25' { 'Longhorn Standard Server ' } '3a351259-cd74-4e6e-9e85-820687bbd337' { 'Longhorn Starter Edition' } 'ef8251b0-5f16-4fdf-b30a-9be2286d1509' { 'Longhorn Ultimate' } '922e9409-ee45-4660-ba4e-a1792c7a197a' { 'Longhorn Ultimate - OEM' } '4B17D082-D27D-467D-9E70-40B805714C0A' { 'RTM_Access_OEM_Perp' } '4D463C2C-0505-4626-8CDB-A4DA82E2D8ED' { 'RTM_Access_Retail' } 'B3DADE99-DE64-4CEC-BCC7-A584D510782A' { 'RTM_Access_SubPrepid' } 'ED826596-52C4-4A81-85BD-0F343CBC6D67' { 'RTM_Access_Trial' } 'CEE5D470-6E3B-4FCC-8C2B-D17428568A9F' { 'Office Excel 2010' } '71DC86FF-F056-40D0-8FFB-9592705C9B76' { 'RTM_Excel_MAK' } '8947D0B8-C33B-43E1-8C56-9B674C052832' { 'Office Groove 2010' } 'FDAD0DFA-417D-4B4F-93E4-64EA8867B7FD' { 'RTM_Groove_MAK' } 'CA6B6639-4AD6-40AE-A575-14DEE07F6430' { 'Office InfoPath 2010' } '85E22450-B741-430C-A172-A37962C938AF' { 'RTM_InfoPath_MAK' } '45593B1D-DFB1-4E91-BBFB-2D5D0CE2227A' { 'Office PowerPoint 2010' } '38252940-718C-4AA6-81A4-135398E53851' { 'RTM_PowerPoint_MAK' } 'B6E9FAE1-1A0E-4C61-99D0-4AF068915378' { 'RTM_ProjectStd_MAK2' } 'B50C4F75-599B-43E8-8DCD-1081A7967241' { 'Office Publisher 2010' } '3D014759-B128-4466-9018-E80F6320D9D0' { 'RTM_Publisher_MAK' } '15A9D881-3184-45E0-B407-466A68A691B1' { 'RTM_VisioProMSDN_Retail' } '92236105-BB67-494F-94C7-7F7A607929BD' { 'Office Visio Premium 2010' } '36756CB8-8E69-4D11-9522-68899507CD6A' { 'RTM_VisioPrem_MAK' } 'E558389C-83C3-4B29-ADFE-5E4D7F46C358' { 'Office Visio Pro 2010' } '5980CF2B-E460-48AF-921E-0C2A79025D23' { 'RTM_VisioPro_MAK' } '9ED833FF-4F92-4F36-B370-8683A4F13275' { 'Office Visio Standard 2010' } 'CAB3A4C4-F31A-4C12-AFA9-A0EECC86BD95' { 'RTM_VisioStd_MAK' } '6d2677aa-d088-4a22-8683-6eb555c77b98' { 'Win 7 Business - TBA' } '7d23d097-aad6-4a90-8a32-a1f6fd434caa' { 'Win 7 Business - TBB' } '6777acf0-bc42-49a9-8c35-92522168eb4c' { 'Win 7 Business - TBC' } 'ce4e1ef5-0475-4c0f-8a01-ae6dcaf5e8a7' { 'Win 7 Business - TBD' } '957ec1e8-97cd-42a8-a091-01a30cf779da' { 'Win 7 Business GVLK' } 'b44b9fa6-906b-4dbd-81be-11e23f5d797e' { 'Win 7 Business OEM:COA' } '9ba9fe3a-d3cf-493f-9ad7-9f63d9960c0b' { 'Win 7 Business OEM:NONSLP' } '979bfd90-ff9c-4847-8768-cf9cfcfeec38' { 'Win 7 Business OEM:SLP' } '1e0d9956-0016-4b6f-9251-0f54fa99e8e3' { 'Win 7 Business retail' } '0761585a-2ba4-4f2e-bae8-88c204f70d93' { 'Windows Vista Business' } 'cd04deab-6f73-4ac4-826c-09d2ae22e818' { 'Windows Vista Business - D-OEM (CHS & RU)' } '90284483-de09-44a2-a406-98957f8dd09d' { 'Windows Vista Business - GVLK' } 'a50faa13-7694-4abd-8b74-042ecc8acc2c' { 'Windows Vista Business - OEM nonSLP/SBC COA' } '4fe8fb4b-b264-4378-a15d-2f275fc213a0' { 'Windows Vista Business - OEM SLP COA' } 'f9aff482-8e81-47a6-8cf6-74be7649be6f' { 'Win 7 client all editions CSVLK' } '6e3f3f5d-2d93-481a-969e-7ce95bb45e1e' { 'Win 7 client all editions MAK' } 'b8cf7a60-5668-41b0-addd-6de32e69b0c6' { 'Windows Vista ALL Volume SKUs - CSVLK' } '3c92f348-df6e-4cf0-961c-9851328ba3e3' { 'Windows Vista Business+N/Enterprise - MAK' } '0ff4e536-a746-4018-b107-e81dd0b6d33a' { 'Win 7 Business N GVLK' } '235f6b53-3b19-429b-9fc4-f6fb4ccd06a6' { 'Win 7 Business N OEM:COA' } '3446d8ac-4e90-4f5e-9936-4ce92dca39f5' { 'Win 7 Business N OEM:NONSLP' } 'd7d68bcf-bb33-492c-88fe-5f58185dadc0' { 'Win 7 Business N OEM:SLP' } '23f0a19f-0a14-454d-82d1-6ecd116ab1f7' { 'Win 7 Business N retail' } '95158e38-c18c-4c6e-a450-7e5c19822ccb' { 'Windows Vista Business N' } 'af46f56f-f06b-49f0-a420-caa8a8d2bf8c' { 'Windows Vista Business N - GVLK' } '6e1ebb55-1b5f-453e-9d60-206fe2bdcdde' { 'Win 7 Enterprise - Eval' } 'dc249460-3f0b-4d57-9349-df4d59946ca0' { 'Win 7 Enterprise - Promo' } 'f4dba1f6-8a90-4a3a-9783-ec97a17cd5ba' { 'Win 7 Enterprise - Sub' } 'bcfbd654-2254-48d1-b050-f0d76596cd8d' { 'Win 7 Enterprise - TBB' } 'ea77973e-4930-4fa1-a899-02dfaeada1db' { 'Win 7 Enterprise GVLK' } 'a620dd57-1873-4701-91bf-b5a12f81fb13' { 'Win 7 Enterprise OEM:SLP' } '4840ccc0-a330-4a0b-b70e-4cee4a292134' { 'Win 7 Enterprise retail' } '9a7e05c0-a424-4fe5-b786-09fdf615cf07' { 'Windows Vista Enterprise' } '14478aca-ea15-4958-ac34-359281101c99' { 'Windows Vista Enterprise - GVLK' } 'b6e740a1-8030-4570-a441-5b20707fac70' { 'Windows Vista Enterprise - SLP Bypass' } '2aa4cd38-eb25-4794-91dc-398f765bc4fd' { 'Windows Vista Enterprise Eval' } 'e4ecef68-4372-4740-98e8-6c157cd301c2' { 'Win 7 Enterprise N GVLK' } '526ec0b1-0e38-46c4-866e-2a3e72093839' { 'Win 7 Enterprise N OEM:SLP' } 'cef7d759-9fc2-4d09-bf27-8ff4861b4134' { 'Win 7 Enterprise N retail' } '019e76ba-0233-4cd9-b26b-a2593aa76a20' { 'Win 7 Enterprise N Retail:TB:Promo WGP Test' } 'cd0cfd17-756e-42aa-b3d7-c10e2f8295ed' { 'Win 7 Enterprise N Retail:TB:Sub WGP Test' } '51a662bd-0452-4d7b-9962-7e59cda72f04' { 'Win 7 Enterprise N Retail:TB:Trial WGP Test' } '38e8eb90-859b-409a-a6ca-db43a18fae86' { 'Win 7 Enterprise N TB:Eval WGP Test' } 'd0997a77-2ecb-42a5-9b18-816ac1d91287' { 'Windows Vista Enterprise N' } '0707c7fc-143d-46a4-a830-3705e908202c' { 'Windows Vista Enterprise N - GVLK' } 'b8929dfa-5b29-4feb-a30b-6c2d0ac0b458' { 'Windows Vista Enterprise N - OEM SLP' } 'ee44a7bd-a8d8-45bd-9362-9fc683c0a1c6' { 'PK3 Windows Embedded Standard 8 00140 DLA/Bypass Retail:TB:Eval Toolkit' } '024746cf-7cc4-4a6a-842d-f2eb19bc7880' { 'Visual Basic 2010 Express (Registered)' } '534f372b-3700-434d-acfb-ac0778830527' { 'Visual C# 2010 Express (Registered)' } '11bcd841-36cb-4fe8-9acf-18748ca3fdc1' { 'Visual C++ 2010 Express (Registered)' } '964f3d2a-ecba-4ac6-a826-b9f7b6c79beb' { 'Visual Studio 2010 Integrated Shell' } '0d2fcc96-c7f3-492e-97b9-0ea89b304704' { 'Visual Studio 2010 Isolated Shell' } '5e95d645-53ce-4293-b520-deefca9204d3' { 'Visual Studio 2010 Kitty Hawk' } '2ab4e7eb-bc41-4835-858d-c8d752455ffc' { 'Visual Studio 2010 Lab Agent' } '135591df-c7db-44ec-a832-0d9e594a58a6' { 'Visual Studio 2010 Lab Management' } '7194a3f5-0f39-4418-8dcb-5cca9edd57b1' { 'Visual Studio 2010 MSDN Library' } 'c512fd4c-0a53-4c07-ad23-a8f1ca8ca6e9' { 'Visual Studio 2010 Professional' } '66775d17-0b3a-495a-b1a6-7f5d0604c02c' { 'Visual Studio 2010 Professional (Academic)' } '91f7dea2-6bcd-46c7-8df4-ff5c82e39337' { 'Visual Studio 2010 Team Essentials' } '429d45d3-9eec-4f64-b1d8-952ae7ccc20f' { 'Visual Studio 2010 Team Foundation Client (Team Explorer)' } 'db7a9f88-0f96-436a-8b9a-9717c8e31ac8' { 'Visual Studio 2010 Team Foundation Server' } '93a5b526-378a-4897-af93-955e1b3c6f4f' { 'Visual Studio 2010 Team Foundation Server Essentials' } '7c06ac1b-2a18-42df-9315-aa82ae00bd51' { 'Visual Studio 2010 Team Suite' } 'b52f26ba-cb7d-4537-a71a-b3f4268a0f97' { 'Visual Studio 2010 Test Essentials' } '678e386f-f1ce-4331-9cc4-9fb905b81154' { 'Visual Studio 2010 Test Load Agent' } '0bc3b5f3-c3e3-40ab-acc7-dc0ae688bc60' { 'Visual Studio 2010 Test Load Agent Controller' } '44835d15-f3eb-4628-8d85-81d7113300bb' { 'Visual Studio 2010 Test Load Agent Controller (Retail 2.5K pack)' } '063edc71-2d0e-4bfa-ac17-2a1f45919ba8' { 'Visual Studio 2010 Test Load Agent Controller (Retail 500 pack)' } 'cd42483a-0f5e-409f-92d7-ff8bfce85efd' { 'Visual Studio 2010 Test Load Agent Controller (Retail 5k pack)' } '869e2742-4d3e-4f0b-a2a1-8c2303edc6e2' { 'Visual Web Developer 2010 Express (Registered)' } '21afb54e-362c-411f-a3a4-b88cca1d26c0' { 'Win 7 Home Basic OEM:COA' } '49ed9851-7bdf-4da5-8791-4829c35607b6' { 'Win 7 Home Basic OEM:NONSLP' } '8bee0b4d-198b-4152-aa8e-ee7ae1f53979' { 'Win 7 Home Basic OEM:SLP' } '2ea0af61-ce6f-46c1-badf-452fe80b1385' { 'Win 7 Home Basic retail' } 'b3156fba-90de-4c16-aa5b-3b9674bc1df4' { 'Win 7 Home Basic Retail:TB:Promo WGP Test' } '77d4c66d-9025-4c1c-8767-12a7be2a339f' { 'Win 7 Home Basic Retail:TB:Sub WGP Test' } 'bbc9acbb-b61d-4805-a551-c669644d0ae4' { 'Win 7 Home Basic Retail:TB:Trial WGP Test' } '42b91b2e-b029-4786-a437-2887065da1aa' { 'Win 7 Home Basic TB:Eval WGP Test' } '1fb350e3-9ee4-4ee0-aad0-2f84bd844394' { 'Windows Vista Home Basic' } '14108a69-7278-4841-b915-1227ddb40774' { 'Windows Vista Home Basic - OEM nonSLP/SBC COA' } '40ec3399-60d5-427d-aa44-4c3f1bd3733e' { 'Windows Vista Home Basic - OEM SLP COA' } '881ea035-fccc-49c2-b014-8de55bb3cb5e' { 'Windwos Vista Home Basic - D-OEM (CHS & RU)' } 'aa45b843-4d88-41f5-8dca-11a601936395' { 'Win 7 Home Basic N OEM:COA' } '1710f7e5-0623-4199-806f-29413aea5bbe' { 'Win 7 Home Basic N OEM:NONSLP' } 'c34704f3-50a8-4c73-8180-b37e35cf5a1f' { 'Win 7 Home Basic N OEM:SLP' } '7f915424-4c5f-4f98-9c1a-28f5f36a91bc' { 'Win 7 Home Basic N retail' } 'f95a1596-2bcc-41a8-b475-688ffdc52ce2' { 'Windows Vista Home Basic N' } 'EFF11B33-79B0-4D87-B05F-AE5E4EC5F209' { 'RTM_HomeBusinessSub_Subscription2' } '56d76e98-dba5-40b1-b2fb-2d695828004b' { 'PUP-DL Vista Home Premium upg from Vista Home Basic' } '3d139eac-07ce-4ae2-a904-3fe333399058' { 'Win 7 Home Premium OEM:COA' } 'c1c4986f-0343-4fc3-8dca-cc9eb19a419a' { 'Win 7 Home Premium OEM:NONSLP' } '0c3b0091-731d-4710-b2bf-093633ce4102' { 'Win 7 Home Premium OEM:SLP' } '44fa382c-dee1-44c1-bb2c-ca630787d509' { 'Win 7 Home Premium retail' } '4b316bfa-9ecf-4b4e-aa82-f33c886d0cfc' { 'Win 7 Home Premium TB:Eval WGP Test' } '4f86c7ac-6d39-4095-8fb3-56f30cf6747a' { 'Win 7 Home Premium TB:Promo WGP Test' } 'b297e2f8-c8d9-4f0d-a840-31179dd9f21f' { 'Win 7 Home Premium TB:Sub WGP Test' } 'af18ca6f-42d8-44e7-b890-939c1d2644c8' { 'Win 7 Home Premium TB:Trial WGP Test' } '465f39d6-319f-4135-a96f-59e74378557b' { 'Windows Home Premium' } '3ee09c34-7752-4e95-a6f3-52d343bf1064' { 'Windows Home Premium - D-OEM (CHS & RU)' } '47581abb-3ba8-421a-aa2d-d1a60a78e509' { 'Windows Vista Home Premium - OEM nonSLP/SBC COA' } '6e8fcf66-68c5-418c-89fa-f06143b16e0b' { 'Windows Vista Home Premium - OEM SLP COA' } '81aa0262-8f30-43e4-9241-22f2822217f4' { 'Win 7 Home Premium N OEM:COA' } '74a9709e-f640-4953-bde9-82bc3ed485e7' { 'Win 7 Home Premium N OEM:NONSLP' } '5914ce59-acb5-44e6-80d3-1754adb7e84d' { 'Win 7 Home Premium N OEM:SLP' } '9cdfc6db-48e1-4b7f-a5f8-fffacd069068' { 'Win 7 Home Premium N retail' } '0699dcce-140d-4188-9670-ba003fe8b05e' { 'Win 7 Home Premium N Retail:TB:Promo WGP Test' } 'cd631d88-c4ea-4e67-9645-5fc32eb49ad6' { 'Win 7 Home Premium N Retail:TB:Sub WGP Test' } '7f9e51f2-473c-4006-80fe-0e1f9d308edb' { 'Win 7 Home Premium N Retail:TB:Trial WGP Test' } '99605aab-9ac0-48ce-87c9-6063b2e61736' { 'Win 7 Home Premium N TB:Eval WGP Test' } 'd0554583-4205-48d5-a914-6306b8e95feb' { 'Windows Vista Home Premium N' } 'edff41f7-3fa5-4976-8389-4948a5eae7cd' { 'Windows Vista Home Premium N - OEM COA' } '4a0e27cd-8332-43cd-94a6-7ac946a20187' { 'Windows Vista Home Premium N - OEM NONSLP' } '9e59c27a-45ec-462a-a9c8-1de4cb9db719' { 'Windows Vista Home Premium N - OEM SLP' } 'b4091953-de7c-466c-a5f9-7097de9a728a' { 'Visual Studio 2010 (MSDN Subscription)' } 'd769269e-b1f1-437b-9401-2150feeb7780' { 'Longhorn Compute Cluster/Web Edition - MAK' } 'f1658734-6bf4-48fe-862b-074740d0e51b' { 'Longhorn CSVLK for DataCenter and Itanium Edition' } '8f5c1ee4-4a9b-4fe1-96bd-e9290c5e14d4' { 'Longhorn CSVLK for Standard Server and Enterprise Edition' } '625e13e0-7339-461b-a39b-1f2f0317449b' { 'Longhorn CSVLK for Web Server & Compute Cluster' } '1c15d2b7-0392-4005-a70a-d4d16a3863d4' { 'Longhorn Datacenter/Itanium Edition - MAK' } 'da638349-358a-4e04-bdcb-c85c8ea036a9' { 'Longhorn Standard/Enterprise Server - MAK' } '18579d00-6c51-4907-a16e-3ba4aa9ba6f7' { 'Windows Vista - OCUR' } '9d3c02dd-bfc9-4c35-b503-58ffaa331950' { 'Windows Vista - CodecPack add-on' } 'e5513235-e240-4238-8127-505711fe321a' { 'Windows Vista Home Premium - OCUR' } '6b9fd964-9c41-45ff-af00-9e7b315e9648' { 'Windows Vista Starter Digital Boost - OEM' } 'c714e640-80ea-481d-8f9f-c80912bb0a25' { 'Visual Basic 2010 Express (30-day Trial)' } 'd9687110-da83-4368-b71b-c9e0ffb39bb6' { 'Visual C# 2010 Express (30-day Trial)' } '18c1ceb4-2128-46ca-9095-575ad9cfda4c' { 'Visual C++ 2010 Express (30-day Trial)' } '7ed4c161-1ac9-4fb9-b7ee-517e16e65cc5' { 'Visual Studio 2010 BETA' } 'bf560dcd-f174-47ad-bb8d-1af34ab4049a' { 'Visual Studio 2010 Kitty Hawk (30-day Trial)' } '98185219-6885-4558-bf16-2e0a99660d61' { 'Visual Studio 2010 Kitty Hawk (60-day Extension)' } '0965e4ee-c848-4f3c-992f-d1a8a6c02b0f' { 'Visual Studio 2010 Kitty Hawk (90-day Trial)' } 'de34d3d6-e365-40d4-b76c-d42eadb0af7c' { 'Visual Studio 2010 Lab Management (90-day Trial)' } 'cc5a0ed0-9ee7-4f2c-8a5b-2b817f84ec70' { 'Visual Studio 2010 Professional (30-day Trial)' } 'e887e799-ef3f-4a9b-8e1a-fe07d6461fef' { 'Visual Studio 2010 Professional (60-day Extension)' } '07870c45-2f34-4101-9c30-2aad980387a1' { 'Visual Studio 2010 Professional (90-day Trial)' } '1f8ecf3a-1238-4ec5-a62b-c4689ebd78ff' { 'Visual Studio 2010 Team Essentials (30-day Trial)' } '261d81e9-6c21-423f-bcc2-590897fbf3d4' { 'Visual Studio 2010 Team Essentials (60-day Extension)' } 'fa3926d0-c824-45a8-a462-72d6c275ae5a' { 'Visual Studio 2010 Team Essentials (90-day Trial)' } 'c1655ff3-a27c-41c8-b257-50045de54de8' { 'Visual Studio 2010 Team Foundation Server (30-day Extension)' } '292f44ac-3db8-4dca-ba4e-b1d8f576909e' { 'Visual Studio 2010 Team Foundation Server (90-day Trial)' } '89caa0c7-8588-431b-8e21-6d649427554a' { 'Visual Studio 2010 Team Foundation Server Essentials (90-day Trial)' } '854d2e9a-88d1-437c-9966-9ed77d40a779' { 'Visual Studio 2010 Team Suite (30-day Trial)' } '97e3b845-22b6-4af5-a60b-59e299018d99' { 'Visual Studio 2010 Team Suite (60-day Extension)' } 'ee6698c1-7288-4275-bd28-3524f1177f44' { 'Visual Studio 2010 Team Suite (90-day Trial)' } '6c4cc7a2-c3eb-437c-8d8c-2d3bf2ba3055' { 'Visual Studio 2010 Test Essentials (90-day Trial)' } 'bb8f7272-a035-4a66-9095-41d0ce27858e' { 'Visual Web Developer 2010 Express (30-day Trial)' } 'fd8f859a-bb37-4928-bec1-2e7a2e8d9e4b' { 'Win 7 OCUR Ultimate retail' } 'eb94e158-b4a5-4a2d-b3c4-02ae4772b9db' { 'Visual Studio 2010 Express (OEM)' } 'd0dd7737-a427-4fee-8f6c-34387607dd84' { 'Visual Studio 2010 Kitty Hawk (OEM)' } '9631bf3a-9d4d-46d4-bf38-25815c9b0950' { 'Visual Studio 2010 Professional (OEM)' } 'd221aa1b-9c71-4148-bf6c-a490446efa99' { 'Visual Studio 2010 Team Essentials (OEM)' } '8D1E5912-B904-40A6-ADDD-8C7482879E87' { 'RTM_ProPlusSub_Subscription2' } 'e82290ba-62b0-41be-89af-cc3f8957125e' { 'Longhorn Compute Cluster' } '8372b47d-5221-41d8-88d0-3f924e50623e' { 'Longhorn Compute Cluster - GVLK' } '3a51fb61-1f52-48bd-ab74-782599836f89' { 'Longhorn Compute Cluster - OEM COA' } '8ad3e8d5-ef2b-427f-a761-a5bfaee2e54d' { 'Longhorn Compute Cluster - OEM NONSLP' } '9ce5fa82-900d-4242-95d3-62b6b7325fd4' { 'Longhorn Compute Cluster - OEM SLP' } 'd01edb83-a9cd-4219-8c42-460d5cc085ef' { 'Longhorn Datacenter Server' } '932ef1f5-4327-4548-b147-51b0f5502995' { 'Longhorn Datacenter Server - GVLK' } 'fe1c2736-507b-4b90-a739-15d2b9b03990' { 'Longhorn Datacenter Server - OEM nonSLP/SBC COA' } '364e4f73-fdca-4947-a509-30b8438270c1' { 'Longhorn Datacenter Server - OEM SLP Bypass' } 'a7ebbb8f-8fee-4de9-a4cf-53bc962c01d0' { 'Longhorn Datacenter Server - OEM SLP COA' } 'cc64c548-1867-4777-a1cc-0022691bc2a0' { 'Win 7 Server Datacenter GVLK' } '796f16f7-005f-4b6d-a00b-5793bd540439' { 'Win 7 Server Datacenter OEM:COA' } 'e15b466d-0aa6-476e-a39f-ee80c509ecec' { 'Win 7 Server Datacenter OEM:NONSLP' } '7dcb3983-b669-4a79-9cd4-fbd947470d4e' { 'Win 7 Server Datacenter OEM:SLP' } 'bd1c773d-85fe-4ac2-8ee8-ef75d062e7e9' { 'Win 7 Server Datacenter retail' } 'a22f7e88-6756-4d82-b9e0-ae8af25cd8c6' { 'Win 7 Server Datacenter Retail:TB:Eval WGP Test' } '53a2827d-9705-4667-818b-ee1fb116c1b8' { 'Win 7 Server Datacenter Retail:TB:Promo WGP Test' } '5b909dd9-bb92-4d79-bb28-c74589297a0a' { 'Win 7 Server Datacenter Retail:TB:Sub WGP Test' } '92a577f4-a7a8-4e9f-8873-aa4f1d481373' { 'Win 7 Server Datacenter Retail:TB:Trial WGP Test' } 'fed62577-3bef-4309-90e8-671abdc076d8' { 'Win 7 Server Datacenter & Itanium CSVLK' } 'cd007b25-446b-4524-9c4a-a718d59c5685' { 'Win 7 Server Datacenter & Itanium MAK' } 'f6aa2373-262b-4716-ae42-8fd847bd3ef3' { 'Longhorn Datacenter Server without Hyper-V' } '0839e017-cfef-4ac6-a97e-ed2ea7962787' { 'Win 7 Server Datacenter w\o Hyper V GVLK' } '401440ab-6db1-4a9f-b2a3-c5692584634a' { 'Win 7 Server Datacenter w\o Hyper V OEM:COA' } 'f97932bc-86b1-4ebf-87c6-99320a968b30' { 'Win 7 Server Datacenter w\o Hyper V OEM:NONSLP' } '392e0471-9ab8-4a82-875a-a14fe0d74b23' { 'Win 7 Server Datacenter w\o Hyper V OEM:SLP' } 'f1721f06-97b5-4cc3-a0f3-aad8cb8f30a5' { 'Win 7 Server Datacenter w\o Hyper V retail' } '5a99526c-1c09-4481-80fb-b60e8b3d99f8' { 'Longhorn Enterprise Server - GVLK' } '9fa561f6-0230-4cd3-9f60-176ccc8961be' { 'Longhorn Enterprise Server - OEM nonSLP/SBC COA' } '4c5d3c79-122f-428e-a55c-45f6d1654247' { 'Longhorn Enterprise Server (ADS) - OEM SLP Bypass' } 'e2668a94-212e-4992-aac8-1298cd4aedaf' { 'Longhorn Enterprise Server (ADS) - OEM SLP COA' } '9dce1f29-bb10-4be0-8027-35b953dd46d5' { 'Win 7 Server Enterprise GVLK' } '590fe64a-9589-4810-b1d4-08e620cd8754' { 'Win 7 Server Enterprise OEM:COA' } '8e62e389-e90c-4b4d-9d1a-6efd7670266c' { 'Win 7 Server Enterprise OEM:NONSLP' } '1aecfe30-0e16-42bb-8833-fb73e94f4658' { 'Win 7 Server Enterprise OEM:SLP' } 'e59bb802-cc40-4d0c-9a8c-73156fea028f' { 'Win 7 Server Enterprise retail' } 'aa2c9c57-5b58-4c92-a056-dc6bfb76e2b3' { 'Win 7 Server Enterprise Retail:TB:Eval WGP Test' } '04f5af3c-49b1-410a-977d-d77ec90101e3' { 'Win 7 Server Enterprise Retail:TB:Promo WGP Test' } '863f92ee-262a-4b5b-a0e1-534f537b78f3' { 'Win 7 Server Enterprise Retail:TB:Sub WGP Test' } '69349883-84f7-44b0-bbda-0b65c9ea2d97' { 'Win 7 Server Enterprise Retail:TB:Trial WGP Test' } 'f00d81ce-df2c-47cb-a359-36d652296e56' { 'Windows Longhorn Server Enterprise' } '515ad9e6-67a8-4224-8c68-6d073038d59f' { 'Win 7 Server Standard & Enterprise CSVLK' } 'b93651cc-4b94-41de-8ae2-62f7cfc20b1a' { 'Longhorn Enterprise Server - IA64' } '0c5c8ade-0f10-40fe-9a29-fb714e9b921e' { 'Longhorn Enterprise Server - IA64 - OEM SLP Bypass' } '61e091dd-1975-4708-8a9b-698bae44ced6' { 'Longhorn Enterprise Server - IA64 - OEM SLP COA' } 'bebf03b1-a184-4c5e-9103-88af08055e68' { 'Longhorn Enterprise Server - IA64 GVLK' } '7360c111-bef4-4462-becc-1b6f623f957d' { 'Longhorn Enterprise Server IA64 - OEM nonSLP/SBC COA' } 'bf9eda2f-74cc-4ba3-8967-cde30f18c230' { 'Win 7 Server Enterprise IA64 GVLK' } '7cdeac17-3dd2-47c6-bcf9-b4b204dde672' { 'Win 7 Server Enterprise IA64 OEM:COA' } '052d0def-2551-4e0e-9c91-627c5ac56810' { 'Win 7 Server Enterprise IA64 OEM:NONSLP' } '8301f47c-3722-4afd-b9ca-faef693e892c' { 'Win 7 Server Enterprise IA64 OEM:SLP' } 'c2d22702-a158-4797-af47-a90ba4b57823' { 'Win 7 Server Enterprise IA64 retail' } '4954fa71-195f-441e-ac6e-59fc14417898' { 'Win 7 Server EnterpriseIA64 Retail:TB:Eval WGP Test' } '5d7e9754-703d-4ee9-a28c-6b748746a49e' { 'Win 7 Server EnterpriseIA64 Retail:TB:Promo WGP Test' } '7551a7ce-5545-4cc2-88c9-b6df835d1e37' { 'Win 7 Server EnterpriseIA64 Retail:TB:Sub WGP Test' } '257b8450-1ef8-4f32-aec8-ca84b0640db2' { 'Win 7 Server EnterpriseIA64 Retail:TB:Trial WGP Test\' } 'dc06c019-b222-4706-a820-645e77d26a91' { 'Win 7 Server Enterprise w\o Hyper V GVLK' } '24e864f7-0252-4a66-ae91-75768cf14b3b' { 'Win 7 Server Enterprise w\o Hyper V OEM:COA' } '89b9bb9f-b4f5-49aa-8bab-29650ad0efee' { 'Win 7 Server Enterprise w\o Hyper V OEM:NONSLOP' } '5b216061-dba7-4e96-b8a7-76f1bfe032dc' { 'Win 7 Server Enterprise w\o Hyper V OEM:SLP' } 'f5bdc9c8-8067-4cba-b28d-06376a78c34e' { 'Win 7 Server Enterprise w\o Hyper V retail' } 'c745d3ba-1471-4b99-8951-17528ee25aef' { 'Windows Longhorn Server Enterprise without Hyper-V' } 'a96f6f41-34e8-47ab-9ca1-3749d3776f21' { 'Longhorn Home Server' } '495e1b35-670b-4449-902b-a16fc2a9c0a8' { 'Longhorn Home Server - OEM SLP Bypass' } 'aee7b4de-98dc-4e93-999f-041035637c9c' { 'Longhorn Home Server - OEM SLP COA' } '26186aee-5833-4d48-b59d-a1a29c8cbc2d' { 'Win 7 Home Server Premium' } 'b4b3dccb-b321-4393-8123-3659ec75a192' { 'Win 7 Home Server Premium' } '5cb0425f-a4d4-4d4a-8b5f-9ceb4211b322' { 'Win 7 Home Server Premium - OEM NONSLP' } 'e40d338b-76d2-4755-a8a0-b530d9d970bc' { 'Win 7 Home Server Premium - OEM SLP' } '79295998-90ab-4eb2-a093-073ac441006f' { 'Win 7 Home Server Premium - OEM SLP COA' } '13d1b96c-1375-43a4-99e7-7e7fefe21f53' { 'Win 7 Home Server Standard' } '6a8ed375-e507-49d7-9b38-1623b8e6ff0c' { 'Win 7 Home Server Standard' } '725a3567-0181-498f-be72-31741bf08070' { 'Win 7 Home Server Standard - OEM NONSLP' } '3b18e76c-2384-4029-a596-c939c91cb7be' { 'Win 7 Home Server Standard - OEM SLP' } '0d621b72-d593-4e42-bbab-1911c7326549' { 'Win 7 Home Server Standard - OEM SLP COA' } 'b2ce91d8-d515-41a6-b04c-4a13768f7cc5' { 'Hyper-V ProdAct All Programs' } '734ec80d-44e4-40c6-b6cd-a0acb3ca8421' { 'Longhorn Medium Business Server Management - OEM SLP Bypass' } '658d9331-fcf8-4eee-8256-7ba65c58cbbe' { 'Longhorn Medium Business Server Management - OEM SLP COA' } '41d2d873-0ebb-4346-bf27-3389616e86d3' { 'Win 7 Server Medium Business Management retail' } 'b86971e5-2264-43c4-ad85-acec5fc78d1c' { 'Longhorn Medium Business Server Messaging - OEM SLP Bypass' } '1dc5fe8c-65a6-42e0-9778-7510abef2f2b' { 'Longhorn Medium Business Server Messaging - OEM SLP COA' } '31f395ce-fc28-4a33-b676-81b109902ee8' { 'Win 7 Server Medium Business Messaging retail' } '2cade295-51c0-4718-b89f-2e8944003d26' { 'Longhorn Medium Business Server Security - OEM SLP Bypass' } '0b7d7918-8b22-49ef-9cd0-4f04bfde5c99' { 'Longhorn Medium Business Server Security - OEM SLP COA' } '31ac603c-0483-4db9-8006-1831517ae142' { 'Win 7 Server Medium Business Security retail' } 'b0593bb3-f0cf-4967-a4a5-53af84c6d29b' { 'Longhorn SBS Premium - OEM SLP Bypass' } 'a8c7a60d-a1a5-4390-957c-ebec9e8b1a24' { 'Longhorn SBS Premium - OEM SLP COA' } 'ae486542-39df-4ec8-8483-ac502f5eed7f' { 'Win 7 Server SBS Premium retail' } '6e95e93f-2b94-4c3d-80e5-360f6bd162fb' { 'Longhorn SBS Prime' } '0bdbb717-9a8e-449b-b57d-763decd05c2a' { 'Longhorn SBS Prime - OEM SLP Bypass' } 'd6670835-2583-4c5f-a147-4ebdef90c962' { 'Longhorn SBS Prime - OEM SLP COA' } '6c5ed930-475f-4b67-a7db-19205ee419ca' { 'Longhorn SBS Standard - OEM SLP Bypass' } '4c8a4ef8-77a1-4820-93ed-48e55909e37b' { 'Longhorn SBS Standard - OEM SLP COA' } '2bb92f71-6ab3-473b-a024-cd29226ca236' { 'Win 7 Server SBS Standard retail' } '61d6a4f0-3285-4ea8-a9de-f938b973a0ec' { 'Longhorn Standard Server ' } '7ea4f647-9e67-453b-a7ba-56f7102afde2' { 'Longhorn Standard Server - GVLK' } 'c2c3c743-bcfe-40c8-82e4-ed335c53a86c' { 'Longhorn Standard Server - OEM SLP Bypass' } '3c805a06-632e-451e-a8ea-80a0b084fbb5' { 'Longhorn Standard Server - OEM SLP COA' } '79d3bf31-319f-49f9-aa02-7e40332b0644' { 'Longhorn Standard Server - OEM nonSLP/SBC COA' } '92374131-ed4c-4d1b-846a-32f43c3eb90d' { 'Win 7 Server Standard GVLK' } '7b842e94-24f3-47bd-bce1-26ce97fdc2f5' { 'Win 7 Server Standard OEM:COA' } 'a03cd2a1-d4f0-4372-aa0e-f67a951780d0' { 'Win 7 Server Standard OEM:NONSLP' } '3fecd780-e58a-4d0a-a43e-76d48def79e7' { 'Win 7 Server Standard OEM:SLP' } '6511a970-90d0-40ed-92e9-6ce344996f0c' { 'Win 7 Server Standard retail' } '427a2c12-f067-4cdd-ae14-702c3f273923' { 'Win 7 Server Standard Retail:TB:Eval WGP Test' } 'b59b3573-2b81-413f-8f6d-df8ebcf8695d' { 'Win 7 Server Standard Retail:TB:Promo WGP Test' } 'abe80861-21cc-4629-9a15-4030ff149a86' { 'Win 7 Server Standard Retail:TB:Sub WGP Test' } '647393cf-89a6-4f0b-bb99-172540e4fb37' { 'Win 7 Server Standard Retail:TB:Trial WGP Test' } 'b3e628a2-fb9c-417d-93d3-289eed1e81c2' { 'Win 7 Server Standard & Enterprise MAK' } '18135975-c710-41d2-b6fa-3775340f1ae1' { 'Longhorn Standard Server without Hyper-V' } 'f963bf4b-9693-46e6-9d9d-09c73eaa2b60' { 'Win 7 Server Standard w\o Hyper V GVLK' } 'caa217f0-0375-45d4-8be1-5967246b097e' { 'Win 7 Server Standard w\o Hyper V OEM:COA' } 'c78f3a14-d8e9-4dca-8691-ccbdf5f7eaf0' { 'Win 7 Server Standard w\o Hyper V OEM:NONSLP' } 'b2ca342c-f521-4d36-b899-cf5db346a081' { 'Win 7 Server Standard w\o Hyper V OEM:SLP' } '32120bb0-2f3c-4aca-b5ca-f06194f2c34c' { 'Win 7 Server Standard w\o Hyper V retail' } 'f97270ab-1ff1-41d1-bc63-829558ff4230' { 'Longhorn Storage Server - Enterprise OEM SLP Bypass' } '13136377-e3a6-4c94-9cb6-121b91ae9ecb' { 'Longhorn Storage Server - Enterprise OEM SLP COA' } 'b510fd83-c941-47e3-b3c1-b6b8785d77ee' { 'Win 7 Server Storage Enterprise retail' } '1fa6b5e0-eceb-4693-ac2d-a33b3c9f05e9' { 'Windows Storage Server Enterprise OEM:COA' } 'd5224a3d-38d5-456a-8384-84e0b39be105' { 'Windows Storage Server Enterprise OEM:NONSLP' } '51af4918-f017-487c-9cea-70041577d4b8' { 'Windows Storage Server Enterprise OEM:SLP' } 'f97038e5-4593-40bd-b83a-d5d9efaf7b07' { 'Longhorn Storage Server - Express OEM SLP Bypass' } 'e599e19b-4973-4b16-a71b-bc6beb3f65f6' { 'Longhorn Storage Server - Express OEM SLP COA' } '9f9a3e71-f510-4bc0-b87d-25f43cd43b2e' { 'Win 7 Server Storage Express retail' } '3373a73b-8376-41a6-a099-d19fca0ccd70' { 'Windows Storage Server Express OEM:COA' } '1a113027-5c6f-46a5-8567-451f2b1155ad' { 'Windows Storage Server Express OEM:NONSLP' } 'fcd2462a-64f8-4516-b417-2f4845a4809b' { 'Windows Storage Server Express OEM:SLP' } 'cb3029c5-a33a-4311-b46c-673a628226b1' { 'Longhorn Storage Server - Standard OEM SLP Bypass' } '9c216ebe-48ee-42ad-a0c1-bbb95ac7166f' { 'Longhorn Storage Server - Standard OEM SLP COA' } '320c5bda-6cab-4736-a827-789d8390b041' { 'Win 7 Server Storage Standard retail' } '0a6fcbd1-bcfe-4084-b96e-11abc23cbb1d' { 'Windows Storage Server Standard OEM:COA' } '5c28538a-730c-43c6-a278-ad450c927903' { 'Windows Storage Server Standard OEM:NONSLP' } 'b14681a9-dba0-4512-aaa4-0500332f2823' { 'Windows Storage Server Standard OEM:SLP' } 'd3e56435-0e1b-46c6-b62f-7b602e1b24ed' { 'Longhorn Storage Server - Workgroup OEM SLP Bypass' } '74be6fe2-3d15-4a1d-8413-e6ee21f6d655' { 'Longhorn Storage Server - Workgroup OEM SLP COA' } 'ef7eccdc-7353-4b44-a153-57c767af0bcf' { 'Win 7 Server Storage Workgroup retail' } '8affafda-4ba1-446c-b4fc-d55495dabadd' { 'Windows Storage Server Workgroup OEM:COA' } 'd61ce74c-00a6-4bdf-9a16-ebe868fe12b7' { 'Windows Storage Server Workgroup OEM:NONSLP' } 'f1949a7a-1c7b-4486-abbb-98fe7feb166e' { 'Windows Storage Server Workgroup OEM:SLP' } '2e3108b4-de27-4d71-8a59-ed6fa329f519' { 'Longhorn Web Edition' } '3ddb92aa-332e-46f9-abb7-8bdf62f8d967' { 'Longhorn Web Edition - GVLK' } 'a407b19d-68d6-47f3-8e8a-1c0d1df29ad0' { 'Longhorn Web Edition - OEM COA' } 'd56e10e1-8373-48ef-98c2-25e2b9fb17a9' { 'Longhorn Web Edition - OEM NONSLP' } 'bf5920fb-e20b-4f08-b9d9-90f3d26f6641' { 'Longhorn Web Edition - OEM SLP' } '95e4a692-f166-45c5-a7f8-ad76c2c1e6ad' { 'Win 7 Server Web (no CC) CSVLK' } '389c4be7-a87b-43c0-8338-e4eba79ccd96' { 'Win 7 Server Web (no CC) MAK' } '4f4cfa6c-76d8-49f5-9c41-0a57f8af1bbc' { 'Win 7 Server Web GVLK' } '69596c32-c0c8-41d7-a33e-2084d5889194' { 'Win 7 Server Web OEM:COA' } 'c52487db-d92b-4258-865d-ce3c08be8149' { 'Win 7 Server Web OEM:NONSLP' } '3f9430a7-ee3a-4b10-be6e-2a1a227952e1' { 'Win 7 Server Web OEM:SLP' } '220cd791-4e60-4412-8fcf-d605f54d3ae0' { 'Win 7 Server Web retail' } 'f3b6a4d0-7f95-4c3f-89dd-2b4a10c5e6f1' { 'Win 7 Server Web Retail:TB:Eval WGP Test' } 'a3099af4-2d1e-4ddc-980c-b1dabd269456' { 'Win 7 Server Web Retail:TB:Promo WGP Test' } '24e0f8b5-037c-4a8d-8e1c-9de1ae2bdff1' { 'Win 7 Server Web Retail:TB:Sub WGP Test' } '528492be-3314-430d-8162-5ab9739bb5c2' { 'Win 7 Server Web Retail:TB:Trial WGP Test' } '17df1098-8f00-46a3-b3e7-f0c77553ba40' { 'Win 7 Server Web & HPC Volume:BA_A' } '74ee1811-ebbb-4c84-93df-f274d5ecdf00' { 'Win 7 Server Standard & Enterprise Volume:BA_B' } '3d3a0fe2-fa84-4623-b214-ad01cb83e930' { 'Win 7 Server Datacenter & EnterpriseIA64 Volume:BA_C' } '7d481b79-8e06-4722-b9d6-b13c8bc800b8' { 'Longhorn Server for Small Business' } 'de0a1b88-376e-4ee0-9975-a46b2ec18aa4' { 'Longhorn Server for Small Business - OEM SLP Bypass' } '04bcfa8f-fb66-4d42-98a1-ab3d27108dd3' { 'Longhorn Server for Small Business - OEM SLP COA' } '97a60026-ca3d-4fd2-a454-9e1a4831164a' { 'Longhorn Server for Small Business without Hyper-V' } 'e38db88f-2a62-4b38-a6f1-c69c8717fc72' { 'Win 7 Starter OEM:COA' } 'c1a40325-318f-475a-998d-f84807c5ed59' { 'Win 7 Starter OEM:NONSLP' } '27d8421c-7335-46d6-93ad-646d33541a6c' { 'Win 7 Starter OEM:SLP' } '86058316-c74b-4e6a-bb20-5bdfd34314b5' { 'Win 7 Starter retail' } 'f18e15a5-d5b4-45ae-89a7-263c443b34c3' { 'Win 7 Starter Retail:TB:Promo WGP Test' } 'ce194785-7f23-4be5-bd19-169fc3bf6cc3' { 'Win 7 Starter Retail:TB:Sub WGP Test' } 'c729fded-1fed-4bed-b4c6-5ea5e9832836' { 'Win 7 Starter Retail:TB:Trial WGP Test' } 'e20068ea-d533-4836-a89c-77fdc9995c4a' { 'Win 7 Starter TB:Eval WGP Test' } '2ba44e77-c7b8-48f3-8e51-284b35493fae' { 'Windows Vista Starter' } '379474f4-1cf9-44a8-999c-f68ef14bfe49' { 'Windows Vista Starter - OEM nonSLP/SBC COA' } '889d40d1-491a-4237-80f3-ef4b1f9c6845' { 'Windows Vista Starter - OEM SLP Bypass' } '6e5a3ef9-5d24-4b43-a292-eb5b72a18094' { 'Windows Vista Starter - OEM SLP COA' } 'b4a8e32a-9757-45d1-8ece-28a6b21b4c47' { 'Win 7 Starter N retail' } '6cd32042-49da-4634-bd02-448fbe76bfbe' { 'PK3 Windows Embedded Standard 8 00140 DLA/Bypass Retail Toolkit' } '2b03f08f-1014-469C-8f73-07ff8b68399c' { 'PUP-DL Vista Ultimate upg from Vista Business' } 'f51fef5d-3efa-4351-a63f-af7a9ff383c0' { 'PUP-DL Vista Ultimate upg from Vista Home Basic' } 'b58078be-9c9a-48c9-b5ef-d920fd76218d' { 'PUP-DL Vista Ultimate upg from Vista Home Premium' } 'f792792d-4d26-43f3-a568-8e0d98cd622c' { 'Win 7 Ultimate OEM:COA' } 'ae3800b9-bb05-4a4c-9d5e-1e25cd26975f' { 'Win 7 Ultimate OEM:NONSLP' } '2077f0b2-b2e2-43c5-a3b2-2079d527f56a' { 'Win 7 Ultimate OEM:SLP' } 'bfb30674-7c9a-4624-9309-9914cfd5b05c' { 'Win 7 Ultimate retail' } 'e07989ff-9cc4-450c-8a0c-ffe9f7bfa57d' { 'Win 7 Ultimate Retail:TB:Promo WGP Test' } '7f99509a-a8af-4839-a031-f36adc209a57' { 'Win 7 Ultimate Retail:TB:Sub WGP Test' } '2b117cfd-aed1-475e-b68f-d0c06ca9c4e8' { 'Win 7 Ultimate Retail:TB:Trial WGP Test' } 'e5903ef0-5584-484f-9e33-c1dc48ed160c' { 'Win 7 Ultimate TB:Eval WGP Test' } '93e4d97f-9aec-45f9-8eb8-f7f3b67bf400' { 'Windows Vista Ultimate' } 'de614ff4-3407-49c0-a9b7-3594d96a47e5' { 'Windows Vista Ultimate - MAK' } '7a7a77b8-8ed9-456e-8d0f-d1b743e5730c' { 'Windows Vista Ultimate - OEM nonSLP/SBC COA' } '76ff6e22-06ce-4340-b386-2b2f6c5a6e77' { 'Windows Vista Ultimate - OEM SLP COA' } 'b6633b14-5f98-454c-9301-74c016ece289' { 'Win 7 Ultimate N OEM:COA' } '7f8c9783-8cf4-406a-9fd9-69dfb5406c1d' { 'Win 7 Ultimate N OEM:NONSLP' } '21d9b582-cf0c-4c49-823d-d8150b4ee1ef' { 'Win 7 Ultimate N OEM:SLP' } '09fa3538-63aa-427a-bc2a-4be28ccf4f60' { 'Win 7 Ultimate N retail' } '226108e7-746d-47d3-8dd7-8272a4277840' { 'Windows Vista Ultimate N' } '67bbc59a-06a9-4740-9451-ba9cb7bbdcb9' { 'Windows Vista Ultimate N - OEM COA' } 'c2b40cd9-71a1-4a6d-8680-a92f2db68b87' { 'Windows Vista Ultimate N - OEM NONSLP' } 'a0f37727-3001-4ee3-91f0-7da289402961' { 'Windows Vista Ultimate N - OEM SLP' } '6038b894-745c-4f41-b1d3-8a4d2d4e84d9' { 'Visual Studio 2010 Kitty Hawk (Volume License)' } '4ada16ad-5428-4610-8dad-0af9cecb7d89' { 'Visual Studio 2010 Lab Management (Volume License)' } '5af31552-1e2f-4d45-9976-2ff240ca3daa' { 'Visual Studio 2010 Professional (Volume License)' } 'a2af668b-67fd-4ff6-b3da-987185d38929' { 'Visual Studio 2010 Team Essentials (Volume License)' } '48a9a1fd-ada2-4be9-95fe-647e12cfd745' { 'Visual Studio 2010 Team Foundation Server (Volume License)' } '52947ec0-8154-4f23-b345-ba944e1b82ff' { 'Visual Studio 2010 Team Foundation Server Essentials (Volume License)' } 'fa936247-5df1-4599-b765-0535e289893b' { 'Visual Studio 2010 Team Suite (Volume License)' } 'ca00e817-3bae-4de3-a6ec-86e447949b8b' { 'Visual Studio 2010 Test Essentials (Volume License)' } 'f397e5c5-234e-4e81-9fd7-710a0bf43b61' { 'Visual Studio 2010 Test Load Agent Controller (Retail 10k pack)' } '931aeefe-da83-4f09-83e1-ba9a64491fa0' { 'Visual Studio 2010 Test Load Agent Controller (Retail 1k pack)' } '93b64ee9-40ac-4662-ace1-679689b28b33' { 'Visual Studio 2010 Test Load Agent Controller (Volume 10K pack)' } '497ab398-a644-4326-9867-93cc4fc08079' { 'Visual Studio 2010 Test Load Agent Controller (Volume 1K pack)' } '3332f1f9-d8f5-4e2e-b0f6-a6f7d97e7706' { 'Visual Studio 2010 Test Load Agent Controller (Volume 2.5K pack)' } 'd4ccfed7-16e8-4499-a921-187e0e471761' { 'Visual Studio 2010 Test Load Agent Controller (Volume 500 pack)' } 'e25b8b0d-3fa6-43d3-9bd7-4679e0523cf3' { 'Visual Studio 2010 Test Load Agent Controller (Volume 5K pack)' } '04b2ddca-4cba-4cf3-9f76-c88adddcbb06' { 'Visual Studio 2010 Test Load Agent Controller (Volume Unlimited pack)' } '4f3d1606-3fea-4c01-be3c-8d671c401e3b' { 'Windows Vista Business' } '9de9abe2-d01d-4538-af84-4498bdbc2ba3' { 'Windows Vista Business Retail' } '2d2d5664-88bd-4ebc-959a-dea6b1b80dc0' { 'Windows Vista SP2 Business OEM:COA' } '212a64dc-43b1-4d3d-a30c-2fc69d2095c6' { 'Windows Vista ALL Volume SKUs - CSVLK' } '74e464f6-45db-41f6-9356-66260bdf3c65' { 'Windows Vista ALL Volume SKUs - MAK' } '2c682dc2-8b68-4f63-a165-ae291d4cf138' { 'Windows Vista BusinessN' } 'db442be4-81ed-4ab3-9d66-2417e8a5c81c' { 'Windows Vista Business N Retail' } '95a6eef2-89d4-4759-b65b-0a0748994b82' { 'Windows Vista CODEC add-on Retail' } 'cfd8ff08-c0d7-452b-9f60-ef5c70c32094' { 'Windows Vista Enterprise' } 'b51791c2-b562-4b73-97b0-735a0e4429a6' { 'Windows Vista Enterprise Retail' } '58c37517-42f8-4723-bb44-30b05791ff2a' { 'Windows Vista EnterpriseN Retail' } 'd4f54950-26f2-4fb4-ba21-ffab16afcade' { 'Windows Vista EnterpriseN' } '95c6e80a-0ff8-4bd0-95f2-c4a39b79d09e' { 'Windows Vista Home Basic Retail' } 'acc41c6f-dc9f-40ca-b0da-108c7a5f8d90' { 'Windows Vista SP2 Home Basic OEM:COA' } 'd0333dad-c14e-46f2-b62a-8b47a1b9768b' { 'Windows Vista Home Basic N Retail' } '9e042223-03bf-49ae-808f-ff37f128d40d' { 'Windows Vista Home Premium Retail' } '92d8977c-d506-4e63-b500-6d39283b6cd5' { 'Windows Vista Home Premium N Retail' } 'afd5f68f-b70f-4000-a21d-28dbc8be8b07' { 'Windows Vista OCUR add-on Retail' } 'e0872c5d-9308-4c2a-ba9b-22f04a9b9480' { 'Windows Vista SP2 Starter OEM:NONSLP' } '70453a75-42cb-49ba-83d8-d9dc6295901b' { 'Windows Vista Starter Retail' } '136595fa-543f-4a64-8326-873935b7b7a1' { 'Windows Vista SP2 Ultimate OEM:NONSLP' } '30fab9cc-8614-4339-989f-7ce61fb7a5c4' { 'Windows Vista Ultimate Retail' } '1eefed20-8ac0-478c-8774-70cd44782ea1' { 'Windows Vista Ultimate N Retail' } 'f758e09b-7c7c-492c-b78c-aba5bd4e3f5b' { 'Windows Vista Business - OEM:COA' } 'e8d89889-a417-408a-8180-02a89339580d' { 'Windows Vista Business N OEM:COA' } '91dbad68-4713-4f9c-b351-6e77a8361741' { 'Windows Vista Home Basic - OEM:COA' } '9c5c23f2-a6c3-4c6c-b9b4-1f8796b63254' { 'Windows Vista Home Basic N OEM:COA' } 'a4eec485-e375-48b4-8f51-80d13a4086b6' { 'Windows Vista Home Premium - OEM:COA' } '94451d5d-8520-43d3-af38-4e54d817a407' { 'Windows Vista Starter - OEM:COA' } 'f79b5e33-4a4e-451c-9e8a-55dcc9bdb89d' { 'Windows Vista Ultimate - OEM:COA' } 'f14a0fcc-9198-49d0-9b48-61398a545aae' { 'Windows Vista Business - D-OEM (CHS & RU) OEM:NONSLP' } '177df7ed-709f-454a-91bd-947ec8a1e668' { 'Windows Vista Business - OEM:NONSLP' } 'fd3bcb98-5c55-4b2d-ae32-a4515e3c17a3' { 'Windows Vista Business - OEM:SLP' } '24a6d36e-9110-4081-bec6-fa27c8e860d0' { 'Windows Vista SP2 Home Business Retail' } 'fdc08872-563e-4e3a-ad19-981c2c58b4d9' { 'Windows Vista Business N OEM:NONSLP' } '92bc39aa-055e-4919-adca-763fcde047b8' { 'Windows Vista Business N OEM:SLP' } 'd584adf1-69e1-4710-98a3-89f37b940020' { 'Windows Vista Enterprise - OEM:SLP' } '26241618-ffd9-4440-af04-2ab852b2767f' { 'Windows Vista Home Basic - D-OEM (CHS & RU) OEM:NONSLP' } 'bb4c2c10-dc0d-4ce6-8824-ee71ddb63c07' { 'Windows Vista Home Basic - OEM:NONSLP' } '199086aa-6cb8-4e5b-b698-f2be56f1e8ee' { 'Windows Vista Home Basic - OEM:SLP' } '5f44767a-daac-470f-8e93-294b3217f956' { 'Windows Vista SP2 Home Basic Retail' } '827661ef-a4de-4110-9b8a-4c7fdc42dc89' { 'Windows Vista Home Basic N OEM:NONSLP' } '9680dca9-c58d-4f58-817e-ff16ffc626c8' { 'Windows Vista Home Basic N OEM:SLP' } 'b6795467-dc45-4acf-af87-e948ee3f15f4' { 'Windows Home Premium - D-OEM (CHS & RU) OEM:NONSLP' } 'f3acdd3c-119a-4932-a3d7-0b6f33a1dca9' { 'Windows Vista Home Premium - OEM:NONSLP' } 'bffdc375-bbd5-499d-8ef1-4f37b61c895f' { 'Windows Vista Home Premium - OEM:SLP' } 'cdb090c3-053c-4cd1-9cb2-e35b1738747a' { 'Windows Vista SP2 Home Premium Retail' } '89e51a3c-76c0-4beb-a650-53d34c8f8186' { 'Windows Vista Starter - OEM:NONSLP' } '851f81c4-16c6-4de8-a20a-dcebd6b76c89' { 'Windows Vista Starter - OEM:SLP' } '33a7e8d3-e2ab-413b-96a6-27c83b21c695' { 'Windows Vista Ultimate - OEM:NONSLP' } '5e802570-4657-4e84-bfbc-6a0e531b84af' { 'Windows Vista Ultimate - OEM:SLP' } 'c3505bd0-004a-49b9-84db-a1a4869eddf1' { 'Windows Vista Home Premium - OEM:COA' } '86e0a073-040b-4e10-aaf1-55f75482b5a4' { 'Windows Vista SP1 Business OEM:NONSLP' } '341adbdd-bf38-497d-9676-fc981f6ccc70' { 'ProdKey3 Exchange Svr 2010 00150 DLA ByPass Volume:GVLK Vol Lic Std Coex' } 'febe415b-b7d4-4aac-a9c6-8cebf4f9d14d' { 'Embedded Standard Retail Acad Edtn OEM' } '602a3fcf-02ac-4ef4-975a-57d096cc4d69' { 'Embedded Standard Retail Default Key Evl OEM' } 'adb4e385-907b-45da-8c1c-cd428e2f9a06' { 'Embedded Standard Retail Prem Edtn Eval OEM' } 'd49ab3d8-bdf9-45f8-9383-e106831bda60' { 'Embedded Standard Retail Std Edtn Eval OEM' } '1d30a37d-c938-48ae-8e77-96686f5ef87f' { 'Embedded Standard Volume:BA Lckd Edtn OEM' } 'eb788ea6-a0ee-41fd-a238-1a9163b0be0e' { 'Embedded Standard Volume:BA Prem Edtn OEM' } 'dea43b09-c900-4e4c-a611-999261148089' { 'Embedded Standard Volume:BA SMB Lckd Edtn OEM' } '7393f438-73bf-44f0-a954-12edfb724145' { 'Embedded Standard Volume:BA SMB Prem Edtn OEM' } '402ad928-b65e-4f1f-859c-0cbd4060ddef' { 'Embedded Standard Volume:BA SMB Std Edtn OEM' } 'e1a8296a-db37-44d1-8cce-7bc961d59c54' { 'Embedded Standard Volume:BA Std Edtn OEM' } '21b48ea2-ba74-49c7-a627-b707ee694f28' { 'ProdKey3 Exchange Svr Ent 2010 00150 DLA/Bypass ByPass Volume:GVLK Vol L' } '911e20cb-83ea-44ed-8799-073be1f77f22' { 'Windows Server HPC OEM:COA' } '0447e96f-4062-4c1b-b068-98c8326016f2' { 'Windows Server HPC OEM:SLP' } '9515b08e-d839-4df3-bfe7-daecde02d97e' { 'Windows Server HPC OEM:SLP' } '28169020-83db-42d0-87bb-7709454c5f62' { 'Windows Server 2008 Datacenter OEM:NONSLP' } '5762371d-a6fe-4fea-af1b-b9f0367d8e46' { 'Windows Server 2008 Datacenter OEM:SLP' } 'd020c729-07f0-4f8f-87ce-bf803275c786' { 'Windows Server 2008 Datacenter without Hyper-V OEM:NONSLP' } 'f209258f-33ca-4a14-a45c-5cafa7259ab5' { 'Windows Server 2008 Datacenter without Hyper-V OEM:SLP' } '56cd5000-40b0-4e44-97a7-245191e7dfe3' { 'ServerEmbeddedSolution Retail' } '0fe54906-7d56-412b-bab8-4f0cd9e07a2a' { 'ServerEmbeddedSolutionCore Retail' } 'a6ad72e3-67a6-4d46-af1c-5f542c22ef7c' { 'Windows Server 2008 Enterprise OEM:NONSLP' } '94dd1d84-9d70-45ff-ae30-6c1643e583ac' { 'Windows Server 2008 Enterprise OEM:SLP' } '256cc990-1692-4ea8-965c-2d423d5dd24e' { 'Windows Server 2008 for Itanium-Based Systems nonSLP' } '766d0cf7-accb-4fe9-b9a0-b4bfa8ae7550' { 'Windows Server 2008 for Itanium-Based Systems OEM:SLP' } '388afeb9-3b92-44a2-a3dd-1e68665f6d36' { 'Windows Server 2008 Enterprise without Hyper-V OEM:NONSLP' } 'd063c01b-b1c3-442c-8cc4-4be55a1a01df' { 'Windows Server 2008 Enterprise without Hyper-V OEM:SLP' } '20fd891c-4d02-425c-9840-3f762d993737' { 'Server 2008 R2 Essential Business Server "Cascades" OEM:NONSLP' } '9534497b-0bba-4fae-bf3d-1a7597eeb188' { 'Server 2008 R2 Essential Business Server "Cascades" OEM:SLP' } 'e6df6197-1508-45e5-8ddd-3d07b674f5cd' { 'Server 2008 R2 Essential Business Server "Cascades" Retail' } '780ac8a3-9312-4077-98a2-dd957cf8b7dc' { 'Server 2008 R2 Essential Business Server "Cascades" Retail TB:Eval' } 'b3bae0cf-e1a1-4263-b8c8-3fd852b8850a' { 'ServerEBS Essential Additional' } '6b43d071-dbe7-472d-8c0f-d33295fcddd6' { 'Server 2008 R2 Essential Business Server (all editions EBS) MAK' } '8fcad604-c17b-4620-b073-470555f273d5' { 'Server 2008 R2 Essential Business Server "Klamath" OEM:NONSLP' } '4ca3ecfc-432d-43f7-91c5-4d0226a07f41' { 'Server 2008 R2 Essential Business Server "Klamath" OEM:SLP' } '72d9dfa0-00bd-4152-8d49-11f16632d9a2' { 'Server 2008 R2 Essential Business Server "Klamath" Retail' } '82f26cca-d9f0-4259-be0f-7b86c382eec7' { 'Server 2008 R2 Essential Business Server "Klamath" Retail TB:Eval' } '5b522eb9-8288-40eb-aaa9-e3f8b8616042' { 'ServerEBS Essential Additional Svc' } '1dbe6f30-a618-4909-ba6e-aa5a66f1e96a' { 'Server 2008 R2 Essential Business Server "Cascades" OEM:NONSLP' } '66c86c35-a315-468a-8dfd-b0a36f9d3584' { 'Server 2008 R2 Essential Business Server "Cascades" OEM:SLP' } '314d9cd5-b80b-46b9-b7d5-2dc3ae9e807f' { 'Server 2008 R2 Essential Business Server "Cascades" Retail' } '161135e2-8a99-42ee-912c-4161e4056d7c' { 'Server 2008 R2 Essential Business Server "Cascades" Retail TB:Eval' } '7b6916bb-3b99-40ea-8b2d-5d8f948f2b74' { 'ServerEBS Essential Management' } '9a7ceac4-1f33-4e4b-a866-34f00b8a2438' { 'Server 2008 R2 Essential Business Server "Klamath" OEM:NONSLP' } '1a07362f-15ee-4af8-a374-75157d6b6fbb' { 'Server 2008 R2 Essential Business Server "Klamath" OEM:SLP' } '722105e6-be37-4c48-9a08-4cd6a5e0bd55' { 'Server 2008 R2 Essential Business Server "Klamath" Retail' } '29fb0edc-c2fd-413c-a72e-9fe36075c9de' { 'Server 2008 R2 Essential Business Server "Klamath" Retail TB:Eval' } '4c853108-8b21-489d-a5c7-c46ea27670a9' { 'ServerEBS Essential Management Svc' } '93d59c57-b6e1-4c3d-8caf-204cd102a69a' { 'ServerforSBSolutions Retail' } 'fa0d7bfa-140f-4ca1-ae5b-e4a666549beb' { 'ServerforSBSolutionsEM Retail' } '31d69fd1-8967-417e-9464-59d6ca58190f' { 'Windows Storage Server 2008 R2 Essentials ServerHomeStandard OEM:NONSLP' } '07acd797-a4c1-49d2-84a8-c08a14fb83b2' { 'Windows Storage Server 2008 R2 Essentials ServerHomeStandard OEM:SLP' } 'e267bacf-b3bf-45e5-a2ba-057855b3c59f' { 'Windows Storage Server 2008 R2 Essentials ServerHomeStandard Retail' } '59cbe984-9a35-48c2-a471-a437dd1fa8a5' { 'ServerMBS Management' } 'f4f5e8f4-7a61-40ce-8832-630a6eba038d' { 'ServerMBS Messaging' } 'a1d8e513-d10f-479e-8963-b9f82c1bfa36' { 'ServerMBS Security' } 'c0c1f3e8-e9b6-461d-afbf-8f964f4d11c2' { 'ServerSBSPremium Retail' } 'de57e6db-74a6-4de2-9b45-6305085bd104' { 'ServerSBSPremium Retail' } '6860916b-c83f-4d66-a28c-c6b78499e7d0' { 'Windows Small Business Server Premium Retail' } '96fd21ec-7c70-4c04-9fce-b034941c0473' { 'ProdKey3 Windows Server Foundation 00150 ProdAct 10 nonOA II OEM' } '9f5cfb3d-6288-4f6f-9d57-fffd843d53e6' { 'ProdKey3 Windows Server Foundation 2008 00150 OEMAct/Preinstall PrePop OA II' } '89900d26-c363-4e32-a7a1-c70411a8e539' { 'ServerSBSPrime Retail' } '46aa2e8e-142f-4504-bbdf-921b27c44440' { 'ServerSBSStandard Retail' } '58a6435c-0657-4912-b0f5-810215560e47' { 'Windows Small Business Server Standard OEM:NONSLP' } 'd034a056-e1d5-43e0-9511-7586b6d335eb' { 'Windows Small Business Server Standard OEM:SLP' } '0fe34a6c-50a1-4cfb-9013-3fdf51127f04' { 'Windows Small Business Server Standard Retail' } 'b0d479a0-f524-4da0-ad5f-ead4c2eac5d9' { 'ServerSolution Retail' } '5662c706-f571-4c83-9649-3916a56a2b74' { 'Windows Server 2008 R2 for Small Business Server Essentials ServerSolution OEM:NONSLP' } '74e20158-a356-46aa-bb8a-fc200f20a9c2' { 'Windows Server 2008 R2 for Small Business Server Essentials ServerSolution OEM:SLP' } 'c8ffd775-fd93-4b7d-b622-20244a71009b' { 'Windows Small Business Server 2011 Essentials ServerSolution Retail' } 'bdbaaa16-4622-4547-828b-abff92a18218' { 'ServerSolutionEM Retail' } '3c2baabd-257f-4f5c-9c3e-e3112a1c939e' { 'ServerSolutionsPremium Retail' } '51dc19af-0ddb-4cdf-b6be-3a314f2c4da1' { 'ServerSolutionsPremium Retail' } '7acd9eb8-e300-444c-b38a-47cdbe065508' { 'Windows Server 2008 Standard OEM:NONSLP' } '15a581b4-f839-4d26-943c-b7e72f219849' { 'Windows Server 2008 Standard OEM:SLP' } '2e063f49-6ce7-4099-be9e-8b1c3590f5c8' { 'Windows Server 2008 Standard without Hyper-V OEM:NONSLP' } '0e18c71e-3a85-4063-b380-419652de3733' { 'Windows Server 2008 Standard without Hyper-V OEM:SLP' } '8210c9d1-4686-4f46-ac2e-56cf4e6ba674' { 'Windows Web Server 2008 OEM:NONSLP' } 'bab219ac-3f91-4cdc-8339-b643cbdd6c49' { 'Windows Web Server 2008 OEM:SLP' } '005cf8e0-d40e-458f-8982-9ea5a37c080c' { 'Server 2008 R2 Server for Windows Essential Server Solutions (WinWES) OEM:NONSLP' } 'ba480d59-94fc-46de-81f7-baf821e43488' { 'Server 2008 R2 Server for Windows Essential Server Solutions (WinWES) OEM:SLP' } '4539dd83-aa84-4cb8-aa73-bc89daf53a3a' { 'Server 2008 R2 Server for Windows Essential Server Solutions (WinWES) Retail' } 'b0830b97-08a6-4370-b4da-2d136616827e' { 'Server 2008 R2 Server for Windows Essential Server Solutions (WinWES) Volume:MAK' } 'bc7ebf48-a543-4b10-a267-029e059b5c70' { 'Win 7 Server SB Retail' } '79303950-2706-45d7-8157-2f00cdf0d1a4' { 'Windows Server for Small Business OEM:NONSLP' } '9f6afe16-133b-4ee3-9278-3d5d32dd2579' { 'Windows Server for Small Business OEM:SLP' } '9e52b173-d1b8-4cc7-8a68-fd2ab63e25e0' { 'Windows Server for Small Business Retail' } 'b7b1d450-fb87-4054-84ee-5db525088124' { 'ServerWinSBV Retail' } '104434dc-1ca5-43dd-a2c1-aa662b5dc912' { 'Windows Server for Small Business OEM:NONSLP' } '7f8cb0c8-047f-4544-a308-0e3561354ea8' { 'Windows Server for Small Business OEM:SLP' } '7b5306ad-0d02-463c-8177-59087ff8a58b' { 'Windows Server for Small Business Retail' } 'f4d1eec6-76d4-4b91-aef7-10b7cf7ef2cb' { 'ProdKey3 Exchange Svr 2010 00150 DLA/Bypass ByPass Volume:GVLK Vol Lic S' } '448516f0-1f1d-48a8-95d9-c955b86b2ce1' { 'ProdKey3 Exchange Svr 2010 00150 ProdAct Retail FPP' } 'f23dba60-517a-4184-bd26-066d9e3c19a9' { 'Windows Vista SP2 Home Basic OEM:COA' } 'c9ad502b-ef48-41d1-a2a0-38a38e82fed0' { 'Longhorn Compute Cluster Retail' } '7afb1156-2c1d-40fc-b260-aab7442b62fe' { 'Windows Server 2008 ComputerCluster' } '88a30fce-0fde-49b0-8cc6-4fbd568e7b5d' { 'Windows Server HPC Retail' } '4e491fef-6f37-42a3-ab48-4314d83e3627' { 'Windows Server HPC Retail virtual' } 'c90d1b4e-8aa8-439e-8b9e-b6d6b6a6d975' { 'Windows Server 2008 Datacenter & Itanium CSVLK' } '56df4151-1f9f-41bf-acaa-2941c071872b' { 'Windows Server 2008 Standard & Enterprise CSVLK' } 'c448fa06-49d1-44ec-82bb-0085545c3b51' { 'Windows Web & Compute Cluster Server 2008 CSVLK' } '41606216-0fad-4425-8d6e-63be6ed8dc49' { 'Windows Web & Compute Cluster Server 2008 MAK' } '5e9f548a-c8a9-44e6-a6c2-3f8d0a7a99dd' { 'Longhorn Compute Cluster V Retail' } '68b6e220-cf09-466b-92d3-45cd964b9509' { 'Windows Server 2008 Datacenter' } '866e924e-c2a3-4872-aca1-6b48c13962d5' { 'Windows Server 2008 Datacenter Retail' } 'e9add589-f877-4aad-af6b-d641674d4ac9' { 'Windows Server 2008 Datacenter & Itanium MAK' } 'fd09ef77-5647-4eff-809c-af2b64659a45' { 'Windows Server 2008 DatacenterV' } 'c1af4d90-d1bc-44ca-85d4-003ba33db3b9' { 'Windows Server 2008 Enterprise' } '32b40e5e-0c6d-4c6f-ab12-a031933fd2c6' { 'Windows Server 2008 Enterprise Retail' } 'bb1d27c4-959d-4f82-b0fd-c02a7be54732' { 'Windows Server 2008 Standard & Enterprise MAK' } '01ef176b-3e0d-422a-b4f8-4ea880035e8f' { 'Windows Server 2008 Itanium GVLK' } '1ba5e036-e386-42c4-b7eb-16bdb4fa1945' { 'Windows Server 2008 Enterprise without Hyper-V Retail' } '8198490a-add0-47b2-b3ba-316b12d647b4' { 'Windows Server 2008 EnterpriseV' } '8df04457-07c8-4301-bce9-d61eb76cb2d6' { 'Windows Home Server Premium Retail' } '5bd23b19-aa71-4a5b-8b68-c8801c2baff6' { 'Windows Home Server Standard Retail' } '2cf1c8d6-ebe1-4ce9-83c6-c4877fae1355' { 'Hyper-V ProdAct All Programs' } 'b86c7736-91ff-4de9-bfa9-b32b8a09acac' { 'Longhorn Medium Business Server Management Retail' } 'd3f5642f-081d-40b2-a4b9-efd3054d4584' { 'Longhorn Medium Business Server Messaging Retail' } 'c6936a36-69f3-4994-9857-3069c7b9ec7a' { 'Longhorn Medium Business Server Security Retail' } 'cc4c2cf8-ef29-4d8e-b168-2b65a3db3309' { 'Longhorn SBS Premium Retail' } 'b3827b27-bd38-4284-98af-e4f4d1c051a0' { 'Longhorn SBS Prime Retail' } '5dad0eff-3f6f-4310-8844-422f9dc7c84b' { 'Longhorn SBS Standard Retail' } '0957c488-4993-4b07-a2a4-0097b2f8c37d' { 'Windows Small Business Server 2011 Standard ServerSBSStandard OEM:NONSLP' } '2b756fa4-e8d3-4eac-8722-07b044e7b6b1' { 'Windows Small Business Server 2011 Standard ServerSBSStandard OEM:SLP' } 'a685cfa9-39ff-4d7d-a7ff-26e492314852' { 'Windows Small Business Server 2011 Standard ServerSBSStandard Retail' } 'b5f35387-daeb-4901-a253-c6001f14fda7' { 'Windows Small Business Server 2011 Standard ServerSBSStandard Retail:TB:Eval' } '9bc8998c-0d54-4d44-b299-fb778ec57230' { 'Windows Small Business Server 2011 Essentials ServerSolution OEM:NONSLP' } '0dbe8d16-b9e1-435f-9fc8-5e011438eb4c' { 'Windows Small Business Server 2011 Essentials ServerSolution OEM:SLP' } '29b15bf5-8d7f-47e2-a0a7-ce1061254a0f' { 'Windows Small Business Server 2011 Essentials ServerSolution Retail' } 'e1808e9b-b84c-4b3e-a351-d9820702720c' { 'Windows Small Business Server 2011 ServerSolution, ServerSBSStandard Volume:MAK' } 'ad2542d4-9154-4c6d-8a44-30f11ee96989' { 'Windows Server 2008 Standard' } '603504f9-109f-49f0-9271-8c66f7878f58' { 'Windows Server 2008 Standard Retail' } '65ab7338-9ad0-43fe-af1b-190b577495e2' { 'Windows Server 2008 Standard without Hyper-V Retail' } '2401e3d0-c50a-4b58-87b2-7e794b7d2607' { 'Windows Server 2008 StandardV' } '2be204da-24a0-4943-b66c-81e8464acd7e' { 'Windows Storage Server Enterprise Retail' } '60207eba-8b4a-486c-a013-023b4b742c2f' { 'Windows Storage Server Express Retail' } '368856e9-43f7-4601-8358-e561f36c7dd8' { 'Windows Storage Server Standard Retail' } '4bf433fa-ab04-4c6c-b55b-00170e14b8cd' { 'Windows Storage Server Workgroup Retail' } 'ddfa9f7c-f09e-40b9-8c1a-be877a9a7f4b' { 'Windows Server 2008 Web' } 'a77a6806-f59e-4953-97d7-229317b8e6a6' { 'Windows Web Server 2008 Retail' } 'f92f836d-4d3e-4e90-a08f-2d612d65e716' { 'Longhorn Server for Small Business Retail' } '3059a9fd-b068-4f0d-acaf-66324dca67ac' { 'Longhorn Server for Small Business V Retail' } '0101b69a-85c8-4344-8196-7a16a7790bb5' { 'Windows Vista Business - OEM:COA' } 'e12dd57d-07d5-4f64-9139-a92489a626b0' { 'Windows Vista Business OEM:SLP' } 'faba8d9b-3ad6-4529-b11d-d41ec9b5d47b' { 'Windows Vista Business Retail' } '4871de8b-3adf-4455-a7d3-fd7b6c01c939' { 'Windows Vista ALL Volume SKUs - CSVLK' } '132ccb0c-51e9-49c4-b157-ccf977259947' { 'Windows Vista Business N Retail' } 'c2f2d79e-121d-482c-b665-83f052c8cbcc' { 'Windows Vista Home Basic - OEM:COA' } 'a3481201-436e-4fc9-88b4-34ccf7f81789' { 'Windows Vista Home Premium - OEM:COA' } '3a1d44e2-bede-46fb-8a02-0cd485a1db8b' { 'Windows Vista Home Premium Retail' } '55e6dada-345d-41ab-83f0-99ad84ac1d19' { 'Windows Vista Home Premium N OEM:COA' } '413036e1-7bcf-4a02-bab4-7b6916f17f87' { 'Windows Vista Home PremiumN OEM:SLP' } '24d57dfd-f6e1-48f9-a045-0520a52f84c7' { 'Windows Vista Starter OEM:COA' } '12d7799d-9db2-4378-abb8-efaca84a6133' { 'Windows Vista Starter OEM:SLP' } '1105ac4c-f808-42d2-a6ae-f46183169f6f' { 'Windows Vista Starter Retail' } 'a797d61e-1475-470b-86c8-f737a72c188d' { 'Windows Vista StarterN Retail' } 'f00fa8e9-ac0f-4f43-a259-a26c110cbbf9' { 'Windows Vista Ultimate - OEM:COA' } '56a13760-2b9c-406f-be8a-8f2ef22f10b5' { 'Windows Vista Ultimate MAK' } '1f59edc8-ad79-4d96-a62d-c33ee78da2ec' { 'Windows Vista Ultimate Retail' } '2bd10086-9094-4140-801e-3d8ec5b0ac25' { 'Windows Vista Ultimate N - OEM:COA' } '7fbe00d4-bff2-47a3-99a7-6387fd509ae2' { 'Windows Vista UltimateN - OEM:SLP' } '8f1c2cd6-4d70-4122-8eee-b4de3fb9ba17' { 'Windows Vista UltimateN MAK' } '90f4e13a-12fb-4840-b9ab-91cfb9fac5e2' { 'Windows Vista UltimateN Retail' } '093e8e65-b6ab-4526-ab64-ae4e8269b656' { 'Windows Vista Business - OEM:NONSLP' } '829a4bc1-2a89-47ba-a638-0b8a206b0986' { 'Windows Vista Business Retail' } '8cc39469-8bf4-4859-9f14-639320501a1f' { 'Windows Vista Home Basic - OEM:NONSLP' } 'c5d8ec70-e2ae-42d8-aaa9-eec3772438ee' { 'Windows Vista Home Premium - OEM:NONSLP' } '776ec0e8-2a6f-4e55-94f2-b6b1fa9cf4c5' { 'Windows Vista Home Premium N - OEM:NONSLP' } 'a2855032-266b-45e6-8739-311652feeb28' { 'Windows Small Business Server 2011 Standard ServerSBSStandard OEM:NONSLP' } '3180af80-a6fe-4521-99cd-98808707f510' { 'Windows Small Business Server 2011 Standard ServerSBSStandard Retail' } '28e73646-24dc-4222-bf00-de8ded35ce13' { 'Windows Small Business Server 2011 Essentials ServerSolution OEM:NONSLP' } '5722cd65-5a5c-4315-957a-0e4e5daef5cd' { 'Windows Vista Starter - OEM:NONSLP' } 'a79a48fc-70d9-4413-ab47-81cf5d08f7ee' { 'Windows Vista Ultimate - OEM:NONSLP' } 'fbe5f9be-2204-480a-93da-a5f81b3c52d9' { 'Windows Vista Ultimate N - OEM:NONSLP' } 'cd2e414a-e728-421e-a934-73506387d641' { 'Windows Vista Home Basic - OEM:COA' } 'da0483a8-c443-45fd-9b52-2bba9b2ee8ab' { 'Windows Vista SP2 Home Premium OEM:COA' } '08efb8fe-c403-4019-a084-9da91108cead' { 'Windows Vista SP2 Home PremiumN OEM:NONSLP' } 'd6a70f3f-2052-4633-a9aa-25ea0cdff672' { 'Windows Vista Ultimate - OEM:COA' } 'b4b150d0-ec09-4f74-910d-371ed161b2ac' { 'Windows Vista Home Basic - OEM:COA' } 'b13b0123-8661-4ee2-afb7-05c37481686b' { 'Windows Vista Business - OEM:COA' } '7e0e0685-8eef-47b8-8b25-f03f9819eb17' { 'Windows Vista SP2 Business OEM:NONSLP' } '121059c3-724a-48ba-b745-5ab6daad8e37' { 'Windows Vista SP2 Home Basic OEM:NONSLP' } 'e05164a4-fb9a-471f-8c3a-6959b4cf1b72' { 'Windows Vista SP2 Home Premium OEM:COA' } 'a7a4a974-ad47-420e-8e1a-83d28572058a' { 'Windows Vista SP2 Home Premium OEM:NONSLP' } '6c47797a-fdba-4ac8-b402-d4b937bb7edb' { 'Windows Home Server 2011 SERVERHOMEPREMIUM OEM:NONSLP' } '3ff36ff8-6220-484c-9fb0-165ac44e0a91' { 'Windows Home Server 2011 SERVERHOMEPREMIUM OEM:SLP' } '16cc978a-cf08-44f4-b02b-dfeb8bdacac2' { 'Windows Home Server 2011 SERVERHOMEPREMIUM Retail' } 'd26969d7-e588-4ec8-9e52-911cbe0f744a' { 'Windows Home Server 2011 SERVERHOMEPREMIUM Retail:TB:Eval' } 'b7c0e03c-9b98-4219-82dd-d17d9543891c' { 'Windows Medium Business Server Management Retail' } '1404ea26-d078-4786-886a-0da035b2cd5a' { 'Windows Medium Business Server Management OEM:NONSLP' } '7c4ab58c-78f4-4403-bda2-d5bfb449ddf1' { 'Windows Medium Business Server Management OEM:SLP' } '92da208a-1a89-4407-88e6-bb5ca02aec47' { 'Windows Medium Business Server Messaging Retail' } 'c99b1d91-25f1-4024-a20c-0e9da8d15225' { 'Windows Medium Business Server Messaging OEM:NONSLP' } 'feb01ead-d438-4556-a5b3-2b6557da8737' { 'Windows Medium Business Server Messaging OEM:SLP' } '9c07c927-9017-4dbf-84e7-06c3a61fed6a' { 'Windows Medium Business Server Security Retail' } '74143dee-b000-419d-badc-b650f7e316e4' { 'Windows Medium Business Server Security OEM:NONSLP' } 'c135db9b-0074-4ef9-a405-a415de4e31a5' { 'Windows Medium Business Server Security OEM:SLP' } '0dddb5b3-94b1-4b69-a916-6c82ea5542c5' { 'Windows Storage Server Enterprise - MSDN' } '43329da1-7874-4e67-b612-3d59697b1677' { 'Windows Storage Server Enterprise - OEM COA' } '416733c6-d43f-4ba1-b6e0-722aa4573cdf' { 'Windows Storage Server Enterprise - OEM NSLP' } 'fdd923f8-4409-4a72-becd-d7e9aa59bca3' { 'Windows Storage Server Enterprise - OEM SLP' } '374a5900-7184-43cd-a96f-abfcc30a1b27' { 'Windows Storage Server Express - MSDN' } '8e87fd23-319d-4cd6-8aa2-c590b7b0a42c' { 'Windows Storage Server Express - OEM COA' } 'f6a8f9fe-e072-4cb4-9fe2-a8276a1f161a' { 'Windows Storage Server Express - OEM NSLP' } 'b2b347e5-e754-468d-afc1-7b2187288814' { 'Windows Storage Server Express - OEM SLP' } '7139ded4-7373-4651-b44b-9de7ea72ccd4' { 'Windows Storage Server Standard - MSDN' } '3c73fddf-ec70-43b2-b642-abd2d575e102' { 'Windows Storage Server Standard - OEM COA' } '5f4eb8c3-37e4-4a56-97c9-60ad9a03763d' { 'Windows Storage Server Standard - OEM NSLP' } 'f6c23d59-6d32-4b41-acad-b0fa170733cb' { 'Windows Storage Server Standard - OEM SLP' } 'ce0df6b6-ff0f-463c-93ed-3cd71752a8ac' { 'Windows Storage Server Workgroup - MSDN' } '527803e5-f705-433b-a7f1-10b647e5369a' { 'Windows Storage Server Workgroup - OEM COA' } 'abb3e789-58ae-42ae-b308-bb2c831db127' { 'Windows Storage Server Workgroup - OEM NSLP' } 'a499fe43-12de-4873-8971-1cff6173cdaa' { 'Windows Storage Server Workgroup - OEM SLP' } '4cb70ae9-faf0-4cc1-88e5-f9d1d388e39a' { 'Windows Vista SP2 Starter OEM:NONSLP' } '95fac25a-4268-48c3-ae04-071ea19594fa' { 'Windows Vista SP2 Ultimate OEM:NONSLP' } '6f4429fd-9729-443a-abfc-a3daf21ba4b6' { 'Windows Vista SP2 Home Basic OEM:COA' } '657fd7f1-652f-4a7f-9cef-e45e60f8b4c7' { 'Windows Vista SP2 Home Basic OEM:NONSLP' } '6b16d38b-7dac-4614-9948-b4a92ddba889' { 'Windows Vista SP2 Home Premium OEM:COA' } '11db994f-af86-4eb9-af35-fb4e3b0256f5' { 'Windows Vista SP2 Home Premium OEM:NONSLP' } 'ab8e6bc4-0499-484e-8da1-761697126843' { 'Windows Vista SP2 Home PremiumN OEM:COA' } 'c6166b46-aba5-4374-8bdf-be06bde66223' { 'Windows Vista SP2 Home PremiumN OEM:NONSLP' } '920b06bf-f7d3-4291-80d3-5d3d91a8be4c' { 'Windows Vista SP2 Starter OEM:COA' } '7fd7e3ea-1a64-4e14-abc6-541992c5ef64' { 'Windows Vista SP2 Ultimate OEM:COA' } 'e9528038-4625-4693-ac4d-43387ec18233' { 'Windows Vista SP2 UltimateN OEM:COA' } '70449d13-fe2e-453e-a19f-68b031ff1a19' { 'Windows Vista SP2 UltimateN OEM:NONSLP' } '1d63ae00-7733-4e46-b0d0-ae0ab81d7638' { 'Server 2008 R2 Datacenter OEM:NONSLP' } 'b41df512-845d-4384-a2d7-ace3f778bff5' { 'Server 2008 R2 Datacenter OEM:SLP' } 'e1f0bb5b-2421-4b7c-81a1-03643106421d' { 'Server 2008 R2 Datacenter retail' } 'c0c97b05-e71a-4fe4-b234-4165f96250f6' { 'Server 2008 R2 Datacenter Retail:TB:Eval' } '7482e61b-c589-4b7f-8ecc-46d455ac3b87' { 'Windows Server 2008 R2 Datacenter' } '4ae528f4-05c3-446e-90ea-a4fbd460b83a' { 'Server 2008 R2 DC and IA64 Volume:MAK (MAK_C)' } '8fe15d04-fc66-40e6-bf34-942481e06fd8' { 'Server 2008 R2 DC and IA64 Volume:CSVLK (KMS_C)' } '862e432e-a461-42cf-b5dd-abc373943a4a' { 'Multipoint Server OEM:NONSLP' } 'db1b36e0-f543-4f4d-8ce6-814fa5dea00d' { 'Multipoint Server OEM:SLP' } '511bf083-7a59-4f5c-b41e-81c97e039fe9' { 'Multipoint Server Retail' } 'f772515c-0e87-48d5-a676-e6962c3e1195' { 'Multipoint Server Volume:GVLK' } 'c74dc7f6-ea35-4bd7-9776-333ab5dddae6' { 'Server 2008 R2 Enterprise OEM:NONSLP' } 'ea36520d-fbfe-4042-acd8-fe926781b615' { 'Server 2008 R2 Enterprise OEM:SLP' } 'b297426d-464d-4af1-abb2-3474aeecb878' { 'Server 2008 R2 Enterprise retail' } '4bcc8879-e699-4159-a810-f829566662ca' { 'Server 2008 R2 Enterprise Retail:TB:Eval' } '620e2b3d-09e7-42fd-802a-17a13652fe7a' { 'Windows Server 2008 R2 Enterprise' } 'c74417bd-f079-42e5-91f0-8f08ec052cba' { 'Server 2008 R2 Enterprise IA64 OEM:NONSLP' } 'eea69412-4907-4185-8322-2ce1be6912a3' { 'Server 2008 R2 Enterprise IA64 OEM:SLP' } '30e54fa6-ae6a-4523-b264-d7978e977d96' { 'Server 2008 R2 Enterprise IA64 retail' } '63192b0b-20c9-49dc-9936-0a33d67f8c3a' { 'Server 2008 R2 Enterprise IA64 Retail:TB:Eval' } '8a26851c-1c7e-48d3-a687-fbca9b9ac16b' { 'Server 2008 R2 Enterprise IA64 Volume:GVLK' } '683b8d26-5471-4212-82fb-8148427ca281' { 'Server 2008 R2 Compute Cluster (HPC) OEM:COA' } '23af83d3-8520-491e-88fb-3f6d7ab3783a' { 'Server 2008 R2 Compute Cluster (HPC) OEM:NONSLP' } 'b4d69df9-cdc5-48aa-8b88-dcadf9b558ba' { 'Server 2008 R2 Compute Cluster (HPC) OEM:SLP' } '855d35f4-a334-46e7-b7d7-23fc1a22be65' { 'Server 2008 R2 Compute Cluster (HPC) retail' } 'cda18cf3-c196-46ad-b289-60c072869994' { 'Windows Server 2008 R2 ComputerCluster' } '171ad3f3-e1f3-41e1-9d6f-0a0b9b6aba3f' { 'Windows Small Business Server 2011 Essentials ServerSolution Retail' } '6d47464d-e43d-4228-b051-fddd47fd403f' { 'Server 2008 R2 Standard OEM:NONSLP' } '9a159de8-d114-41d7-a5bf-d3574edb42fa' { 'Server 2008 R2 Standard OEM:NONSLP (GEO locked to CH)' } 'a60c85a9-7eff-4690-8aa1-010ddf5d38f0' { 'Server 2008 R2 Standard OEM:SLP' } '039998e3-3ef5-4adf-b758-d25fa0128ff4' { 'Server 2008 R2 Standard Retail' } 'f14c8ee3-560d-441e-aee1-325c2e9ae74a' { 'Server 2008 R2 Standard Retail (GEO locked to CH)' } 'da71774d-b2c9-4c42-bb7b-a66365d5abb2' { 'Server 2008 R2 Standard Retail:TB:Eval' } '68531fb9-5511-4989-97be-d11a0f55633f' { 'Windows Server 2008 R2 Standard' } 'c837408d-3762-4dea-a4d7-6dba48f6c305' { 'Server 2008 RC Standard OEM:SLP' } '6a4bd364-4b60-4856-a727-efb59d94348e' { 'Server 2008 R2 Std and Ent Volume:MAK (MAK_B)' } 'c99b641f-c4ea-4e63-bec3-5ed2ccd0f357' { 'Server 2008 R2 Std and Ent Volume:CSVLK (KMS_B)' } '280f12e2-5412-4482-9004-b4c90a66e829' { 'Server 2008 R2 Web OEM:NONSLP' } '4d3ae49a-0bea-4cea-9a9f-a6fbdf699b28' { 'Server 2008 R2 Web OEM:SLP' } '1393c801-f389-4c5b-bb4e-bd7d3478ea60' { 'Server 2008 R2 Web retail' } '1bc49a17-9894-49c8-ba63-1b52852556a3' { 'Server 2008 R2 Web Retail:TB:Eval' } 'a78b8bd9-8017-4df5-b86a-09f756affa7c' { 'Windows Server 2008 R2 Web' } 'f73d1bcd-0802-47dd-b2d9-81bf2f8c0744' { 'Server 2008 R2 Web and CC Volume:CSVLK (KMS_A)' } '506fb694-7202-4d00-9069-f696ebf921f2' { 'Server 2008 R2 Web and CC Volume:MAK (MAK_A)' } 'fe0e7d01-192a-47c1-858e-95df10baa491' { 'Server 2008 R2 Foundation OEM:NONSLP' } 'e3913f37-c311-4a0d-b603-ad3d61be9e39' { 'Server 2008 R2 Foundation OEM:NONSLP (GEO locked to CH)' } '0e0d125d-173f-4752-8c1b-ced62118977f' { 'Server 2008 R2 Foundation OEM:SLP' } '2b1690e6-1066-4b17-883f-4f759db1a7dd' { 'Server 2008 R2 Foundation OEM:SLP' } '402ffdaa-6813-424a-b07b-c31f8d24054e' { 'Server 2008 R2 Foundation Retail' } '0cbae191-195f-43b4-b53c-368b61652b74' { 'Server 2008 R2 Foundation Retail (GEO locked to CH)' } 'b793ff2d-9d80-407c-b521-85111c51028c' { 'Windows 7 Enterprise Retail' } '8dffd6e4-0497-4c35-b7d7-e47cf464cf30' { 'Windows 7 Enterprise Retail:TB:Eval' } 'ae2ee509-1b34-41c0-acb7-6d4650168915' { 'Windows 7 Enterprise' } '6eb02c88-98e6-4623-8edd-59fed8fb5b11' { 'Windows 7 EnterpriseE Retail' } 'e16f11e3-ba84-48cb-af72-a7a0deafe0e8' { 'Windows 7 EnterpriseE Retail:TB:Eval' } '46bbed08-9c7b-48fc-a614-95250573f4ea' { 'Windows 7 EnterpriseE Volume:GVLK' } '33eda5ad-ad65-4507-b585-abcac3cabae5' { 'Windows 7 EnterpriseN Retail' } 'f3ce0211-9843-4d7e-9e38-a55ae0cd3c33' { 'Windows 7 EnterpriseN Retail:TB:Eval' } '1cb6d605-11b3-4e14-bb30-da91c8e3983a' { 'Windows 7 EnterpriseN' } 'b1184982-a958-4643-8e66-445fa0f92832' { 'Windows 7 Home Basic Retail' } '7f62a589-fc1c-4fc7-817b-90d565727ddb' { 'Windows 7 HomeBasicE Retail' } 'd1b53b3d-38eb-46a7-9afa-47271d93aec4' { 'Windows 7 Home BasicN Retail' } '2e7d060d-4714-40f2-9896-1e4f15b612ad' { 'Windows 7 Home Premium Retail' } '8d1786df-c824-49e4-8353-0525ee16c980' { 'Windows 7 HomePremiumE Retail' } '8d2813f4-654e-4aad-9786-dba84bfe33d6' { 'Windows 7 Home PremiumN Retail' } '4a8149bb-7d61-49f4-8822-82c7bf88d64b' { 'Windows 7 OCUR Retail' } 'e838d943-63ed-4a0b-9fb1-47152908acc9' { 'Windows 7 Professional Retail' } 'b92e9980-b9d5-4821-9c94-140f632f6312' { 'Windows 7 Professional' } '36c9cf6d-4b2b-4311-8552-e36d8c601781' { 'Windows 7 ProfessionalE Retail' } '5a041529-fef8-4d07-b06f-b59b573b32d2' { 'Windows 7 ProfessionalE Volume:GVLK' } '0bdb55f8-df23-41e9-bd76-a3b9cc40d7ca' { 'Windows 7 ProfessionalN Retail' } '54a09a0d-d57b-4c10-8b69-a842d6590ad5' { 'Windows 7 ProfessionalN' } '71c7c851-1863-4232-8ac2-cdd7f5e45dae' { 'Windows 7 Starter Retail' } '07a012bd-c5b1-483a-a3ac-20da32d44dec' { 'Windows 7 StarterE Retail' } '51ba3bd9-c1cd-42b5-ada3-22451bc151f4' { 'Windows 7 StarterN Retail' } 'ac96e1a8-6cc4-4310-a4ff-332ce77fb5b8' { 'Windows 7 Ultimate Retail' } '520130ee-efd4-4de0-99e0-565a86d7aeff' { 'Windows 7 UltimateE Retail' } 'fa3d0658-67f4-4a26-ba57-3fc6f39861f1' { 'Windows 7 UltimateN Retail' } 'd188820a-cb63-4bad-a9a2-40b843ee23b7' { 'Windows 7 All Volume Editions Volume:CSVLK' } '6c7afc31-950c-4fa8-93ee-3e880aa97e5d' { 'Windows 7 Home Basic Retail' } '88e1193d-e891-41c4-b517-3a305a013695' { 'Windows 7 HomeBasicE Retail' } 'ca400347-52d3-45a2-a333-f7d4c33b6af5' { 'Windows 7 Home BasicN Retail' } '9ab82e0c-ffc9-4107-baa1-c65a8bd3ccc3' { 'Windows 7 Home Premium OEM:NONSLP' } '3b965dfc-31d9-4903-886f-873a0382776c' { 'Windows 7 Home Premium Retail' } '26cd687a-c069-49bd-adba-c622441a2d81' { 'Windows 7 Home PremiumE OEM:NONSLP' } '903e621f-f23c-4ba0-b8de-40c3affff57d' { 'Windows 7 HomePremiumE Retail' } '2143d01a-961c-4d9e-9150-6b5de0011274' { 'Windows 7 Home PremiumN OEM:NONSLP' } 'b68cc682-9531-4b6c-bb5e-202c92a59946' { 'Windows 7 Home PremiumN Retail' } '770bc271-8dc1-467d-b574-73cbacbeccd1' { 'Windows 7 Professional Retail' } '9abf5984-9c16-46f2-ad1e-7fe15931a8dd' { 'Windows 7 All Volume Editions Volume:MAK' } '78c95341-4f01-4e52-808a-e2f90fc56f71' { 'Windows 7 ProfessionalE Retail' } 'c63f22b5-fdaf-4488-aeac-cc19411d0243' { 'Windows 7 ProfessionalN Retail' } '197247fa-8fb7-4a9d-9415-1ba0e14215e8' { 'Windows 7 Starter OEM:NONSLP' } '42d70d37-136a-4eba-9d21-b394a73b7516' { 'Windows 7 StarterE OEM:NONSLP' } 'dd14134a-d56c-4bc0-a2e9-14c462b4295b' { 'Windows 7 StarterN OEM:NONSLP' } 'a0cde89c-3304-4157-b61c-c8ad785d1fad' { 'Windows 7 Ultimate Retail' } '18aa7613-98ff-4820-9b69-1f69105ebba8' { 'Windows 7 UltimateE Retail' } 'dca01e19-01f5-4ce1-98b1-35fb7a323806' { 'Windows 7 UltimateN Retail' } '586bc076-c93d-429a-afe5-a69fbc644e88' { 'Windows 7 Home Premium OEM:NONSLP' } 'bbbb2a8a-aaee-4f56-a237-1e2cdc8039d6' { 'Windows 7 HomePremiumE OEM:NONSLP' } '9f83d90f-a151-4665-ae69-30b3f63ec659' { 'Windows 7 Home Premium OEM:NONSLP' } 'f7bc3d0d-ca9d-42ae-83e1-4fa46e0f4979' { 'Windows 7 HomePremiumE OEM:NONSLP' } '358fb95b-0090-44fb-883a-75734e060c30' { 'Windows 7 Enterprise OEM:SLP' } '07328a5d-8dee-4d3b-9974-8a6ad6ab6892' { 'Windows 7 EnterpriseN OEM:SLP' } '774d5df6-d8dd-4d92-98bc-58825849d249' { 'Windows 7 Home Basic OEM:NONSLP' } 'bde0d4a5-2f2a-4bff-9d75-4a497d2d0019' { 'Windows 7 Home Basic OEM:SLP' } 'f1fe0f5e-7a50-4853-984d-9abd2dc05b6e' { 'Windows 7 HomeBasicE OEM:NONSLP' } '5757ccd7-4e7d-4723-a9a1-c5315263460d' { 'Windows 7 HomeBasicE OEM:SLP' } '0fa327c5-2ba7-4090-ade8-0ec3eeda3242' { 'Windows 7 Home BasicN OEM:NONSLP' } '89cc87b2-d442-4c79-99b2-addc5abcf2a5' { 'Windows 7 Home BasicN OEM:SLP' } 'd2c04e90-c3dd-4260-b0f3-f845f5d27d64' { 'Windows 7 Home Premium OEM:SLP' } '5fa5bf1b-c208-491c-846f-4faa3c98767a' { 'Windows 7 HomePremiumE OEM:SLP' } '05d94d71-4ba4-427c-98f2-0e058edfe9af' { 'Windows 7 Home PremiumN OEM:SLP' } '90a61a0d-0b76-4bf1-a8b8-89061855a4c9' { 'Windows 7 Professional OEM:NONSLP' } '50e329f7-a5fa-46b2-85fd-f224e5da7764' { 'Windows 7 Professional OEM:SLP' } '0af59e82-53c5-4564-87cd-ddad65d5509f' { 'Windows 7 ProfessionalE OEM:NONSLP' } '61944438-77f3-46d0-b434-0f340e01434c' { 'Windows 7 ProfessionalE OEM:SLP' } 'fc3d428b-656b-4129-8274-700966289991' { 'Windows 7 ProfessionalN OEM:NONSLP' } 'd932ba14-a8cd-4368-aa5a-90d6613afea7' { 'Windows 7 ProfessionalN OEM:SLP' } '8be4a481-9b5c-4588-a5ec-5dad4b1f15da' { 'Windows 7 Starter OEM:SLP' } '24371aee-296d-4398-940d-7612d0def8e2' { 'Windows 7 StarterE OEM:SLP' } '56f31729-c7c2-46b1-88a9-b2ebde10a7b1' { 'Windows 7 StarterN OEM:SLP' } '7cfd4696-69a9-4af7-af36-ff3d12b6b6c8' { 'Windows 7 Ultimate OEM:SLP' } 'bd61de01-6b6a-4756-8103-2978e8c5c980' { 'Windows 7 UltimateE OEM:SLP' } 'b482b078-ed27-4750-9ce9-60da4f575c67' { 'Windows 7 UltimateN OEM:SLP' } 'e120e868-3df2-464a-95a0-b52fa5ada4bf' { 'Windows 7 Professional OEM:NONSLP' } 'ab761468-3ae8-4696-b762-e77f674ac0c1' { 'Windows 7 ProfessionalE OEM:NONSLP' } 'd8e04254-f9a5-4729-ae86-886de6aa907c' { 'Windows 7 Professional OEM:NONSLP' } '0a6eaa31-2181-4266-b7b3-6b6a0dd0af8a' { 'Windows 7 ProfessionalE OEM:NONSLP' } 'cfb3e52c-d707-4861-af51-11b27ee6169c' { 'Windows 7 Ultimate OEM:NONSLP' } '48fae3c8-9656-4147-bc80-5dd08c50d9bc' { 'Windows 7 UltimateE OEM:NONSLP' } '419c2448-cd87-48cd-94d4-7b9af5efd169' { 'Windows 7 UltimateN OEM:NONSLP' } 'c1027486-8ae8-4633-9cf9-9658ed80504d' { 'Windows 7 Professional OEM:COA' } 'b2153262-12db-49d1-969a-9ca6b54cf93c' { 'Windows 7 ProfessionalE OEM:COA' } '61dbe86e-9979-45b4-8607-ae8b56aead36' { 'Windows 7 ProfessionalN OEM:COA' } 'd56863eb-6e59-4f2d-ae01-46322b5fba79' { 'Windows 7 Starter OEM:COA' } '82866d0f-354b-4dfc-bc75-8b925ba514db' { 'Windows 7 StarterE OEM:COA' } 'da22eadd-46dc-4056-a287-f5041c852470' { 'Windows 7 Professional OEM:COA' } '5f56dc78-0853-4465-81ec-88891d9624b0' { 'Windows 7 ProfessionalE OEM:COA' } '276d6155-27e2-437a-95f9-f1251168c970' { 'Windows 7 Starter OEM:COA' } '7438e626-0d47-4b81-83db-eeff76921fd7' { 'Windows 7 StarterE OEM:COA' } '1c48e75a-71d5-4871-b6f2-bc407894445b' { 'Windows 7 StarterN OEM:COA' } '022a1afb-b893-4190-92c3-8f69a49839fb' { 'Windows 7 Ultimate OEM:COA' } '2e5cfead-eb89-4b28-87ba-a85917b1b95a' { 'Windows 7 UltimateE OEM:COA' } '9b6938df-398f-407d-962f-d99b2e1d5d1b' { 'Windows 7 UltimateN OEM:COA' } '9821c9cb-288b-4c98-96f9-adc75a15eaf4' { 'Windows 7 Home Basic OEM:COA' } '1d90c7cc-f3cc-4c2f-9650-7ac451fc73eb' { 'Windows 7 Starter OEM:COA' } '6841f362-8be0-4058-9c13-8f565ef1debb' { 'Windows 7 StarterE OEM:COA' } '25a0d760-2580-4c99-adfb-d57ba93560f5' { 'Windows 7 Home Basic OEM:COA' } 'f91bf45e-af5f-495a-8cab-5578e1c44da1' { 'Windows 7 HomeBasicE OEM:COA' } 'd63316d0-1b6c-48e5-8db9-32b4d83fc7a0' { 'Windows 7 Home BasicN OEM:COA' } '6a7d5d8a-92af-4e6a-af4b-8fddaec800e5' { 'Windows 7 Home Premium OEM:COA' } 'd880a111-2ba6-4838-9553-3da0f31d8eb5' { 'Windows 7 HomePremiumE OEM:COA' } '01039663-ab8e-4d11-ba6c-cb4dacb2d13e' { 'Windows 7 Home PremiumN OEM:COA' } '9dee7406-49c2-43f2-b479-09bc4d5c4399' { 'Windows 7 Starter OEM:COA' } '5e017a8a-f3f9-4167-b1bd-ba3e236a4d8f' { 'Windows 7 Home Premium OEM:COA' } 'cab94894-574c-4ace-8b83-c89d121fda53' { 'Windows 7 HomePremiumE OEM:COA' } '01f5fc37-a99e-45c5-b65e-d762f3518ead' { 'Windows 7 Home Premium OEM:COA' } '524e0c34-73ce-4198-9878-a53951c6f6b1' { 'Windows 7 HomePremiumE OEM:COA' } '489b53ab-7ef4-4bed-a7fb-2099ff4ae75d' { 'Digital License SQLSvr Bsnss Intelligence 2012 DLA #13 Rtl' } '2fe1f28d-a399-459e-99e6-427ab1c5628e' { 'Digital License SQLSvr Bsnss Intelligence 2012 DLA #14 VL:GVLK' } '9c38cd01-2cb2-497a-bcf1-835d4fcde612' { 'Digital License SQLSvr Bsnss Intelligence 2012 DLA #15 OEM:NONSLP' } '4e91c005-6269-462a-968e-1d27ab599041' { 'Digital License SQLSvr Bsnss Intelligence 2014 DLA 14 Retail' } 'e037b58f-d6fd-4888-9659-e38c65c27540' { 'Digital License SQLSvr Bsnss Intelligence 2014 DLA 15 Retail' } 'f38639a4-e44e-4435-b0d5-e0845457aeac' { 'Digital License SQLSvr Bsnss Intelligence 2014 DLA 15 VL GVLK' } 'f9f6f415-6f7c-46e3-93db-bbcd1fc8ad22' { 'Digital License SQLSvr Bsnss Intelligence 2014 DLA 16 OEM NONSLP' } '76b74c0c-f17b-4047-b194-ec2aeb4938ce' { 'Digital License SQLSvr Bsnss Intelligence 2014 DLA 17 Retail' } 'b1787d41-7354-436f-aaa0-e211e822b3a4' { 'Digital License SQL Svr Developer Edtn 2012 DLA #4 Rtl' } '96cb4287-a8fc-4b40-9f63-9c5fdeddb334' { 'Digital License SQL Svr Developer Edtn 2012 DLA #5 VL:GVLK' } 'b52edec0-9fcd-409c-8976-63817cde2e5e' { 'Digital License SQL Svr Developer Edtn 2014 DLA 4 Retail' } 'f93aeb35-6914-4ecf-a7d1-d2b85ae4c970' { 'Digital License SQL Svr Developer Edtn 2014 DLA 5 VL GVLK' } '2b28d3cd-b3f5-45d9-8962-41b4f976b8e0' { 'Digital License SQL Svr Developer Edtn 2014 DLA 6 Retail' } 'b1a674ad-286d-4dcb-9a15-0bc0079ac564' { 'Digital License SQL Svr Enterprise Edtn 2012 DLA #1 Rtl' } 'e25f25f5-b67b-40f4-b2fc-23e838512c43' { 'Digital License SQL Svr Enterprise Edtn 2012 DLA #11 Rtl' } 'c9787455-e322-4ee7-84f9-6584ac3bd9f6' { 'Digital License SQL Svr Enterprise Edtn 2012 DLA #2 VL:GVLK' } 'fa2c3e3f-9423-4c39-a96b-f8c13cb572dd' { 'Digital License SQL Svr Enterprise Edtn 2012 DLA #3 OEM:NONSLP' } 'd5f4662f-6678-4263-a30c-af4d1580e85e' { 'Digital License SQL Svr Enterprise Edtn 2014 DLA 1 VL GVLK' } '84a14567-d550-4bc1-a851-38a76e24ca33' { 'Digital License SQL Svr Enterprise Edtn 2014 DLA 12 Retail' } '99e351f3-781e-4b26-9fe4-46347603dfbf' { 'Digital License SQL Svr Enterprise Edtn 2014 DLA 18 Retail' } '1583f29d-c785-409b-b709-6dc8ba9ae316' { 'Digital License SQL Svr Enterprise Edtn 2014 DLA 19 OEM NOSLP' } 'db73a6bc-8776-49e3-b9f8-aa1ff0d98435' { 'Exchange Server 2013 Enterprise Volume:GVLK' } 'f4d1eec6-76d4-4b91-aef7-10b7cf7ef2cb' { 'Exchange Server 2013 Enterprise Volume:GVLK' } 'F149BC3D-D55A-482A-964B-C75A7D67B382' { 'Exchange Server 2013 Enterprise Volume:GVLK' } 'fa251c2a-0d64-44a9-bfc5-5539a175f306' { 'Digital License SQL Svr Ent Core 2012 DLA 16:VLGVLK' } 'b91e007c-4161-4370-af83-761a5665cbde' { 'Digital License SQL Svr Ent Core 2012 DLA 17:Rtl' } '678098f2-2dd4-4d98-948b-d7f1fd3bf454' { 'Digital License SQL Svr Ent Core 2012 DLA 18:OEMSLP' } '591c2e3d-2656-474b-b216-71e82f19d2c5' { 'Digital License SQL Svr Ent Core 2014 DLA 2 VL GVLK' } 'ccad730c-7da4-4582-82f3-3d50117c2f01' { 'Digital License SQL Svr Ent Core 2014 DLA 21 Retail' } '2aada3db-2bf2-46f0-ae65-17e99b924ea5' { 'Digital License SQL Svr Ent Core 2014 DLA 3 OEM NONSLP' } 'a40c3047-54c3-4bf9-8f09-fb7146cfcb02' { 'WinNext Beta Enterprise;EnterpriseN;Professional;ProfessionalN;Education;EducationN;ProfessionalS;ProfessionalSN;EnterpriseS;EnterpriseSN Volume:CSVLK' } 'eadc1a4c-f47e-4469-b76d-e9b16c1ee263' { 'Exchange Server 2013 Enterprise_GER Volume:GVLK' } '01BEB5F2-A6C5-47B5-A6B5-26942519DA06' { 'Exchange Server 2013 Enterprise_GER Volume:GVLK' } 'FD0963D6-D848-43E3-BEBA-1BCFB1077700' { 'Exchange Server 2013 Enterprise_GER Volume:GVLK' } '810e1800-acc1-496a-a252-ffcaf1ead0fb' { 'Digital License Visual Studio Express 2013 DLA Retail 13' } '6c5dba02-bdef-4a00-bd46-94fd8107b093' { 'Digital License Visual Studio Express 2013 DLA Retail 14' } '879510c2-a474-4e59-8e93-4ba0925127d6' { 'Digital License Visual Studio Express 2013 DLA Retail 15' } 'ee5def05-86d9-4c43-8798-65baa2ce2cbb' { 'Digital License Visual Studio Express 2013 DLA Retail 16' } 'd87932eb-6647-402c-b054-a4bae5c2d274' { 'Digital License Visual Studio Express 2013 DLA Retail 10' } '57eebb0a-8da0-4fae-8911-6de28882c9f8' { 'Digital License Visual Studio Express 2013 DLA Retail 11' } '566c41d9-672e-4a73-bb48-bf5cf3eb4d57' { 'Digital License Visual Studio Express 2013 DLA Retail 12' } 'e60f2d53-4a21-4413-b66b-14ae4a9c3a38' { 'Digital License Visual Studio Express 2013 DLA Retail 9' } '08371569-74c5-418c-9914-7c662192cfca' { 'VS Dev11 RTM Express for Web Retail' } '17533ffb-4f43-4210-a3f2-d9b4dafd44e2' { 'VS Dev11 RTM Express for Web Retail' } 'a4bb8265-26e3-44bb-a53a-b39e02b8b4b0' { 'VS Dev11 RTM Express for Web Retail' } 'c41e3fa4-fb4c-4e0a-a0b0-a43360921a36' { 'VS Dev11 RTM Express for Web Retail' } '455d4577-4f5e-44bd-9e02-82fcaccfb5aa' { 'Digital License Visual Studio Express 2013 DLA Retail 5' } 'b4f31246-7ad6-46c4-8cb4-69318d580cb4' { 'Digital License Visual Studio Express 2013 DLA Retail 6' } 'e357aee0-2e76-4109-9dc1-505a38769acc' { 'Digital License Visual Studio Express 2013 DLA Retail 7' } 'aa93f842-9be3-421d-b16f-58c00471d88f' { 'Digital License Visual Studio Express 2013 DLA Retail 8' } '07547456-b9c7-4c1a-bfb2-2e4f6ea1b910' { 'VS Dev11 RTM Express for Windows Retail' } '4e6f6164-b499-4b78-a8f8-cef0718400c3' { 'VS Dev11 RTM Express for Windows Retail' } '9964b447-908e-4ce7-b719-411b8d758f74' { 'VS Dev11 RTM Express for Windows Retail' } 'e4d8d84c-de56-468d-90b5-de3982713f68' { 'VS Dev11 RTM Express for Windows Retail' } '21b721bc-3fa1-4cc5-bb97-6afb561d06d4' { 'VS Dev11 RTM Express for Windows Phone Retail' } '7cb2a284-c500-465b-aa85-36c6632cccee' { 'VS Dev11 RTM Express for Windows Phone Retail' } '82780c12-dc28-4042-84b1-117fbad68228' { 'VS Dev11 RTM Express for Windows Phone Retail' } 'fa0993be-3e5c-44ef-8732-ce014f281734' { 'VS Dev11 RTM Express for Windows Phone Retail' } '5b240fe1-2813-46f3-9391-8031ac8c6074' { 'Digital License Visual Studio Pro 2013 DLA Retail 62' } '08b9518c-ecf9-413b-9cc9-a4f563460a3f' { 'Digital License Visual Studio Pro 2013 DLA Retail 63' } '82e633ab-8bad-4352-aa30-296ffd4cdab0' { 'Digital License Visual Studio Pro 2013 DLA Retail 64' } '54b1b1d8-5a25-4bfe-86fa-10182efbff1a' { 'Digital License Visual Studio Pro 2013 DLA Retail 65' } '2f565f55-3744-4dd6-b09d-ecee0e81b453' { 'Digital License Visual Studio Pro 2013 DLA Volume:GVLK 66' } '15bd2fc1-fe74-4317-8919-af7455a0fbea' { 'Digital License Visual Studio Pro 2013 DLA Retail 67' } '1c8fa2bc-8557-4437-8876-338b3aa139cb' { 'Digital License Visual Studio Pro 2013 DLA Retail 68' } 'c52c3c44-8b6c-4905-ac6f-b17ec8283b45' { 'Digital License Visual Studio Pro 2013 DLA Retail 69' } 'b4f77e4b-01aa-42d8-a9ff-21a32f08328d' { 'Digital License Visual Studio Pro 2013 DLA Retail 70' } 'c6b5595c-ba99-4a77-8433-f1133b2da767' { 'Digital License Visual Studio Pro 2013 DLA Volume:GVLK 71' } 'ba109ed2-25ef-40c7-ba47-d3b8906c3457' { 'Digital License Visual Studio Pro 2013 DLA Retail 72' } '89b2710e-1dbf-44c8-9e45-c0d74a3aefd6' { 'Digital License Visual Studio Pro 2013 DLA Retail 73' } 'e749908c-36be-4487-a649-d051edd58b63' { 'Digital License Visual Studio Pro 2013 DLA Retail 74' } '81f11d91-29c5-409b-af31-b29d7311ab99' { 'Digital License Visual Studio Pro 2013 DLA Retail 75' } 'e57148da-97df-4a28-af6d-9b570a8562c1' { 'Digital License Visual Studio Pro 2013 DLA Volume:GVLK 76' } '21b48ea2-ba74-49c7-a627-b707ee694f28' { 'Exchange Server 2013 Hybrid Volume:GVLK' } '3b8db803-95d3-4257-94cd-1e2e12bce1a4' { 'Exchange Server 2013 Hybrid Volume:GVLK' } '327C6E89-97A1-4441-AD56-63B801C8C542' { 'Exchange Server 2013 Hybrid Volume:GVLK' } '49982083-024f-45e2-86f5-efbe57720be9' { 'Digital License Visual Studio Pro 2013 DLA Retail 3' } '3806b7dc-c775-4a04-9fde-d10fd0fa979c' { 'Digital License Visual Studio Pro 2013 DLA Retail 4' } '36fd8408-c20c-4d2c-bfe2-d60fc954d2a2' { 'VS Dev11 RTM Integrated Shell Retail' } 'f4651a6c-9ccf-4f20-99c7-1d8777ddb4d5' { 'VS Dev11 RTM Integrated Shell Retail' } '20eaa32b-2a93-4855-936f-ab9b2fef2209' { 'Digital License Visual Studio Pro 2013 DLA Retail 1' } '5e923554-71e6-4e4b-a64d-36924f5b79e0' { 'Digital License Visual Studio Pro 2013 DLA Retail 2' } '8e83b7ad-a791-4bb7-9335-fc9bdaee1936' { 'VS Dev11 RTM Isolated Shell Retail' } 'b2466f60-d55e-4c97-aafa-48eb7ec46715' { 'VS Dev11 RTM Isolated Shell Retail' } '556fed1c-2d07-479e-be32-27000c7f786a' { 'CRM 2011 Online Svr Retail' } '21966c3f-c4cb-44c5-9e7e-17017074c739' { 'Digital License VS Prem w/MSDN Retail 2013 DLA Retail 35' } '03e9ed73-b7b4-4fea-900f-2e4a25faad55' { 'Digital License VS Premium 2013 DLA Retail 33' } 'e87465a0-b958-4a0c-b87b-71cec95142d8' { 'Digital License VS Premium 2013 DLA Retail 34' } '90e72f00-d31d-40f6-90e4-70dfb40992aa' { 'Digital License VS Premium 2013 DLA Retail 38' } '483dba54-cb70-4520-9dc4-aa9f62032cff' { 'Digital License VS Premium w/MSDN 2013 DLA Retail 36' } '6d3cd060-5bd2-4dca-9612-d8b89946c63b' { 'Digital License VS Premium w/MSDN 2013 DLA Volume:GVLK 37' } '0e434c79-8f67-409c-afc6-ca726c54b0e0' { 'VS Dev11 RTM Premium Retail' } '1813ee9a-c0ac-4aeb-97e8-f019646cc821' { 'VS Dev11 RTM Premium Retail' } '1eb9ea40-396d-4183-8612-c3fb5c02e044' { 'VS Dev11 RTM Premium Retail' } '79f5fec9-5dfc-4b6e-a5fb-ab49e5b6559e' { 'VS Dev11 RTM Premium Retail' } 'a3eeb867-7d5a-48c2-b9d7-63c6306b2100' { 'VS Dev11 RTM Premium Retail' } '6aa7e39d-598f-4cd3-86b9-d3d97e70b519' { 'VS Dev11 RTM Premium Volume:GVLK' } '1534b44e-5613-496d-8e0a-1f97508a5073' { 'Digital License Visual Studio Pro 2013 DLA Retail 17' } 'a9a255d7-aa3c-4991-bb00-6340b339fa7d' { 'Digital License Visual Studio Pro 2013 DLA Retail 18' } '505e22df-1ac8-4bae-8d66-4ca82bc5b320' { 'Digital License Visual Studio Pro 2013 DLA Retail 20' } 'c46cab8d-1f77-43a0-a451-7f95202716c8' { 'Digital License Visual Studio Pro 2013 DLA Retail 26' } '6dae4f5f-74c1-45f2-8893-edb786379b77' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 21' } '3981adad-8e9e-4cc8-8984-ff1306ec2883' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 22' } '3d2b9c1f-518f-457f-be34-ab2d6c970b19' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 23' } '36fd854d-2bc2-4960-b171-d8ae5b642e8d' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 24' } '3c3604b3-65f6-41ec-9715-e022c59b9310' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Volume:GVLK 25' } '18aa3a5c-3266-4947-b2ba-3a6187ae440b' { 'Digital License VS Pro w/MSDN Retail 2013 DLA Retail 19' } '23688bae-4a87-493d-a2da-dda932345c61' { 'VS Dev11 RTM Professional Retail' } '33527d01-b9ab-405f-ade2-274af5eccbf9' { 'VS Dev11 RTM Professional Retail' } '393ae27f-38d3-49c1-9421-e202ebb9bda0' { 'VS Dev11 RTM Professional Retail' } '4c61c247-dc60-4650-bfb6-dafaf53a5f60' { 'VS Dev11 RTM Professional Retail' } '55a96cf9-716e-47ff-a293-a1861d6c9770' { 'VS Dev11 RTM Professional Retail' } '5c272f72-d581-4852-b8c6-a14b9a445a89' { 'VS Dev11 RTM Professional Retail' } '73f5b3bf-e811-41c4-9e31-1b1c4556f046' { 'VS Dev11 RTM Professional Retail' } '74ab3043-4093-4654-a5d5-928355ccfdb5' { 'VS Dev11 RTM Professional Retail' } '79dfccd1-4fb5-425f-b33a-3c370b1e8f17' { 'VS Dev11 RTM Professional Retail' } '976f5d7b-d133-4edd-b72a-95b0d5773c38' { 'VS Dev11 RTM Professional Retail' } '03e54764-5312-457a-ab9f-e311bfab86c1' { 'VS Dev11 RTM Professional Volume:GVLK' } '858bc4af-18fe-41ce-939c-6ca3fd0b38c9' { 'CRM 2011 Server Retail' } 'bfaab35d-8747-4e8e-8c80-a170c7e711aa' { 'CRM 2011 Server Retail' } '15443741-95f0-4256-a968-13433dadd151' { 'CRM 2011 Server Volume:GVLK' } 'e2405f43-efa5-44a3-8749-9e7e1aee9a0e' { 'CRM 2011 Service Provider Volume:GVLK' } '623d3ed3-cd92-4f80-ae18-6e91cb17219d' { 'Digital License SQL Svr Standard Edtn 2012 DLA #12 Rtl' } 'a7796c0f-6936-4f98-95f0-075393c8ad73' { 'Digital License SQL Svr Standard Edtn 2012 DLA #6 Rtl' } '6c977196-6bdc-4a84-985c-def4123cb9a6' { 'Digital License SQL Svr Standard Edtn 2012 DLA #7 VL:GVLK' } 'ffbac3d8-b8bf-4d03-879d-f510d9243265' { 'Digital License SQL Svr Standard Edtn 2012 DLA #8 OEM:NONSLP' } '77953e8a-d8cf-4a65-a71a-e1a3ad5d7d27' { 'Digital License SQL Svr Standard Edtn 2014 DLA 10 Retail' } '726e6b97-3570-42e6-aeb2-1ff8cb9f4f48' { 'Digital License SQL Svr Standard Edtn 2014 DLA 13 Retail' } 'd20f1ab2-93ea-44af-89d1-a56b0e3677fb' { 'Digital License SQL Svr Standard Edtn 2014 DLA 7 VL GVLK' } '444ff436-f0e6-4f58-8793-e736eb569f7b' { 'Digital License SQL Svr Standard Edtn 2014 DLA 8 Retail' } 'b1353f0c-56fb-4da4-9254-5b5f5f21f10f' { 'Digital License SQL Svr Standard Edtn 2014 DLA 9 OEM NONSLP' } '448516f0-1f1d-48a8-95d9-c955b86b2ce1' { 'Exchange Server 2013 Standard Volume:GVLK' } '4b1a7f4f-74bc-481d-8bab-ba129fedbe02' { 'Exchange Server 2013 Standard Volume:GVLK' } 'DCA32113-0526-4688-8137-55AEF56FAE0D' { 'Exchange Server 2013 Standard Volume:GVLK' } '341adbdd-bf38-497d-9676-fc981f6ccc70' { 'Exchange Server 2013 Standard_GER Volume:GVLK' } '473f7ed3-d685-47c4-800b-68c40efd38d9' { 'Exchange Server 2013 Standard_GER Volume:GVLK' } 'CFE8181E-75EE-4843-B1B0-F0DEFFDA6925' { 'Exchange Server 2013 Standard_GER Volume:GVLK' } '572c27ab-e70e-4233-9bd9-ac1a87be0555' { 'Digital License VS Team Explrer Everywhr 2013 DLA Retail 47' } 'c3ebd9d6-38f7-47cd-95c8-ef8c822d92d8' { 'Digital License VS Team Explrer Everywhr 2013 DLA Retail 48' } '4fdd26e1-8b86-4484-9bda-2825584d7a5b' { 'VS Dev11 RTM Team Explorer Retail' } 'f3fece98-f5f4-4695-9692-9f90a4b4af14' { 'VS Dev11 RTM Team Explorer Retail' } '39c8e742-81aa-442f-b347-178c719d9f71' { 'Digital License VS Team Explrer Everywhr 2013 DLA Retail 45' } '8ea8b385-5597-45e3-a9aa-17ae0c6af87c' { 'Digital License VS Team Explrer Everywhr 2013 DLA Retail 46' } 'ecbb7d5f-5204-41fb-ac71-ea7f4c6f83b5' { 'VS Dev11 RTM Team Explorer Everywhere Retail' } 'ffa28443-c03b-4090-95c5-a6643f467996' { 'VS Dev11 RTM Team Explorer Everywhere Retail' } '2ebc9023-9ed9-4f4f-9f60-0b9d222ad81d' { 'Digital License VS Team Foundation Svr 2013 DLA Retail 49' } '1edb5f37-48ea-480f-9598-1fffce55b73f' { 'Digital License VS Team Foundation Svr 2013 DLA Retail 50' } '1dc8c154-b595-4b2b-8fef-46168e37e1c3' { 'Digital License VS Team Foundation Svr 2013 DLA Retail 51' } '5a362711-ec83-4076-9e99-81854690b1ac' { 'Digital License VS Team Foundation Svr 2013 DLA Retail 52' } 'e1527afe-b1e1-4ac7-b0d1-e5964fcd3ed3' { 'Digital License VS Team Foundation Svr 2013 DLA Retail 54' } '10c2b32c-2a02-4ebf-9ee6-3862dbe46296' { 'Digital License VS Team Foundation Svr 2013 DLA Retail 55' } 'c3066dcc-4047-4796-b754-9972971855f7' { 'Digital License VS Team Foundation Svr 2013 DLA Volume:GVLK 53' } '0d1aafb9-8c9f-4927-9a6c-45327a661e1d' { 'VS Dev11 RTM Team Foundation Server Retail' } '1d40ea94-1c4f-488f-92be-0667480daa33' { 'VS Dev11 RTM Team Foundation Server Retail' } '65d89a58-d5f9-4197-b622-5fdf6ab28ada' { 'VS Dev11 RTM Team Foundation Server Retail' } 'f29e675e-7b2f-4c3a-9dab-41724de63a3f' { 'VS Dev11 RTM Team Foundation Server Retail' } 'f886680b-258c-4aa6-91ac-183de7be19bd' { 'VS Dev11 RTM Team Foundation Server Retail' } '9abfa09c-a0a6-46a3-b5f8-473da0348f08' { 'VS Dev11 RTM Team Foundation Server Volume:GVLK' } '1c7c6dc3-dc46-4a89-bf6c-0f447fd06642' { 'VS Dev11 RTM Team Foundation Server Express Retail' } '66858fe3-f7a8-4652-8806-b8086a085264' { 'VS Dev11 RTM Team Foundation Server Express Retail' } '7485f262-8b07-499a-a824-f4ae1140713f' { 'VS Dev11 RTM Team Foundation Server Express Retail' } '9d87d2b1-4792-4845-9d55-3241fbf03f59' { 'VS Dev11 RTM Team Foundation Server Express Retail' } '6d4c8ba8-e561-4aad-86d7-b260ea74b200' { 'Digital License Visual Studio Test Agent 2013 DLA Retail 58' } '938665a0-3029-48d8-bcf4-81f54ad9ea56' { 'Digital License Visual Studio Test Agent 2013 DLA Retail 59' } '6cefac0a-e165-4c78-896b-07ca9bb1f018' { 'VS Dev11 RTM Test Agent Retail' } 'd7323986-b7e1-4fa6-82e9-8bef6831b8b9' { 'VS Dev11 RTM Test Agent Retail' } 'b3539787-b385-4c15-9a02-0b5331caf788' { 'Digital License Visual Studio Test Agent 2013 DLA Retail 60' } '329a27e8-1b98-4a4b-bf6d-21d8cb731e51' { 'Digital License Visual Studio Test Agent 2013 DLA Retail 61' } '3c4728cf-cd95-4702-adf0-7a6288a15592' { 'VS Dev11 RTM Test Controller Retail' } 'a476014d-6181-4e5d-a1f1-58e5e1593063' { 'VS Dev11 RTM Test Controller Retail' } 'b40ed483-e079-453b-b1f8-c69aca88624b' { 'Digital License Visual Studio Test Pro 2013 DLA Retail 39' } '62264d94-e274-4a50-8019-df5d4500ed8c' { 'Digital License Visual Studio Test Pro 2013 DLA Retail 40' } '622be40b-5f64-4ed2-9f0a-ec1ab63420db' { 'Digital License Visual Studio Test Pro 2013 DLA Retail 44' } 'aca62bf9-5a5a-4144-b64f-33175e96f8eb' { 'Digital License VS Test Pro w/MSDN 2013 DLA Retail 42' } 'edb0c61b-479a-4d6a-b664-08aba376dce5' { 'Digital License VS Test Pro w/MSDN 2013 DLA Volume:GVLK 43' } 'ded9373c-1a38-428c-8cfe-35be84a3cce9' { 'Digital License VS Test Pro wMSDN Rtl 2013 DLA Retail 41' } '5ec2696a-c74d-4d38-ae36-c67ec5e44032' { 'VS Dev11 RTM Test Professional Retail' } '62172ff1-4c0f-40fc-804b-3b07b04b3d39' { 'VS Dev11 RTM Test Professional Retail' } '936d3e77-e2ac-4430-9389-591afd643f46' { 'VS Dev11 RTM Test Professional Retail' } 'a78101e7-0c09-47dd-ae5d-a8cb39c69552' { 'VS Dev11 RTM Test Professional Retail' } 'bd4324da-8ea5-4601-a72e-6363f9bcc5f1' { 'VS Dev11 RTM Test Professional Retail' } '51fa90f1-d6d7-4628-886a-2f9d4ba32803' { 'VS Dev11 RTM Test Professional Volume:GVLK' } 'd8aec0d0-3911-41b6-897e-54f4dab4fe97' { 'Digital License VS Ultimate 2013 DLA Retail 27' } '30a5e132-1f9e-4aec-a95d-cabbe4017fa1' { 'Digital License VS Ultimate 2013 DLA Retail 28' } '6314dd4d-3e27-4456-820c-943fc741598d' { 'Digital License VS Ultimate 2013 DLA Retail 32' } '61529311-3131-433d-8d98-b46c7aadecd4' { 'Digital License VS Ultimate w/MSDN 2013 DLA Retail 30' } '0c5e3b89-bac5-4f2f-bbc7-778867e447f5' { 'Digital License VS Ultimate w/MSDN 2013 DLA Volume:GVLK 31' } '3f2e2200-1411-489f-82e2-328d11850d2c' { 'Digital License VS Ultimate wMSDN Rtl 2013 DLA Retail 29' } '1a2b565f-cd71-4794-a115-8cea964d78a7' { 'VS Dev11 RTM Ultimate Retail' } '86999c27-1264-4c3b-b311-35274f48d49b' { 'VS Dev11 RTM Ultimate Retail' } '8f03944f-42c5-4cfa-aff6-b3fac950a361' { 'VS Dev11 RTM Ultimate Retail' } 'a220c9d4-7272-4329-a94c-17cef81f3309' { 'VS Dev11 RTM Ultimate Retail' } 'a906bce8-8b01-4b02-b147-df8cde7d2e74' { 'VS Dev11 RTM Ultimate Retail' } '44614c6e-cf70-4931-840b-194a0096e7ee' { 'VS Dev11 RTM Ultimate Volume:GVLK' } '2a2b31a4-4f56-46d0-9761-90243c2cf4ac' { 'Digital License Visual Studio Test Agent 2013 DLA Retail 56' } 'f4c1dcf3-fcd6-4d36-b2fa-9b4b0bca01df' { 'Digital License Visual Studio Test Agent 2013 DLA Retail 57' } '24f9a976-109d-45a8-b3e9-6a449c4d659c' { 'VS Dev11 RTM Visual Studio Agents Retail' } 'e7610c01-6ab8-415b-bc0f-e19e98c8226c' { 'VS Dev11 RTM Visual Studio Agents Retail' } '8bdbab77-bf2a-484a-9d83-edc3f5649fe7' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 77' } 'db484ee6-dd33-471c-9201-c4dc5a52111a' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 78' } '5d77efbd-e9dc-4dad-92ef-813bb95f9566' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 79' } '50379bae-6561-4122-95e3-4a658a147ee8' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 104' } '4e74684f-d122-40d8-bbd5-f249c1dfbe8b' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 105' } '4e73ebf9-eb96-4e33-997c-04d59fd58b3a' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 106' } '2d1ccbe1-abbb-4343-9cd8-5681bde48e94' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 107' } '487a7530-f4bd-4d27-9d2f-050f930e2033' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 108' } 'a153a6e9-1922-45f3-95d3-839d7c248967' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 109' } '47222d85-ef5a-4a94-8252-e4f9e6626f74' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 110' } 'afd06ff5-df0e-4e29-9b20-af0bcaf5dcf7' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 111' } '36e5abe7-1f4b-4e17-af20-bbefbeea3d83' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 112' } '7fcd5dc6-1b1d-4f9f-8c25-5b763c12a9c5' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 113' } '5d9b5858-8e14-4bb7-983b-ae7a40a06297' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 114' } '067d8a32-b9c2-4503-a71e-f8543e79afbc' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 115' } 'e0ada9d1-d065-48f4-acfc-43f1ef251908' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 116' } '0ccb64cf-c28a-409a-9fc8-3e15ad9dacdf' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 117' } 'f75a4829-765c-4bab-9f70-2ed89e09e538' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 118' } '68021b36-4dd0-4f8e-9bba-896e7cc89da0' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 119' } '12b99695-64c6-42f3-8dd8-0f67d8ecf7e5' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 120' } 'd9047cd9-405c-422a-827b-5c680a97f1ff' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 121' } '91fa4277-cfae-4d1a-948a-25dc1c8bff25' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 122' } '2587c423-da84-4896-92bc-d6f50de1830a' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 123' } 'ac1dde27-b671-4026-94be-a932a309aff8' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 124' } '1aa5b947-0f4e-4d66-ada5-d60413497418' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 125' } '1e6f765e-2821-4af9-b036-b345f065dac4' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 126' } '4bfbd722-2fd6-4a7b-8c22-873f425c3cc8' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 127' } 'c1eb21a5-5827-47b2-94b2-8f9250e94f9a' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 128' } 'a22b3419-0d9f-4c52-a173-10974309bb48' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 129' } 'a2562ebd-bc83-43bb-96e4-f4563c60f9aa' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 130' } '48e6f549-381a-4156-a621-8e55618e1cb8' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 131' } '8d65e95b-1530-4c02-88d4-f67ea082fca7' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 132' } 'b7c0a340-7085-4495-8af7-562e33522bf5' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 133' } '5f2dff1a-5114-4651-887d-a4771357dc4b' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 80' } 'cb1596e4-4535-47f2-8067-5de12216aaf1' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 81' } '60cf2897-1348-40d9-87d0-ce8caec5ddeb' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 82' } '7486a9ad-94f9-41ff-a735-fad98e101403' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 134' } 'ff2a04b5-b277-4ff5-866f-ecf7eb928299' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 135' } 'edce0a83-9f0c-4656-9a44-73e50d14ef49' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 136' } '844bda8d-dbbb-46e1-9d9d-00e1d392e5d8' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 83' } 'ae3b5ae8-5bde-48cb-9b9a-a5b5f1c1a2fe' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 84' } '3b33b4fc-5d17-49dd-bfc7-f99e893e7259' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 85' } 'ca8761bf-ee77-4448-873e-a4ecf3d2ae6c' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 86' } '68eff4cd-6098-4d75-8e6f-b6227e5d31bc' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 87' } 'd883acb1-d8bb-429d-b188-6661442469e5' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 88' } 'ae99f2f3-96f1-474e-90f5-8c19883e994d' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 89' } '6d6246bf-bbe0-4a03-9211-07acef081e28' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 90' } 'e87e1930-cf1c-4ba4-82ae-61b7e2a3cb32' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 91' } '5a6e5ebd-1c00-43b3-9fc6-1481af1e77f3' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 92' } '72330a0d-81c1-4f8e-a0ac-b4d4ffe9ecbf' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 93' } 'eb69fd4d-80e8-4726-957a-5b38defcbaf0' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 94' } '4ea5f2cf-fca8-4509-8a28-7179c459cff4' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 95' } '5d535a11-2791-4bca-8771-fd1e33ef809f' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 96' } '4a8d6360-2a17-4ef9-b3ae-9dc18fccd768' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 97' } 'c9383e08-22ea-4f09-a246-7af004114d6b' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 100' } '5ab62112-756a-4494-8103-916680ed1e62' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 98' } '38c8b72e-fb6e-41ca-96d1-425059069aef' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 99' } 'dfa874b0-721a-43b5-a6de-8a7e2df9a859' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 101' } '35081a4d-e79a-4b62-932b-349ec33aa79f' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 102' } '518a22b3-fa5d-4f33-b98d-789fa326ce4f' { 'Digital License Visual Studio Pro w/MSDN 2013 DLA Retail 103' } 'faca9944-736c-4e97-ba57-70174ef11eb2' { 'Digital License SQL Svr Web Ed 2012 DLA #10 OEM:NONSLP' } 'fedf9996-eb01-40b4-829b-30cff37cd0bc' { 'Digital License SQL Svr Web Ed 2012 DLA #9 VL:GVLK' } '301ce392-0ee5-44a8-a461-1fd479709c80' { 'Digital License SQL Svr Web Ed 2014 DLA 11 VL GVLK' } 'b0661f74-53d4-4574-9e8e-4d8b1ef846d8' { 'Digital License SQL Svr Web Ed 2014 DLA 20 OEM NOSLP' } '5610b233-b8f4-4567-8af3-8306f3580370' { 'CRM 2011 Workgroup Retail' } '8776fd64-dfbd-4f52-9fd8-1819465a0fa9' { 'CRM 2011 Workgroup Volume:GVLK' } '1a9f80cb-6f23-4791-b7de-dfeb37e0919c' { 'Windows Embedded POSReady 7 POSReady OEM:COA' } 'c6769ae2-cbd6-4813-b6f7-22fd8fd32f61' { 'Windows Embedded POSReady 7 POSReady OEM:NONSLP' } '93c7415c-3e5d-4dc8-a26c-023e0f8f00a1' { 'Windows Embedded POSReady 7 POSReady OEM:SLP' } '18ad7339-2650-459e-a35b-cbf15b109b32' { 'Windows Embedded POSReady 7 POSReady Retail' } 'd1c316c5-7779-4580-a817-6622d3ccc02d' { 'Windows Embedded POSReady 7 POSReady Retail:TB:Eval' } '3980d3c2-e988-46e3-8e3e-7367c2834920' { 'Windows Embedded POSReady 7 POSReady Volume:BA' } 'db537896-376f-48ae-a492-53d0547773d0' { 'Windows Embedded POSReady 7' } '9e069bbd-f940-457c-b921-a6c73a117bc5' { 'Windows Embedded POSReady 7 POSReady Volume:MAK' } '7e622c6b-d9bc-42d7-8bff-7f83d5716860' { 'Windows Thin PC Embedded Retail' } '5d087edc-5df1-4b8e-a28f-f6cd9c72d9d3' { 'Windows Thin PC Embedded Retail:TB:Eval' } 'aa6dd3aa-c2b4-40e2-a544-a6bbb3f5c395' { 'Windows ThinPC' } '745b16c2-2df9-4287-aa5c-c95fda7c611d' { 'Windows Thin PC Embedded Volume:MAK' } '38fbe2ac-465a-4ef7-b9d8-72044f2792b6' { 'Win Next Edition Next Volume:GVLK' } 'b7cb21c7-06bd-4f63-92dd-78db254cdcac' { 'Win Next Edition Next Volume:MAK' } '24259a22-3bf0-44af-a68b-1b858bce1894' { 'Win 8 RTM Enterprise;EnterpriseN;Professional;ProfessionalN Volume:CSVLK' } '044ba67a-4c54-47ee-941a-d6f2efaa6891' { 'Win 8 RTM Enterprise;EnterpriseN;Professional;ProfessionalN Volume:CSVLK VL Additional' } '29d0b60f-66da-4858-bcaf-9eb513cd310d' { 'Win 8.1 RTM Enterprise;EnterpriseN;Professional;ProfessionalN Volume:CSVLK' } '4614b66f-a1d7-441c-9731-23f22d0ff4e5' { 'Win 8.1 RTM Enterprise;EnterpriseN;Professional;ProfessionalN Volume:CSVLK VL Additional Lab' } '99cb2a2c-f7ee-48e9-98b0-ae72906c6d45' { 'Win Next Edition Next Volume:CSVLK' } 'd521c0fd-1732-4c15-8b98-a41b2a95bbc4' { 'Win 10 Pre-Release Enterprise;EnterpriseN;Professional;ProfessionalN;EnterpriseS;EnterpriseSN;Education;EducationN Volume:CSVLK' } '0724cb7d-3437-4cb7-93cb-830375d0079d' { 'Win 10 RTM Enterprise;EnterpriseN;Professional;ProfessionalN;EnterpriseS;EnterpriseSN;Education;EducationN Volume:CSVLK' } '30a42c86-b7a0-4a34-8c90-ff177cb2acb7' { 'Win 10 RTM Enterprise;EnterpriseN;Professional;ProfessionalN;EnterpriseS;EnterpriseSN;Education;EducationN Volume:CSVLK' } '7a802526-4c94-4bd1-ba14-835a1aca2120' { 'Win 10 RTM Enterprise;EnterpriseN;Professional;ProfessionalN;EnterpriseS;EnterpriseSN;Education;EducationN Volume:CSVLK VL Additional Lab' } 'd552befb-48cc-4327-8f39-47d2d94f987c' { 'Win 10 RTM Enterprise;EnterpriseN;Professional;ProfessionalN;EnterpriseS;EnterpriseSN;Education;EducationN Volume:CSVLK VL Additional Lab' } '2E28138A-847F-42BC-9752-61B03FFF33CD' { 'Office15_KMSHostVL_KMS_Host' } '98EBFE73-2084-4C97-932C-C0CD1643BEA7' { 'Office16_KMSHostVL_KMS_Host' } 'dcb88f6f-b090-405b-850e-dabcccf3693f' { 'Windows Server 2012 R2 RTM ServerDatacenter;ServerStandard Volume:CSVLK' } '20e938bb-df44-45ee-bde1-4e4fe7477f37' { 'Windows Server 2012 R2 RTM ServerDatacenter;ServerStandard Volume:CSVLK for Win10' } 'acf1b4fd-1c55-4f2d-a60b-415ac958ad88' { 'Windows Server 2012 R2 RTM ServerDatacenter;ServerStandard Volume:CSVLK VL Additional Lab' } '9e3fde40-d4b3-4c1d-9bde-32735aa19b39' { 'Windows Server 2012 R2 RTM ServerDatacenter;ServerStandard Volume:CSVLK VL Additional Lab for Win10' } 'd6992aac-29e7-452a-bf10-bbfb8ccabe59' { 'Windows Server 2016 RTM ServerDatacenter;ServerStandard Volume:CSVLK' } '3c2da9a5-1c6e-45d1-855f-fdbef536676f' { 'Windows Server 2016 RTM ServerDatacenter;ServerStandard Volume:CSVLK VL Additional Lab' } 'c609957a-dc23-48b3-8c6b-31b303479de2' { 'WinServer Next ServerDatacenter;ServerStandard Volume:CSVLK' } '7b37c913-252b-46be-ad80-b2b5ceade8af' { 'Windows Server 2012 RTM ServerDatacenter;ServerStandard;ServerMultiPointStandard;ServerMultiPointPremium Volume:CSVLK' } 'fe27276b-a5a9-4b4d-88e3-14271beb79be' { 'Windows Server 2012 RTM ServerDatacenter;ServerStandard;ServerMultiPointStandard;ServerMultiPointPremium Volume:CSVLK VL Additional' } '5e63848b-ac67-4cfd-8a24-8704d28913dc' { 'Win Next Edition Next OEM:COA' } '87a3a0dc-5bdd-4774-8d5d-bc2cac382cae' { 'Win Next Edition Next OEM:NONSLP' } '8f5a4904-8ff6-4119-95be-4133b5f7f68d' { 'Win Next Edition Next OEM:SLP' } '6d769bbc-0de1-4b84-8c81-053792c8e155' { 'Win Next Edition Next Retail' } 'dbdcf57b-e42b-46e5-9e30-6c9529d825f8' { 'Win Next Edition Next Retail:TB:Eval' } '738077d2-1299-4bda-a3af-ba5c96a8ef37' { 'Win Next Edition Next Retail:TB:Promo' } '6d05e585-74a7-471e-a109-6e757be94dad' { 'Win Next Edition Next Retail:TB:Sub' } 'ef88ee1d-2254-4603-8183-d920a7982e0b' { 'Win Next Edition Next Retail:TB:Trial' } 'd91b7562-a935-4752-a42f-f6614fe708be' { 'Windows Server 2008 R2 SP1 ServerDatacenter Retail' } '8402d835-3b9f-4cba-81f5-22922afa7366' { 'Windows Server 2008 R2 SP1 ServerDatacenter Retail:TB:Eval' } '9c135606-f8d0-4b88-8bca-78403696e1ef' { 'Server 2008 R2 SP1 DC and IA64 Volume:MAK (MAK_C)' } '0eee96cb-116a-4109-852a-e3797b6c4260' { 'Server 2008 R2 SP1 Web and CC Volume:MAK (MAK_A)' } '0cb1d6b4-3c07-487f-82fc-886d44a646aa' { 'Windows Server 2008 R2 SP1 ServerEnterprise Retail' } '2d727362-1f80-4a74-9e4d-e7c79826e659' { 'Windows Server 2008 R2 SP1 ServerEnterprise Retail:TB:Eval' } '46c2cc67-6a50-4a66-8048-9334f4a3914e' { 'Windows Server 2008 R2 SP1 ServerEnterpriseIA64 Retail:TB:Eval' } '47188d7c-b5ef-4336-91a9-3857b219fe95' { 'Windows Server 2008 R2 SP1 ServerStandard Retail' } 'a7dad4b1-8065-4576-9e61-2fd025fe16cc' { 'Windows Server 2008 R2 SP1 ServerStandard Retail:TB:Eval' } 'c60b048b-8071-4532-8398-f15f4c981861' { 'Server 2008 R2 SP1 Std and Ent Volume:MAK (MAK_B)' } '643144fe-8557-4a94-bc0d-5a8348398156' { 'Windows Server 2008 R2 SP1 ServerWeb Retail' } '01fd368f-a172-45d7-b147-273aa1aba00b' { 'Windows Server 2008 R2 SP1 ServerWeb Retail:TB:Eval' } '7a68f0c7-9dee-433d-b1da-e9779be95ab3' { 'Windows Server 2008 R2 SP1 Foundation Retail' } '4f00134f-b514-4626-a74b-a8ec7c8dfe92' { 'Windows 7 SP1 Enterprise Retail' } 'cff07cac-7534-4cc3-b3f3-99e1a0aa3c20' { 'Windows 7 SP1 Enterprise Volume:MAK' } 'd24a2d0a-9cd3-4232-833f-ae3655b88425' { 'Windows 7 SP1 EnterpriseN Retail' } '57c2bada-4fa1-410e-b9a7-92695078d46b' { 'Windows 7 SP1 HomeBasic OEM:COA' } '974740ce-f7de-4f95-8404-01b53efdcb66' { 'Windows 7 SP1 HomeBasic OEM:NONSLP' } 'baebe09a-840e-452f-9e39-df34c8d38adc' { 'Windows 7 SP1 HomeBasic OEM:SLP' } 'e5d2c2c7-9140-4fe9-9d3d-c0b106739e34' { 'Windows 7 SP1 HomeBasic Retail' } '0e88bdae-f9a7-4e9d-9afe-9398459c4385' { 'Windows 7 SP1 HomeBasic Retail:WAUx' } 'ecde36bb-22f8-481b-93ab-d3fc1204f470' { 'Windows 7 SP1 HomeBasicN OEM:COA' } '373a038e-d9b7-4fcb-9788-1bb41b96e8b0' { 'Windows 7 SP1 HomeBasicN OEM:NONSLP' } '7d39b06e-771b-41b7-9228-fe5fa91aa7a1' { 'Windows 7 SP1 HomeBasicN OEM:SLP' } '4beb680a-2f31-471c-a7fe-7a979ccf3d63' { 'Windows 7 SP1 HomeBasicN Retail' } '5e35dc43-389b-47c5-b889-2088b06738cb' { 'Windows 7 SP1 HomePremium OEM:COA' } 'a63275f4-530c-48a7-b0d3-4f00d688d151' { 'Windows 7 SP1 HomePremium OEM:NONSLP' } 'b8a4bb91-69b1-460d-93f8-40e0670af04a' { 'Windows 7 SP1 HomePremium OEM:SLP' } 'ee4e1629-bcdc-4b42-a68f-b92e135f78d7' { 'Windows 7 SP1 HomePremium Retail' } 'e68b141f-4dfa-4387-b3b7-e65c4889216e' { 'Windows 7 SP1 HomePremium Retail:WAUx' } 'e72d9987-5c60-45b2-a093-87392e88107e' { 'Windows 7 SP1 HomePremiumN OEM:COA' } '153ebbcf-07f0-4fbc-b361-3b4b50f48617' { 'Windows 7 SP1 HomePremiumN OEM:NONSLP' } '388fee2d-04ef-4825-b442-edb6295da3d8' { 'Windows 7 SP1 HomePremiumN OEM:SLP' } '96b172b7-0521-413b-820b-4beb463bdac9' { 'Windows 7 SP1 HomePremiumN Retail' } 'fddde785-e27d-4c62-8ec0-ed78e58d424f' { 'Windows 7 SP1 HomePremiumN Retail:WAUx' } '46d97ac9-1eab-4f29-ae77-f69d6fe70bed' { 'Windows 7 SP1 OCUR Ultimate Retail' } '5a79ecd8-d33f-406c-a619-7785899b5d59' { 'Windows 7 SP1 Professional OEM:COA' } 'c33001fc-5e9c-4f27-8c05-e0154adb0db4' { 'Windows 7 SP1 Professional OEM:NONSLP' } 'cf3c5b35-35ff-4c95-9bbd-a188e47ad14c' { 'Windows 7 SP1 Professional OEM:SLP' } 'c1e88de3-96c4-4563-ad7d-775f65b1e670' { 'Windows 7 SP1 Professional Retail' } '4de78642-0f7f-4b61-9392-8add86d70ae8' { 'Windows 7 SP1 Professional Retail:TB:Sub' } '9ccffaf9-86a2-414e-b031-b2f777720e90' { 'Windows 7 SP1 Professional Retail:WAUx' } '92f9d22a-65f5-49a7-90fe-06491b4fc379' { 'Windows 7 SP1 Professional;ProfessionalN;Enterprise;EnterpriseN Volume:MAK' } '05bce0e7-2ed5-4876-afb3-5844ffc90f40' { 'Windows 7 SP1 ProfessionalN OEM:COA' } '017935c3-4ed2-427a-aedf-55129321a285' { 'Windows 7 SP1 ProfessionalN OEM:NONSLP' } 'b20418a8-a3d4-4296-8cc0-e7ed07267a04' { 'Windows 7 SP1 ProfessionalN OEM:SLP' } '92f06ba8-08e1-4156-b8b5-d38328f5b5d5' { 'Windows 7 SP1 ProfessionalN Retail' } '01df6f02-29d6-487d-b3a1-95dcf42c10e6' { 'Windows 7 SP1 ProfessionalN Retail:TB:Sub' } 'bc95c3ad-bb46-4b09-b130-51665ef87e3b' { 'Windows 7 SP1 ProfessionalN Retail:WAUx' } '8d84e167-c8ad-469f-a2b2-00b154668f70' { 'Windows 7 SP1 Starter OEM:COA' } 'ac605e70-4f18-45ca-a99c-190e4b047cd1' { 'Windows 7 SP1 Starter OEM:NONSLP' } '69ffd12a-074f-4ab0-b654-99a2e278faeb' { 'Windows 7 SP1 Starter OEM:SLP' } '8b51f6c7-0b38-4487-83ff-bd3289c6292d' { 'Windows 7 SP1 Starter Retail' } '114e0c1a-1aa5-47a2-8d38-8eb3b51cdbb6' { 'Windows 7 SP1 StarterN OEM:COA' } '8c17fbea-5586-4807-aafe-0d8181c36ff5' { 'Windows 7 SP1 StarterN OEM:NONSLP' } '2e822a96-f12b-4f9a-a638-6c567060d877' { 'Windows 7 SP1 StarterN OEM:SLP' } '6e358ec7-1224-432e-aed8-955fb11a08bd' { 'Windows 7 SP1 StarterN Retail' } 'bba42084-cacd-4ad4-b606-9f3d6c93b2c5' { 'Windows 7 SP1 Ultimate OEM:COA' } '57a232fe-0931-48fe-9389-e4586967c661' { 'Windows 7 SP1 Ultimate OEM:NONSLP' } 'b2c4b9f6-3ee6-4a2a-a361-64ad3b61ded5' { 'Windows 7 SP1 Ultimate OEM:SLP' } 'c619d61c-c2f2-40c3-ab3f-c5924314b0f3' { 'Windows 7 SP1 Ultimate Retail' } '8ec16e01-e86f-415f-b333-1819f4145294' { 'Windows 7 SP1 Ultimate Retail:TB:Sub' } '436cef53-8387-4692-bb4a-9492cd82260e' { 'Windows 7 SP1 Ultimate Retail:WAUx' } '3d30924b-bf77-489c-afbe-ecdba5988161' { 'Windows 7 SP1 UltimateN OEM:COA' } '628d8532-f53a-4861-a786-dd63ed6ac5b4' { 'Windows 7 SP1 UltimateN OEM:NONSLP' } '8bf50607-c8ce-4402-aaf8-92d2d63ab6c1' { 'Windows 7 SP1 UltimateN OEM:SLP' } 'ada98380-2f0c-4a45-893d-d6b124e7f31b' { 'Windows 7 SP1 UltimateN Retail' } '4af12fad-92f3-4f32-81f7-ff44c1b6474b' { 'Windows 7 SP1 UltimateN Retail:TB:Sub' } 'f294addd-20dd-46e6-bce7-01a15ef45e99' { 'Windows 7 SP1 UltimateN Retail:WAUx' } 'd302d5ab-0e5e-4652-a0bb-7a776523e02a' { 'Win Next HomePremium OEM:DM' } '4b4c990f-31ee-46b7-929e-32389cb5bd00' { 'Win Next HomePremium OEM:SLP' } '9dae7ae3-db56-45cb-996a-f5632f49af3a' { 'Win Next HomePremium OEM:NONSLP' } '232565cb-b3fe-4de6-87ee-3b529c86a5c2' { 'Win Next HomePremium OEM:COA' } '2d8f6823-fa9f-4d3f-bb16-05c475ca97cd' { 'Win Next Professional OEM:DM' } 'cfb20c87-074f-46c0-9beb-519ea4f17090' { 'Win Next Professional OEM:SLP' } '4c64cf62-f2d1-4ee6-98a7-bfda0e01c4aa' { 'Win Next Professional OEM:NONSLP' } '90f79657-e380-4bbf-a3ac-75a7f1558dcb' { 'Win Next Professional OEM:COA' } '92bea8b6-ac89-4fec-b644-71e279113e01' { 'WinServer Next ServerDatacenter OEM:DM' } 'b613da48-2a03-41d2-8eb3-758d10a6f5d6' { 'WinServer Next ServerDatacenter OEM:SLP' } '2979826e-9d6a-47df-892f-fbbf5c09f0b7' { 'WinServer Next ServerDatacenter OEM:NONSLP' } '07af5a93-a13b-45dc-b8ce-c72229fce371' { 'WinServer Next ServerDatacenter OEM:COA' } 'c76dcd25-16d1-42d4-961d-3ed260ab4c51' { 'WinServer Next ServerEnterprise OEM:DM' } 'dabd98ff-8ae0-467d-8f49-c056916e00f0' { 'WinServer Next ServerEnterprise OEM:SLP' } 'f241b8fe-5a32-4db1-a10e-132711b43835' { 'WinServer Next ServerEnterprise OEM:NONSLP' } '6995a980-91cd-4867-aa24-db3fd988c6dc' { 'WinServer Next ServerEnterprise OEM:COA' } 'fbfcc4bf-59a1-4032-8afb-3242f763c29e' { 'WinServer Next ServerWinFoundation OEM:DM' } '10f19b39-9b03-4e11-af50-3e02811fe828' { 'WinServer Next ServerWinFoundation OEM:SLP' } 'f0bf082b-4a03-4c2b-bdd5-f0040670f219' { 'WinServer Next ServerWinFoundation OEM:NONSLP' } '5766ed15-143d-445f-ae07-5a4f61ccacb6' { 'WinServer Next ServerWinFoundation OEM:COA' } '3d174e0a-e2d4-4b95-8a95-5bc5eef9ef81' { 'WinServer Next ServerStandard OEM:DM' } 'f5c93aff-bc5a-4a73-9afc-48555edb7716' { 'WinServer Next ServerStandard OEM:SLP' } 'e67b3237-31c0-428a-b0e4-f1fa74dc1588' { 'WinServer Next ServerStandard OEM:NONSLP' } 'c437557d-5f33-4ecb-83ae-494015fe5a14' { 'WinServer Next ServerStandard OEM:COA' } '0d17ff59-c618-4007-ab49-d48c941a8bcc' { 'WinServer Next ServerWeb OEM:DM' } 'cb20a646-4bcb-4615-820a-e832a5e79942' { 'WinServer Next ServerWeb OEM:SLP' } '89dda8f4-eefe-498d-9f25-201a763c0824' { 'WinServer Next ServerWeb OEM:NONSLP' } '793fbec3-7313-469e-bfd3-938123de3e85' { 'WinServer Next ServerWeb OEM:COA' } 'f4259c9d-5ee7-4a0d-9754-af9627726dec' { 'Win Next Ultimate OEM:DM' } '4ee8edae-3ca1-4bcf-996c-aebb400baafd' { 'Win Next Ultimate OEM:SLP' } 'ec38ef24-870f-474a-ab27-f231b5698197' { 'Win Next Ultimate OEM:NONSLP' } 'a1425da5-4210-466b-af8a-1c9dbe926f0e' { 'Win Next Ultimate OEM:COA' } '18e7b54d-7cb7-462a-89b2-d48785d16cd9' { 'WinNext Beta Prerelease OEM:DM' } '0a16da1d-842d-4b37-8b32-27749f28ff25' { 'WinNext Beta PrereleaseARM OEM:DM' } '41fab9bb-d480-4494-b9d9-f9ed1f4b29fe' { 'WinServer Next ServerStorageWorkgroup OEM:DM' } 'e8e4cc9a-5d28-4ced-b44e-4d36ecda479b' { 'WinServer Next ServerStorageStandard OEM:DM' } 'd327b12d-39ac-41af-970b-3299c8853239' { 'WinServer Next ServerHPC OEM:DM' } '3bcd4e85-02cb-45a6-a123-c1f200d78c7b' { 'WinServer Next ServerMultiPointStandard OEM:DM' } 'b6765c1c-caeb-4abe-8e26-a6c58db58433' { 'WinServer Next ServerMultiPointPremium OEM:DM' } '9ac91fd3-aa8a-440d-8bb4-39b7cf4dbcc2' { 'WinServerSolutions Next ServerSolution OEM:DM' } 'e3789e86-ee91-4773-a5b8-8a90538079f0' { 'WinServerSolutions Next ServerSolutionsPremium OEM:DM' } '101a867e-8289-473f-84e6-c5a74a82de2e' { 'Win 8 RC CoreARM OEM:DM' } 'b83f4f63-c52e-4d9a-a487-56da52b9f943' { 'Win 8 RC Core OEM:DM' } '335a4ed1-807f-444c-9c25-de3789e52ba4' { 'Win 8 RC CoreCountrySpecific OEM:DM' } '465b4a51-44db-43f3-b1a3-d7b6a4a65534' { 'Win 8 RC CoreN OEM:DM' } '4cc5c77d-0888-49bf-8b0a-4f83376d7f27' { 'Win 8 RC CoreSingleLanguage OEM:DM' } 'b1154193-7855-4236-838d-f6fc6d161cfb' { 'Win 8 RC Professional OEM:DM' } '6243c975-bed9-40b4-b96e-1db8803efd0e' { 'Win 8 RC ProfessionalN OEM:DM' } 'F8D2AA4E-180E-4423-BD7E-98B53D4320C2' { 'Office15_Alpha_AccessR_Retail' } '5728BFAD-20FB-408F-ACBE-395A148B0B64' { 'Office15_Alpha_MondoSubR_SubTest' } '8ED27E29-7414-4A95-8FFD-300B63B8ABFB' { 'Office15_Alpha_AccessRuntimeR_Bypass' } '8F40EBA0-E386-4C76-9129-F4BA8D0A9005' { 'Office15_Alpha_AccessSubR_Grace' } 'B2337E3A-F4A6-4956-819A-42F43F535A39' { 'Office15_Alpha_AccessVL_MAK' } '44B538E2-FB34-4732-81E4-644C17D2E746' { 'Office15_Alpha_AccessVL_KMS_Client' } '8099D2DD-83A1-4D98-AD4F-D8624C2D5F5D' { 'Office15_Alpha_ExcelR_Retail' } '6E79B439-B835-4FBD-968B-B1EEDA76EEF1' { 'Office15_Alpha_ExcelSubR_Grace' } '902173E8-57CC-4BD2-A979-45CAFC9F31A5' { 'Office15_Alpha_ExcelSubR_Subscription' } '9373BFA0-97B3-4587-AB73-30934461D55C' { 'Office15_Alpha_ExcelVL_KMS_Client' } 'B220E438-51E2-4518-B672-F56A5471F568' { 'Office15_Alpha_ExcelVL_MAK' } 'C0FBA9A8-08A1-4693-AA21-563E70EB8AC9' { 'Office15_Alpha_VisioPremR_Retail' } '98D0B59C-D149-4536-80F2-ED1BDECB478F' { 'Office15_Alpha_VisioPremR_Trial' } '7C14A089-4C73-4692-A16E-7832326174F3' { 'Office15_Alpha_VisioPremSubR_Grace' } '8E444D42-C685-42A3-B33B-3E2DED5D0620' { 'Office15_Alpha_VisioPremSubR_Subscription' } 'C53DFE17-CC00-4967-B188-A088A965494D' { 'Office15_Alpha_LyncVL_KMS_Client' } 'BB9161CC-0DAC-4662-A3DA-94311D623375' { 'Office15_Alpha_LyncVL_MAK' } '53623E6A-96B4-4A01-8DE0-86C70D72A5FA' { 'Office15_Alpha_VisioProR_Retail' } 'C7C834AC-44D4-46A3-9C6F-8E1875948988' { 'Office15_Alpha_VisioProR_Trial' } 'A226AF49-55FE-4189-A01E-8A94A9A11B03' { 'Office15_Alpha_VisioProSubR_Grace' } 'DEEC49E5-62A2-4245-A5FE-FDDF8F15FD8F' { 'Office15_Alpha_VisioProSubR_Subscription' } '8E3570AB-710B-4532-A21B-F81697F059EB' { 'Office15_Alpha_HomeStudentPreInstallR_Bypass' } 'CFBFD60E-0B5F-427D-917C-A4DF42A80E44' { 'Office15_Alpha_VisioProVL_KMS_Client' } 'B607E588-B35C-4FD7-AA77-43054B7B0F5C' { 'Office15_Alpha_VisioProVL_MAK' } '34DB0079-0193-470F-A9BB-950DD7D59CC9' { 'Office15_Alpha_VisioStdR_Retail' } 'D4A2641B-545F-4482-B48A-7860EAA90FEB' { 'Office15_Alpha_VisioStdR_Trial' } '04CB3811-6309-4692-A22F-12FFD4F649AE' { 'Office15_Alpha_VisioStdSubR_Grace' } '28DB6F61-A973-4044-B177-05EF83EF19E0' { 'Office15_Alpha_VisioStdSubR_Subscription' } '7012CC81-8887-42E9-B17D-4E5E42760F0D' { 'Office15_Alpha_VisioStdVL_KMS_Client' } '2DF7FAC4-C06B-4E28-863F-EB8C04939C70' { 'Office15_Alpha_VisioStdVL_MAK' } 'F7FB1607-B422-4F73-BB20-E1290F70B181' { 'Office15_Alpha_WordR_Retail' } '06D3B578-D6DE-4C97-B58B-589BB0457103' { 'Office15_Alpha_WordSubR_Grace' } '817AB549-B481-4680-A6E6-D37D382F305A' { 'Office15_Alpha_WordSubR_Subscription' } 'DE9C7EB6-5A85-420D-9703-FFF11BDD4D43' { 'Office15_Alpha_WordVL_KMS_Client' } '41023570-D4E2-4BBE-839C-38478A7F0404' { 'Office15_Alpha_WordVL_MAK' } '3F84E134-6856-4903-A1AF-ED895E98EAAE' { 'Office15_Alpha_GrooveR_Retail' } 'AA286EB4-556F-4EEB-967C-C1B771B7673E' { 'Office15_Alpha_GrooveVL_KMS_Client' } 'ECC05C1A-5D79-46CC-918C-9BA812F6150C' { 'Office15_Alpha_GrooveVL_MAK' } 'C71B3A3C-7C8D-420D-847B-EE5291D1A1C2' { 'Office15_Alpha_HomeBusinessR_Retail' } '4F5BD9F7-B2CB-4EFE-AA99-4901B450DEF9' { 'Office15_Alpha_HomeBusinessR_Trial' } 'C2B225A4-26F6-453D-89EF-A5C9D79EF761' { 'Office15_Alpha_HomeBusinessSubR_Grace' } 'B0F4E32B-E3CB-4AAE-9083-49B694F080D7' { 'Office15_Alpha_MondoSubR_SubTrial' } 'FFED7335-E171-48E3-8DD6-42E3666F5398' { 'Office15_Alpha_MondoR_PIN' } '7CCC8256-FBAA-49C6-B2A9-F5AFB4257CD2' { 'Office15_Alpha_InfoPathVL_KMS_Client' } '3B6B93E8-5F98-4913-B5B9-004761762774' { 'Office15_Alpha_InfoPathVL_MAK' } 'DEC8B4B4-EEC6-4F4C-9743-8348A4AD47FD' { 'Office15_Alpha_MondoR_Bypass' } '4E687600-4E9D-4E6D-9F41-7170E20BF664' { 'Office15_Alpha_MondoR_BypassTrial180' } '40BFC156-7925-4027-8897-1BB6DBE5AD27' { 'Office15_Alpha_MondoR_BypassTrial60' } '6312D04D-89B5-4697-B4E9-2558F2AFA452' { 'Office15_Alpha_MondoR_OEM_Perp' } '42D43240-BD35-4342-811E-2A27F92C6694' { 'Office15_Alpha_MondoR_Retail' } '80D6EB0E-BF5C-46B0-BBED-CC8FCBEFE370' { 'Office15_Alpha_MondoR_TrialDeadEnd' } '2D061236-8278-47EC-93A8-CFC6F369F0E6' { 'Office15_Alpha_MondoR_Trial' } '682877D7-C78F-496C-A012-CD605B2B2E32' { 'Office15_Alpha_MondoSubR_Grace' } '20865E25-9D40-43EA-87F9-0E5A76D9373A' { 'Office15_Alpha_MondoSubR_Subscription' } '2816A87D-E1ED-4097-B311-E2341C57B179' { 'Office15_Alpha_MondoVL_KMS_Client' } 'DE6185D7-166C-4644-BC78-A6ECE5B619AF' { 'Office15_Alpha_MondoVL_MAK' } 'A3B0AEB7-8FB6-441E-9C3D-D185AED3C4C4' { 'Office15_Alpha_OEM_Bypass' } '4D7CDC63-6D92-4C92-A83F-60E718B35A19' { 'Office15_Alpha_OfficeLPK_Bypass' } '793EA7A1-4739-41FE-A2FB-AF71A78A5135' { 'Office15_Alpha_OneNoteR_Retail' } '67C0F908-184F-4F64-8250-12DB797AB3C3' { 'Office15_Alpha_OneNoteVL_KMS_Client' } '619F7368-50ED-452C-A14A-E50F718824B4' { 'Office15_Alpha_OneNoteVL_MAK' } 'FDEDB75E-24AE-45A8-83EA-D84F8E233D4E' { 'Office15_Alpha_OutlookR_Retail' } '7BCE4E7A-DD80-4682-98FA-F993725803D2' { 'Office15_Alpha_OutlookVL_KMS_Client' } '1D5021B5-4D9A-4D6D-AD96-F9AE7C00A885' { 'Office15_Alpha_OutlookVL_MAK' } 'F8F282CE-1239-496C-AFAD-E32EDC19F6AB' { 'Office15_Alpha_PersonalPrepaidR_Trial' } '560DB3F8-DDF0-43D0-BAA1-BBA35C88FDCA' { 'Office15_Alpha_PersonalR_Retail' } '2C30BF21-5294-4734-BC99-286767869869' { 'Office15_Alpha_PowerPointR_Retail' } '1EC10C0A-54F6-453E-B85A-6FA1BBFEA9B7' { 'Office15_Alpha_PowerPointVL_KMS_Client' } '6BF1839B-180D-47AC-94BF-8243701C0FFC' { 'Office15_Alpha_PowerPointVL_MAK' } '57E7202D-5BD8-4382-B91A-533E1164EB33' { 'Office15_Alpha_ProfessionalAcadR_Retail' } 'C345B5D1-1CC3-47C9-865C-9FC3E56BCD80' { 'Office15_Alpha_ProfessionalDemoR_BypassTrial180' } '5B2E06F9-79B2-4DCB-9AB1-A51BBBC674C9' { 'Office15_Alpha_ProfessionalR_Retail' } '0FA8AAB3-F3F5-4DE4-A075-BFFACAD67A5A' { 'Office15_Alpha_ProfessionalR_Trial' } '093D2042-9A8E-4AE4-984D-7E71A3BC7B76' { 'Office15_Alpha_ProfessionalSubR_Grace' } '3252DC27-6CF2-4B0C-B355-B50DAA51F761' { 'Office15_Alpha_ProfessionalSubR_Subscription' } 'C00C6BF8-9865-495E-9625-119719E68D58' { 'Office15_Alpha_ProjectLPK_Bypass' } '26BBCCC0-4F80-4D18-9C21-CFAC447A7EC0' { 'Office15_Alpha_ProjectProR_Retail' } '539DF301-0EA1-4B66-B473-2BD593D881B2' { 'Office15_Alpha_ProjectProR_Trial' } '7A5965BD-5440-4F52-88D8-45E69BABA5AF' { 'Office15_Alpha_ProjectProSubR_Grace' } '508E6617-0D2B-4722-A564-DA0B24342ACB' { 'Office15_Alpha_ProjectProSubR_Subscription' } '3CFE50A9-0E03-4B29-9754-9F193F07B71F' { 'Office15_Alpha_ProjectProVL_KMS_Client' } '0F0FC955-9B7F-4D01-A58C-84A625477287' { 'Office15_Alpha_ProjectProVL_MAK' } 'A3D53E55-D8E4-4261-A17D-56CDA32EB2A2' { 'Office15_Alpha_ProjectStdR_Retail' } 'C735F338-9912-406C-A04F-EF9A00E2276D' { 'Office15_Alpha_ProjectStdR_Trial' } 'DF511381-E5E2-4A6E-B9B6-8E5EBA8D5D58' { 'Office15_Alpha_ProjectStdSubR_Grace' } '5B1E918F-B0D3-42ED-A602-E7532F562567' { 'Office15_Alpha_ProjectStdSubR_Subscription' } '39E49E57-AE68-4EE3-B098-26480DF3DA96' { 'Office15_Alpha_ProjectStdVL_KMS_Client' } 'FB919A1F-1F71-4869-B719-F9CC005AB637' { 'Office15_Alpha_ProjectStdVL_MAK' } '54517397-284B-44CB-99EB-723B39DCB3A0' { 'Office15_Alpha_ProPlusAcadVL_MAK' } 'A3A07078-83CA-47C5-8C2B-E362AC240BD8' { 'Office15_Alpha_ProPlusSubR_Grace' } '82CEF0D9-D31D-456E-A3FA-AE2637EA2984' { 'Office15_Alpha_ProPlusSubR_Subscription' } '87D2B5BF-D47B-41FB-AF62-71C382F5CC85' { 'Office15_Alpha_ProPlusVL_KMS_Client' } '3A3EB072-B131-430D-8157-2A582BEB9682' { 'Office15_Alpha_ProPlusVL_MAK' } '147428AB-B81B-4BAF-B093-93FF1C0C01B2' { 'Office15_Alpha_PTK_Bypass' } '4FE044AD-6005-47D6-98E8-4A260D2C8544' { 'Office15_Alpha_PublisherR_Retail' } '9BCFAB7A-2613-4946-9D57-5B79C63B2DC5' { 'Office15_Alpha_PublisherSubR_Grace' } '32A161E4-E2CD-466A-80E0-C745DF79AEEA' { 'Office15_Alpha_PublisherSubR_Subscription' } '15AA2117-8F79-49A8-8317-753026D6A054' { 'Office15_Alpha_PublisherVL_KMS_Client' } 'F3284E33-F782-4B4B-A676-36FAE730A908' { 'Office15_Alpha_PublisherVL_MAK' } '2C06BF34-8C97-47EA-AD4A-DED4BEFCD55B' { 'Office15_Alpha_SPDR_Bypass' } '96A82A03-8745-41C6-942A-25AE5A3B1452' { 'Office15_Alpha_StarterPremR_Bypass30' } '025010C5-698E-41F5-9BAE-858BE650574D' { 'Office15_Alpha_StarterR_Bypass' } '76717750-93CE-40B9-B51D-2BF2B84DB6D4' { 'Office15_Alpha_VisioLPK_Bypass' } '9df5d2a8-ec6b-46bc-9e89-8bd7ea507daa' { 'WinNext Beta Prerelease OEM:NONSLP' } '9d0bb49b-21a1-4354-9981-ec5dd9393961' { 'WinNext Beta APPXLOB For Server Editions Volume:MAK' } '2b9c337f-7a1d-4271-90a3-c6855a2b8a1c' { 'WinNext Beta Prerelease Volume:GVLK' } 'f3ff9372-a1f0-4f40-b015-79a1b44cd67c' { 'WinNext Beta PrereleaseN Retail' } '7385fb78-9672-423d-b0b0-7107982aed6a' { 'WinNext Beta PrereleaseARM OEM:NONSLP' } '9ceec7ed-2c25-4a5e-97a6-acea45ad42d3' { 'WinNext Beta PrereleaseARM Retail' } '631ead72-a8ab-4df8-bbdf-372029989bdd' { 'WinNext Beta PrereleaseARM Volume:GVLK' } 'a305c714-0c85-40ba-9c81-f14312305403' { 'WinNext Beta EnterpriseEval Retail:TB:Eval' } '82a078fa-d9e4-48d1-9274-b6fc3bf95bb9' { 'WinNext Beta EnterpriseNEval Retail:TB:Eval' } '3ef9a959-0ea4-4df1-b41d-1a86b39728f0' { 'WinNext Beta Ultimate Retail' } '0eb6e7c2-e5ff-4161-acbe-aec0c135de97' { 'WinNext Beta Professional Retail' } 'eacd97b0-a7d4-4366-85bd-d77818fac674' { 'WinServer Next ServerStandardEval Retail:TB:Eval' } 'bb593016-1237-4a72-a214-dbc784a30527' { 'WinServer Next ServerDatacenterEval Retail:TB:Eval' } '94d4be0b-23d8-42c5-8b7f-c44534fe96e3' { 'WinServer Next ServerStorageWorkgroup Retail:TB:Eval' } '3eb835a2-18cd-46d8-b21f-9a55fd7a3ae5' { 'WinServer Next ServerStorageWorkgroup OEM:SLP' } '66736b50-7916-4c89-bd40-fa1222482c89' { 'WinServer Next ServerStorageWorkgroup OEM:NONSLP' } '37dae7cd-0218-4f20-a4a6-fc973d66b670' { 'WinServer Next ServerStorageWorkgroup OEM:COA' } '25aae206-6a83-4349-8869-83bba1e4d142' { 'WinServer Next ServerStorageStandard Retail:TB:Eval' } 'd44912a2-1e48-4763-acf5-751ae43432e5' { 'WinServer Next ServerStorageStandard OEM:SLP' } '719608b5-b311-4f9a-a165-4eaef60112ee' { 'WinServer Next ServerStorageStandard OEM:NONSLP' } '13606c16-4264-4a78-b8ef-2b4958ebe3ea' { 'WinServer Next ServerStorageStandard OEM:COA' } '346e71f4-f965-4f5a-84f1-be351a9aa29d' { 'WinServer Next ServerHPC Retail:TB:Eval' } 'b55f3210-6ab8-44f3-8b0b-a9c357fe75d6' { 'WinServer Next ServerHPC OEM:SLP' } 'e6e6e2f3-43cc-464a-872c-96d52314ccb7' { 'WinServer Next ServerHPC OEM:NONSLP' } '92091ac9-8508-4812-85cd-c52828eeb0ae' { 'WinServer Next ServerHPC OEM:COA' } '1294f2d0-4f73-4bb1-80b2-8d733baed482' { 'WinServer Next ServerHPC Volume:MAK' } '2412bea9-b6e0-441e-8dc2-a13720b42de9' { 'WinServer Next ServerHPC Volume:GVLK' } 'd1fc30a7-6bd9-4942-85bd-5c825e57569d' { 'WinServer Next ServerMultiPointStandard Retail:TB:Eval' } '4a0e1ebe-946b-4b37-b997-ba9f929f14d9' { 'WinServer Next ServerMultiPointStandard OEM:SLP' } 'a4257435-e853-422f-b988-1a349eeb7468' { 'WinServer Next ServerMultiPointStandard OEM:NONSLP' } '08e7ecc0-7611-4811-bf4e-477fb8102809' { 'WinServer Next ServerMultiPointStandard OEM:COA' } '92ae5b41-91fa-4dfc-afad-ebada7a86278' { 'WinServer Next ServerMultiPointStandard Volume:MAK' } 'bfa6b683-56be-47b8-a22e-461b27b9cf11' { 'WinServer Next ServerMultiPointStandard Volume:GVLK' } '984bbe67-aff1-4bca-af83-490a751020c2' { 'WinServer Next ServerMultiPointPremium Retail:TB:Eval' } 'acd7a99c-495f-42be-9484-73ae3cb9a45c' { 'WinServer Next ServerMultiPointPremium OEM:SLP' } 'db003830-56b7-4ed5-b11a-ddf815fec8e0' { 'WinServer Next ServerMultiPointPremium OEM:NONSLP' } 'c7327125-3ac1-4d40-b25d-d0cb4be54fcb' { 'WinServer Next ServerMultiPointPremium OEM:COA' } 'fc23c37f-8895-4530-b327-a972dfbdc7f9' { 'WinServer Next ServerMultiPointPremium Volume:MAK' } 'bc20fb5b-4097-484f-84d2-55b18dac95eb' { 'WinServer Next ServerMultiPointPremium Volume:GVLK' } '94151945-5f87-4406-9250-9fb147de6fcf' { 'WinServerSolutions Next ServerSolution Retail' } '2b842591-7256-4469-874a-2af1710afc0a' { 'WinServerSolutions Next ServerSolution Retail:TB:Eval' } 'ed10a794-2497-4b00-bdd5-f4d0b98037a2' { 'WinServerSolutions Next ServerSolution OEM:SLP' } 'b15997c6-523c-4901-83cc-9aaa4e201cd2' { 'WinServerSolutions Next ServerSolution OEM:NONSLP' } 'b2ed5f0c-cc84-4304-be9c-1d800f1b7c9e' { 'WinServerSolutions Next ServerSolution OEM:COA' } '34b83d96-4771-46dc-86b3-e0f293c2746f' { 'WinServerSolutions Next ServerSolution Volume:MAK' } 'fd288220-f61b-4b7b-8801-76b336d19c40' { 'WinServerSolutions Next ServerSolutionsPremium Retail' } '29a94674-1989-463e-b047-7980c942f049' { 'WinServerSolutions Next ServerSolutionsPremium Retail:TB:Eval' } '657133ab-8a46-4c13-b38e-71773571c8ca' { 'WinServerSolutions Next ServerSolutionsPremium OEM:SLP' } 'd333e06e-7783-4c2d-8d1a-92b34911d531' { 'WinServerSolutions Next ServerSolutionsPremium OEM:NONSLP' } 'de5b8609-683b-4f75-9573-a02bd192842c' { 'WinServerSolutions Next ServerSolutionsPremium OEM:COA' } '09af062c-e613-4085-b66e-c55b22f68dff' { 'WinServerSolutions Next ServerSolutionsPremium Volume:MAK' } 'c3dbac02-e65b-48bc-a61e-e14befbdd674' { 'WinServer Next ServerDatacenter Retail' } 'b2d44123-c1ec-44b6-9873-a233bb7e3618' { 'WinServer Next ServerDatacenter Retail:TB:Eval' } '3f701528-302a-4773-b382-9451a6c7b7c3' { 'WinServer Next ServerDatacenter Volume:MAK' } 'ba947c44-d19d-4786-b6ae-22770bc94c54' { 'WinServer Next ServerDatacenter Volume:GVLK' } '965362a9-3906-4a33-a3d7-538e59975a15' { 'WinServer Next ServerEnterprise Retail' } '42ccd9f2-2fae-4e6b-9cc3-ea0b0e6232d7' { 'WinServer Next ServerEnterprise Retail:TB:Eval' } '8a409d61-30fe-4903-bdbc-1fb28603ba3a' { 'WinServer Next ServerEnterprise Volume:GVLK' } '8b123b6e-3576-454c-8eb7-056c36febf11' { 'WinServer Next ServerWinFoundation Retail:TB:Eval' } 'bc085914-2b22-4128-ad91-a8d7d2ef501f' { 'WinServer Next ServerStandard Retail' } '94a8a35b-b757-44de-bda5-be26cb11842a' { 'WinServer Next ServerStandard Retail:TB:Eval' } 'd3872724-5c08-4b1b-91f2-fc9eafed4990' { 'WinServer Next ServerStandard Volume:GVLK' } 'a4e4cf4e-e8a9-450e-a046-696f87644ead' { 'WinServer Next ServerStandard Volume:MAK' } '1be52dfa-347b-4ea9-a5a0-903fe990a797' { 'WinServer Next ServerWeb Retail' } '53cfae25-4180-4d86-bfcf-ff4d1adb9caa' { 'WinServer Next ServerWeb Retail:TB:Eval' } '972ba9b4-65c4-47c2-9b12-febfdd2604b3' { 'WinServer Next ServerWeb Volume:MAK' } 'e5676f13-9b66-4a1f-8b0c-43490e236202' { 'WinServer Next ServerWeb Volume:GVLK' } '123cdf26-dc3c-4cdd-b8b3-4fda553bb194' { 'WinServerSolutions Next ServerHomeStandard Retail' } '2bfe3785-af38-40a6-9060-b6810cc8ff8c' { 'WinServerSolutions Next ServerHomeStandard OEM:SLP' } '03567182-1dd4-4e2f-ab6b-6aea9ca843bc' { 'WinServerSolutions Next ServerHomeStandard OEM:NONSLP' } 'b12aee12-c889-471a-b37e-208afdbb86d5' { 'WinNext Beta APPXLOB For Client Editions Volume:MAK' } '8e561eaf-e527-4bc4-92f4-702c7c8594b8' { 'Cassini Platform 8 Pre-Beta Embedded Retail' } '0d872315-eb8e-4bf4-9f9b-463ce9df80d7' { 'Cassini Platform 8 Pre-Beta Embedded Retail' } '6d6c13c8-91cd-470c-aa71-b2212f049e7c' { 'Cassini Platform 8 Pre-Beta Embedded Retail' } '162f7a33-c734-4e72-8949-60587063ecbf' { 'Cassini Platform 8 Pre-Beta Embedded Retail' } '974f76e1-8d4f-40cd-a259-86242468764f' { 'Cassini Platform 8 Pre-Beta Embedded Retail' } '6728d496-0e5a-4163-9a61-fbca3fc8530b' { 'Win 8 RC CoreARM OEM:NONSLP' } '38271862-6af0-4711-9d75-829e73c8c7c2' { 'Win 8 RC Core OEM:NONSLP' } '4b21a188-2bd9-42a3-a7aa-7349cded8316' { 'Win 8 RC CoreCountrySpecific OEM:NONSLP' } '864a3226-524b-49a3-a36b-a59b102195d7' { 'Win 8 RC CoreN OEM:NONSLP' } '421ad697-7004-4407-a789-096d8a7f376e' { 'Win 8 RC CoreSingleLanguage OEM:NONSLP' } '619e2810-be81-4a4c-b936-07f5ce036c31' { 'Win 8 RC Professional OEM:NONSLP' } 'a9bd9f3f-b4cd-4880-8936-b2c9a53fb287' { 'Win 8 RC ProfessionalN OEM:NONSLP' } 'f3508de7-5ab4-44c6-9391-26b3d2843425' { 'Win 8 RC Core Retail' } 'c8e0f13a-8b91-4e94-871c-8012e684c90d' { 'Win 8 RC CoreN Retail' } '507660dd-3fc4-4df2-81f5-b559467ad56b' { 'Win 8 RC Professional Retail' } 'cfaaaf12-448c-4e55-a5fe-b2cd4a3a96e5' { 'Win 8 RC ProfessionalN Retail' } '3ee91945-db02-46d7-9ad1-f646875c14a2' { 'Win 8 RC ProfessionalWMC Retail' } '4be4f964-08dd-4998-93eb-ca18bf674ef7' { 'Win 8 RC CoreARM Retail' } '72e02447-a7bc-462c-9c3d-e5c919a5140a' { 'Win 8 RC Enterprise Retail' } '59427d26-7f66-4d05-89b8-74c517e9fc87' { 'Win 8 RC EnterpriseN Retail' } '5daa3ad1-1389-44d8-a3c0-a3b6f37e62cc' { 'Win 8 RC CoreCountrySpecific Retail' } 'cf464f7e-029f-4716-848d-d31036ee4880' { 'Win 8 RC CoreSingleLanguage Retail' } 'a02a1fc1-cf90-4321-8dc9-35bb8dfd807f' { 'Win 8 RC EnterpriseEval Retail:TB:Eval' } '3f991e18-0df6-4d25-ba0b-7900aa802da2' { 'Win 8 RC EnterpriseNEval Retail:TB:Eval' } 'ffdd27bd-30ad-4b58-ba24-c7e3b8026443' { 'Win 8 RC Professional;ProfessionalN;Enterprise;EnterpriseN Volume:MAK' } '77560caa-e16a-41b4-b952-739a68ba67cb' { 'Win 8 RTM CoreN Retail' } '625cc89b-693d-45c4-9967-123877fc41e4' { 'Win 8 RTM Core Retail' } '03ccfdc5-a723-45f7-ad80-5a67db815f4a' { 'Win 8 RTM ProfessionalN Retail' } '9e473b6d-b591-4c46-9c44-90a865f22e76' { 'Win 8 RTM Professional Retail' } 'd9ec2828-d29e-4d1c-8fa7-bfe2c4786003' { 'Win 8 RTM ProfessionalWMC Retail' } '9b74255b-afe1-4da7-a143-98d1874b2a6c' { 'Win 8 RTM EnterpriseNEval Retail:TB:Eval' } 'fbd4c5c6-adc6-4740-bc65-b2dc6dc249c1' { 'Win 8 RTM EnterpriseEval Retail:TB:Eval' } '949d6b86-bfa7-4ff1-b4df-17e67bb6320d' { 'Win 8 RTM Professional;ProfessionalN Volume:MAK' } 'ebf245c1-29a8-4daf-9cb1-38dfc608a8c8' { 'Windows 8 ProfessionalN' } 'a98bcd6d-5343-4603-8afe-5908e4611112' { 'Windows 8 Professional' } 'e14997e7-800a-4cf7-ad10-de4b45b578db' { 'Windows 8 EnterpriseN' } '458e1bec-837a-45f6-b9d5-925ed5d299de' { 'Windows 8 Enterprise' } 'b13d53d4-1a21-4d49-9eb1-20c7eafc77d4' { 'Win 8 RTM CoreN OEM:DM' } 'a8a9d177-863c-4cdb-9064-3e3ae90016d7' { 'Win 8 RTM CoreN OEM:NONSLP' } 'ed36b7fc-be9b-4889-b89d-0243f716df2b' { 'Win 8 RTM CoreCountrySpecific OEM:DM' } 'f855e560-9c47-49ae-a88d-a99d1a748b88' { 'Win 8 RTM CoreCountrySpecific OEM:NONSLP' } '71f411ae-7b4b-41bd-b68c-c519c499f950' { 'Win 8 RTM CoreSingleLanguage OEM:DM' } 'a25f4cc7-4bd1-4124-a4b8-4e6508dbbab8' { 'Win 8 RTM CoreSingleLanguage OEM:NONSLP' } '9e4b231b-3e45-41f4-967f-c914f178b6ac' { 'Win 8 RTM Core OEM:DM' } 'c752c2e0-7c17-4af4-bba6-6f8aa1e698bc' { 'Win 8 RTM Core OEM:NONSLP' } '73416275-0240-425f-90d9-d92590083699' { 'Win 8 RTM ProfessionalN OEM:DM' } 'b3e1210d-4dfe-4709-a907-de5b41b9dccd' { 'Win 8 RTM ProfessionalN OEM:NONSLP' } '0cdc4d08-6df6-4eb4-b5b4-a373c3e351e7' { 'Win 8 RTM Professional OEM:DM' } '05e80e9f-93e3-4433-8b6d-bac4ae66d7bc' { 'Win 8 RTM Professional OEM:NONSLP' } 'ec67814b-30e6-4a50-bf7b-d55daf729d1e' { 'Win 8 RTM APPXLOB-Client Volume:MAK' } 'be1b42f3-058d-4063-9446-87061153184b' { 'Win 8 RTM ProfessionalN Retail' } '7f71c90a-6279-4274-b398-37f7e9019dd4' { 'Win 8 RTM Professional Retail' } '7b65fea6-df35-4e65-aaa7-bdf1fef5b24f' { 'Win 8 RTM ProfessionalWMC Retail' } '7e324006-b4e8-4d0d-b52a-44c59af7b03f' { 'Win 8 RTM ProfessionalWMC Retail' } '51fac5ca-ed00-490e-8927-431f3a95bfb2' { 'MultiPoint Server 2012 RTM ServerMultiPointStandard OEM:SLP' } 'f8c153f5-e319-4296-a308-922b83cb319a' { 'MultiPoint Server 2012 RTM ServerMultiPointStandard OEM:NONSLP' } '7d5486c7-e120-4771-b7f1-7b56c6d3170c' { 'Windows Server 2012 MultiPoint Standard' } 'a9508e93-b5f5-4f8b-9a06-fe25403a4d7d' { 'MultiPoint Server 2012 RTM ServerMultiPointStandard Retail' } '8e4dab90-a213-4080-9e9f-6e6960f35374' { 'MultiPoint Server 2012 RTM ServerMultiPointStandard Retail:TB:Eval' } '2dc28392-07cb-4f61-90ae-23017b8abf51' { 'MultiPoint Server 2012 RTM ServerMultiPointStandard Volume:MAK' } '669c7339-15bc-48a4-8cf0-1206bf55d1a6' { 'MultiPoint Server 2012 RTM ServerMultiPointPremium OEM:SLP' } '34ddcc85-496f-4db1-a71f-62a9c368b902' { 'MultiPoint Server 2012 RTM ServerMultiPointPremium OEM:NONSLP' } '95fd1c83-7df5-494a-be8b-1300e1c9d1cd' { 'Windows Server 2012 MultiPoint Premium' } '536d2cc3-38f5-4b21-8172-f5ef9dba24b4' { 'MultiPoint Server 2012 RTM ServerMultiPointPremium Retail' } '3593786c-8910-4a34-821c-ba4d4da29c8a' { 'MultiPoint Server 2012 RTM ServerMultiPointPremium Retail:TB:Eval' } 'c17a905d-1e69-47a0-9f3c-96b3afdeee60' { 'MultiPoint Server 2012 RTM ServerMultiPointPremium Volume:MAK' } 'df094e87-8875-4426-af28-8f1211358e1d' { 'MultiPoint Server 2012 RTM ServerMultiPointStandard OEM:SLP (MUI locked to zh-CN)' } '90ff3b36-abc4-470e-848c-4437f5bbbfaa' { 'MultiPoint Server 2012 RTM ServerMultiPointStandard OEM:NONSLP (MUI locked to zh-CN)' } '111c9d67-815c-4c45-9473-5d85efae92d4' { 'MultiPoint Server 2012 RTM ServerMultiPointPremium OEM:SLP (MUI locked to zh-CN)' } 'cea13691-0803-4dbd-ab10-3ef551b8db90' { 'MultiPoint Server 2012 RTM ServerMultiPointPremium OEM:NONSLP (MUI locked to zh-CN)' } 'd365a015-4ae2-47a3-b622-c435ec68a226' { 'Storage Server 2012 RTM ServerStorageStandard OEM:SLP' } 'e02a8dec-555e-4fba-a83d-b9d58357b8a5' { 'Storage Server 2012 RTM ServerStorageStandard OEM:NONSLP' } 'dc436761-ec03-4520-bcc8-8faf6c6b6437' { 'Storage Server 2012 RTM ServerStorageStandard Retail' } 'dddb6ad0-7889-479f-9234-fb0791a3a465' { 'Storage Server 2012 RTM ServerStorageStandard Volume:MAK' } '0de5ff31-2d62-4912-b1a8-3ea01d2461fd' { 'Storage Server 2012 RTM ServerStorageStandardEval Retail:TB:Eval' } '74c86e3a-132f-4a61-a262-1d9422c2b790' { 'Storage Server 2012 RTM ServerStorageWorkgroup OEM:SLP' } '9e82b0f6-0123-4abb-b0ca-48c66ad298eb' { 'Storage Server 2012 RTM ServerStorageWorkgroup OEM:NONSLP' } '4e01a8cb-6f36-42e1-8cdf-ebf46e452d18' { 'Storage Server 2012 RTM ServerStorageWorkgroup Retail' } '07cad638-30ec-40f7-ad44-63dbe6808a78' { 'Storage Server 2012 RTM ServerStorageWorkgroup Volume:MAK' } 'fb08f53a-e597-40dc-9f08-8bbf99f19b92' { 'Storage Server 2012 RTM ServerStorageWorkgroupEval Retail:TB:Eval' } '7d7240c9-5ea0-4a33-8061-a5f44d061f2e' { 'Windows Server 2012 RTM ServerStandard Retail' } '38d172c7-36b3-4e4b-b435-fd0b06b95c6e' { 'Windows Server 2012 RTM ServerStandardEval Retail:TB:Eval' } 'e8d4f6d1-e7dc-4846-8211-00c73378761c' { 'Windows Server 2012 RTM ServerStandard OEM:SLP' } 'b56ceac0-8372-431d-9790-e8f5c3bc36d9' { 'Windows Server 2012 RTM ServerStandard OEM:NONSLP' } '80f31e41-6acb-44f8-84b6-f977eee1180b' { 'Windows Server 2012 RTM ServerStandard Volume:MAK' } 'f0f5ec41-0d55-4732-af02-440a44a3cf0f' { 'Windows Server 2012 Standard' } 'cd25b1e8-5839-4a96-a769-b6abe3aa5dee' { 'Windows Server 2012 RTM ServerDatacenterEval Retail:TB:Eval' } 'd8c684ee-f1e0-4818-9549-94611b97e30a' { 'Windows Server 2012 RTM ServerDatacenter OEM:SLP' } '6b2835a6-812f-4442-92bb-8a12e39e7b3f' { 'Windows Server 2012 RTM ServerDatacenter OEM:NONSLP' } 'dfcc0524-eb83-4602-a604-cd51ef986848' { 'Windows Server 2012 RTM ServerDatacenter Retail' } '92819457-c0d7-472b-916f-b9258709dea2' { 'Windows Server 2012 RTM ServerDatacenter Volume:MAK' } 'd3643d60-0c42-412d-a7d6-52e6635327f6' { 'Windows Server 2012 Datacenter' } '13b49371-ed44-422a-b6ba-9b4371b1d454' { 'Windows Server 2012 RTM ServerWinFoundation OEM:SLP' } 'e24a6dbc-cf17-42c1-8cd4-0a867174c2e3' { 'Windows Server 2012 RTM ServerWinFoundation OEM:NONSLP' } '72543b18-7883-4883-82cb-7a18b80faa92' { 'Windows Server 2012 RTM ServerWinFoundation Retail' } '3502d53e-5d43-436a-84af-714e8d334f8d' { 'Windows Server 2012 RTM APPXLOB For Server Editions Volume:MAK' } 'e99ef7c9-df7e-4ad8-9bc2-a9c1d89a808b' { 'Windows Server 2012 RTM ServerStandard OEM:SLP (MUI locked to zh-CN)' } 'c0cacd85-5cd9-40cf-9c30-a1ecce06211f' { 'Windows Server 2012 RTM ServerStandard OEM:NONSLP (MUI locked to zh-CN)' } '8b260be1-06da-4c7d-a1cc-a9703eca2e7b' { 'Windows Server 2012 RTM ServerWinFoundation OEM:SLP (MUI locked to zh-CN)' } '9492d0c0-3c29-4cda-a9d0-fbd8fb59d4b9' { 'Windows Server 2012 RTM ServerWinFoundation OEM:NONSLP (MUI locked to zh-CN)' } '6a1e73cb-6d7f-4703-811c-3b8af0f6d161' { 'Windows Server 2012 RTM ServerStandard Volume:MAK (MUI locked to zh-CN)' } '0767b549-b2bc-43d6-b08e-8cff71b70a9c' { 'Windows Server 2012 RTM ServerDatacenter Volume:MAK (MUI locked to zh-CN)' } '6592a9c1-4337-4925-91b0-e3207eb4e40c' { 'Windows Server Essentials 2012 RTM ServerSolution OEM:SLP' } '42e62a84-ff0d-4660-9871-ec7ebf6c5cc5' { 'Windows Server Essentials 2012 RTM ServerSolution OEM:NONSLP' } '0c66cd8b-b268-4891-ac36-b0693655abe5' { 'Windows Server Essentials 2012 RTM ServerSolution Retail' } 'fd490af2-ccdf-4779-90f4-ad1da5ace1b6' { 'Windows Server Essentials 2012 RTM ServerSolution Volume:MAK' } '6ef03962-b897-44b9-b936-c8a630ebe6ae' { 'Windows Server Essentials 2012 RTM ServerSolution Retail:TB:Eval' } '0b4dbe61-245f-4b43-9ce0-bbe1db8f29ff' { 'Win 8 RTM CoreARM OEM:DM' } '73f32753-ba85-4b99-9beb-3b134cfffad7' { 'Windows Embedded Standard 8 RC Embedded Retail:TB:Eval' } 'af6b4d3a-0581-4f85-83d5-ed87c0600f7e' { 'Windows Embedded Standard 8 RC Embedded Retail' } '9db2e1c2-91f3-4828-88f7-d30e32c6f06f' { 'Windows Embedded Standard 8 RC Embedded Retail' } '30cddb12-3c15-426d-bf75-01ac6b76c517' { 'Windows Embedded Standard 8 RC Embedded Retail' } '2b8b57d4-71fa-4861-8c86-b4c10826b30c' { 'Windows Embedded Standard 8 RC Embedded Retail' } '0edd9f4f-77ff-43e5-8297-19c7cafc3d01' { 'Windows Embedded Standard 8 RC Embedded Retail' } '6e260d42-5f13-433b-b0db-e7f9a4ab068a' { 'Windows Embedded Standard 8 RC Embedded Retail' } '98f1827a-79be-4945-8957-304d283c95e5' { 'Windows Embedded Standard 8 RC Embedded Retail:TB:Eval' } '4a8257c9-fb61-4ce5-835b-40af00e6d792' { 'Windows Embedded Standard 8 RC Embedded Retail:TB:Eval' } '0aa31bde-a50d-4544-9434-a8154e1f4ebe' { 'Windows Embedded Standard 8 RC Embedded Retail' } 'a50f1053-beff-49b7-b72e-d337cc349ead' { 'Windows Embedded Standard 8 RC EmbeddedA Retail:TB:Eval' } 'c28eefd5-8556-41a4-80fb-3cef2171fc6a' { 'Windows Embedded Standard 8 RC EmbeddedA Retail' } '9777ea17-3df9-420d-b18b-777a110d9f67' { 'Windows Embedded Standard 8 RC EmbeddedA Retail' } '98f9aebb-ff11-4d1c-a3af-bcd7f09bb778' { 'Windows Embedded Standard 8 RC EmbeddedA Retail' } '3c43283f-b9e9-4d90-a80c-195dbde9ebef' { 'Windows Embedded Standard 8 RC EmbeddedA Retail' } '78545906-7b81-4fd3-b7a2-eeaf22ba1969' { 'Windows Embedded Standard 8 RC EmbeddedA Retail' } 'a61685cb-8274-4b28-9e5a-125457a7c3de' { 'Windows Embedded Standard 8 RC EmbeddedA Retail:TB:Eval' } 'f3aae112-2462-4839-a918-2a82873120b4' { 'Windows Embedded Standard 8 RC EmbeddedA Retail:TB:Eval' } 'e1ef459b-eb4c-4609-baee-9b8b3d9aa222' { 'Windows Embedded Standard 8 RC EmbeddedE Retail:TB:Eval' } '215f2ffd-4c88-416f-966c-0315549c5a26' { 'Windows Embedded Standard 8 RC EmbeddedE Retail' } 'f50df763-fdd2-4700-844a-66aa8f615f73' { 'Windows Embedded Standard 8 RC EmbeddedE Retail' } 'abb44e28-2bce-47a5-b5b7-991ca671d94c' { 'Windows Embedded Standard 8 RC EmbeddedE Retail' } 'af1f0684-e2ee-48eb-ade8-45243019cb0e' { 'Windows Embedded Standard 8 RC EmbeddedE Retail' } 'c6e3410d-e48d-41eb-8ca9-848397f46d02' { 'Win 8 RC CoreN Volume:GVLK' } 'c7a8a09a-571c-4ea8-babc-0cbe4d48a89d' { 'Win 8 RC CoreCountrySpecific Volume:GVLK' } 'b148c3f4-6248-4d2f-8c6d-31cce7ae95c3' { 'Win 8 RC CoreSingleLanguage Volume:GVLK' } '6496e59d-89dc-49eb-a353-09ceb9404845' { 'Windows 10 Core TechPreview' } 'cf59a07b-1a2a-4be0-bfe0-423b5823e663' { 'Windows 10 Professional WMC TechPreview' } '368140cd-5170-4c86-924a-356b3dcf9da6' { 'Win 8 RC CoreARM Retail' } '0901f8d1-0778-4041-8d98-c0f8648a4417' { 'Windows Server 2012 RC ServerStorageStandardEval Retail:TB:Eval' } '1c4e278c-407d-482e-932d-f71f28a2aeb0' { 'Windows Server 2012 RC ServerStorageWorkgroupEval Retail:TB:Eval' } '3a9a9414-24bf-4836-866d-ba13a298efb0' { 'Win 8 RC CoreARM Volume:GVLK' } '197390a0-65f6-4a95-bdc4-55d58a3b0253' { 'Windows 8 CoreN' } '9d5584a2-2d85-419a-982c-a00888bb9ddf' { 'Win 8 RTM CoreCountrySpecific Volume:GVLK' } '8860fcd4-a77b-4a20-9045-a150ff11d609' { 'Win 8 RTM CoreSingleLanguage Volume:GVLK' } 'c04ed6bf-55c8-4b47-9f8e-5a1f31ceee60' { 'Windows 8 Core' } 'a00018a3-f20f-4632-bf7c-8daa5351c914' { 'Windows 8 Professional WMC' } 'af35d7b7-5035-4b63-8972-f0b747b9f4dc' { 'Win 8 RTM CoreARM Volume:GVLK' } '4c0a50bf-4308-45e8-95c9-05759dc0de15' { 'Win 8 RTM CoreARM Retail' } 'dc76fecf-f339-42b7-b9b7-3b0958c3c020' { 'Win 8 RTM CoreCountrySpecific Retail' } '1bb82acd-c4ad-4566-813c-55840d559460' { 'Win 8 RTM CoreSingleLanguage Retail' } 'b0f8a518-2c58-4eb8-9319-084f0eb4ddc4' { 'Win 8 RTM CoreSingleLanguage OEM:DM' } 'bf4b3af6-c071-496d-bfcc-5f0dc12c7798' { 'Win 8 RTM Core OEM:DM' } 'bbc56067-37f8-49dd-87b2-a418a9ba130a' { 'Win 8 RTM Professional OEM:DM' } '8117933e-0789-49b9-a410-bb27c930825e' { 'Windows Embedded Industry 8 TAP-CTP' } '20932bd1-9599-4553-babe-3b49e6378129' { 'Windows Embedded Industry 8 TAP-CTP' } '311689ec-557a-48b1-b913-15f800a4b3b8' { 'Windows Embedded Industry 8 TAP-CTP' } 'c8cca3ca-bea8-4f6f-87e0-4d050ce8f0a9' { 'Windows Embedded Industry 8 TAP-CTP' } '5b394fbc-3997-459d-8a69-135c482b6d9e' { 'Windows Embedded Industry 8 TAP-CTP' } '58E55634-63D9-434A-8B16-ADE5F84737B8' { 'Office15_O365SmallBusPremR_PIN' } '12F1FDF0-D744-48B6-9F9A-B3D7744BEEB5' { 'Office15_O365HomePremR_PIN2' } '0C7137CB-463A-44CA-B6CD-F29EAE4A5201' { 'Office15_O365HomePremR_PIN1' } '21757D20-006A-4BA0-8FDB-9DE272A11CF4' { 'Office15_O365HomePremR_PIN3' } 'B6C0DE84-37D8-41B2-9EAF-8A80A008D58A' { 'Office15_O365HomePremR_PIN4' } '16C432FF-E13E-46A5-AB7D-A1CE7519119A' { 'Office15_O365HomePremR_PIN5' } 'C9D3D19B-60A6-4213-BC72-C1A1A59DC45B' { 'Office15_O365HomePremR_PIN6' } 'B64CFCED-19A0-4C81-8B8D-A72DDC7488BA' { 'Office15_O365HomePremR_PIN7' } 'F8FF7F1C-1D40-4B84-9535-C51F7B3A70D0' { 'Office15_O365HomePremR_PIN8' } '77A58083-E86D-45C1-B56E-77EC925167CF' { 'Office15_O365HomePremR_PIN9' } 'EB778317-EA9A-4FBC-8351-F00EEC82E423' { 'Office15_O365HomePremR_PIN10' } '9CF873F3-5112-4C73-86C5-B94808F675E0' { 'Office15_O365HomePremR_PIN11' } '949594B8-4FBF-44A7-BD8D-911E25BA2938' { 'Office15_O365HomePremR_PIN12' } '2A859A5B-3B1F-43EA-B3E3-C1531CC23363' { 'Office15_O365HomePremR_PIN13' } '5B7C4417-66C2-46DB-A2AF-DD1D811D8DCA' { 'Office15_O365HomePremR_PIN14' } '7E6F537B-AF16-43E6-B07F-F457A96F58FE' { 'Office15_O365HomePremR_PIN15' } 'AE88E21A-D981-45A0-9813-3452F5390A1E' { 'Office15_O365HomePremR_PIN16' } '09322079-6043-4D33-9AB1-FFC268B8248E' { 'Office15_O365HomePremR_PIN17' } 'E0C4D41F-B115-4D51-9E8C-63AF19B6EEB8' { 'Office15_O365HomePremR_PIN18' } '5917FA4B-7A37-4D70-B835-2755CF165E01' { 'Office15_O365HomePremR_PIN19' } '80C94D2C-4DDE-47AE-82D2-A2ADDE81E653' { 'Office15_AccessR_Grace' } '70E3A52B-E7DA-4ABE-A834-B403A5776532' { 'Office15_AccessR_OEM_Perp' } 'AB4D047B-97CF-4126-A69F-34DF08E2F254' { 'Office15_AccessR_Retail' } 'E2E45C14-401F-4955-B05C-B6BDA44BF303' { 'Office15_AccessR_Trial' } '259DE5BE-492B-44B3-9D78-9645F848F7B0' { 'Office15_AccessRuntimeR_Bypass' } '6EE7622C-18D8-4005-9FB7-92DB644A279B' { 'Office Access 2013' } '4374022D-56B8-48C1-9BB7-D8F2FC726343' { 'Office15_AccessVL_MAK' } '360E9813-EA13-4152-B020-B1D0BBF1AC17' { 'Office15_ExcelR_Grace' } '72D74828-C6B2-420B-AC78-68BF3A0E882C' { 'Office15_ExcelR_OEM_Perp' } '1B1D9BD5-12EA-4063-964C-16E7E87D6E08' { 'Office15_ExcelR_Retail' } '5290A34F-2DE8-4965-B53A-2D2976CB7B35' { 'Office15_ExcelR_Trial' } 'F7461D52-7C2B-43B2-8744-EA958E0BD09A' { 'Office Excel 2013' } 'AC1AE7FD-B949-4E04-A330-849BC40638CF' { 'Office15_ExcelVL_MAK' } '323277B1-D81D-4329-973E-497F413BC5D0' { 'Office15_GrooveR_Grace' } 'CFAF5356-49E3-48A8-AB3C-E729AB791250' { 'Office15_GrooveR_Retail' } '7868FC3D-ABA3-4B5D-B4EA-419C608DAB45' { 'Office15_GrooveR_Trial' } 'FB4875EC-0C6B-450F-B82B-AB57D8D1677F' { 'Office15_GrooveVL_KMS_Client' } '4825AC28-CE41-45A7-9E6E-1FED74057601' { 'Office15_GrooveVL_MAK' } '8D071DB8-CDE7-4B90-8862-E2F6B54C91BF' { 'Office15_HomeBusinessDemoR_BypassTrial180' } '0900883A-7F90-4A04-831D-69B5881A0C1C' { 'Office15_HomeBusinessR_Grace' } '1E69B3EE-DA97-421F-BED5-ABCCE247D64E' { 'Office15_HomeBusinessR_OEM_Perp' } 'CD256150-A898-441F-AAC0-9F8F33390E45' { 'Office15_HomeBusinessR_Retail' } 'A2B90E7A-A797-4713-AF90-F0BECF52A1DD' { 'Office15_HomeBusinessR_Subscription' } 'F5BEB18A-6861-4625-A369-9C0A2A5F512F' { 'Office15_HomeBusinessR_SubTest' } '92847EEE-6935-4585-817D-14DCFFE6F607' { 'Office15_HomeBusinessR_SubTrial' } 'BB8DF749-885C-47D8-B33A-7E5A402EF4A3' { 'Office15_HomeBusinessR_Trial' } '6330BD12-06E5-478A-BDF4-0CD90C3FFE65' { 'Office15_HomeStudentDemoR_BypassTrial180' } '1FDFB4E4-F9C9-41C4-B055-C80DAF00697D' { 'Office15_HomeStudentPreInstallR_OEM_ARM' } 'CE6A8540-B478-4070-9ECB-2052DD288047' { 'Office15_HomeStudentR_Grace' } 'BE465D55-C392-4D67-BF45-4DE7829EFC6E' { 'Office15_HomeStudentR_OEM_Perp' } '98685D21-78BD-4C62-BC4F-653344A63035' { 'Office15_HomeStudentR_Retail' } 'F2DE350D-3028-410A-BFAE-283E00B44D0E' { 'Office15_HomeStudentR_Subscription' } 'F3F68D9F-81E5-4C7D-9910-0FD67DC2DDF2' { 'Office15_HomeStudentR_SubTest' } 'D46BBFF5-987C-4DAC-9A8D-069BAC23AE2A' { 'Office15_HomeStudentR_SubTrial' } '6CA43757-B2AF-4C42-9E28-F763C023EDC8' { 'Office15_HomeStudentR_Trial' } 'FBE35AC1-57A8-4D02-9A23-5F97003C37D3' { 'Office15_InfoPathR_Grace' } '44984381-406E-4A35-B1C3-E54F499556E2' { 'Office15_InfoPathR_Retail' } 'EAB6228E-54F9-4DDE-A218-291EA5B16C0A' { 'Office15_InfoPathR_Trial' } 'A30B8040-D68A-423F-B0B5-9CE292EA5A8F' { 'Office InfoPath 2013' } '9E016989-4007-42A6-8051-64EB97110CF2' { 'Office15_InfoPathVL_MAK' } 'FF693BF4-0276-4DDB-BB42-74EF1A0C9F4D' { 'Office15_LyncEntryR_PrepidBypass' } '0EA305CE-B708-4D79-8087-D636AB0F1A4D' { 'Office15_LyncR_Grace' } 'FADA6658-BFC6-4C4E-825A-59A89822CDA8' { 'Office15_LyncR_Retail' } '6A88EBA4-8B91-4553-8764-61129E1E01C7' { 'Office15_LyncR_Trial' } '0FBDE535-558A-4B6E-BDF7-ED6691AA7188' { 'Office15_LyncVDI_Bypass' } '1B9F11E3-C85C-4E1B-BB29-879AD2C909E3' { 'Office Lync 2013' } 'E1264E10-AFAF-4439-A98B-256DF8BB156F' { 'Office15_LyncVL_MAK' } '1C3432FE-153B-439B-82CC-FB46D6F5983A' { 'Office15_MondoR_BypassTrial180' } 'E1F5F599-D875-48CA-93C4-E96C473B29E7' { 'Office15_MondoR_Grace' } '6E2F71BC-1BA0-4620-872E-285F69C3141E' { 'Office15_MondoR_OEM_Perp' } '3169C8DF-F659-4F95-9CC6-3115E6596E83' { 'Office15_MondoR_Retail' } '69EC9152-153B-471A-BF35-77EC88683EAE' { 'Office15_MondoR_Subscription' } '9E7FE6CF-58C6-4F36-9A1B-9C0BFC447ED5' { 'Office15_MondoR_SubTest' } '26421C15-1B53-4E53-B303-F320474618E7' { 'Office15_MondoR_SubTrial' } '2DA73A73-4C36-467F-8A2D-B49090D983B7' { 'Office15_MondoR_Trial' } 'DC981C6B-FC8E-420F-AA43-F8F33E5C0923' { 'Office Mondo 2013' } 'F33485A0-310B-4B72-9A0E-B1D605510DBD' { 'Office15_MondoVL_MAK' } 'C5D855EE-F32B-4A1C-97A8-F0A28CE02F9C' { 'Office15_MOSS_Bypass' } 'CBF97833-C73A-4BAF-9ED3-D47B3CFF51BE' { 'Office15_MOSS_BypassTrial180' } 'B695D087-638E-439A-8BE3-57DB429D8A77' { 'Office15_MOSSFISEnt_Bypass' } '2F05F7AA-6FF7-49AB-884A-14696A7BD1A4' { 'Office15_MOSSFISEnt_BypassTrial180' } '2CD676C7-3937-4AC7-B1B5-565EDA761F13' { 'Office15_MOSSFISStd_Bypass' } '062FDB4F-3FCB-4A53-9B36-03262671B841' { 'Office15_MOSSFISStd_BypassTrial180' } 'B7D84C2B-0754-49E4-B7BE-7EE321DCE0A9' { 'Office15_MOSSPremium_Bypass' } '298A586A-E3C1-42F0-AFE0-4BCFDC2E7CD0' { 'Office15_MOSSPremium_BypassTrial180' } 'D7279DD0-E175-49FE-A623-8FC2FC00AFC4' { 'Office15_O365HomePremR_Grace' } '537EA5B5-7D50-4876-BD38-A53A77CACA32' { 'Office15_O365HomePremR_Subscription1' } '52287AA3-9945-44D1-9046-7A3373666821' { 'Office15_O365HomePremR_Subscription2' } 'C85FE025-B033-4F41-936B-B121521BA1C1' { 'Office15_O365HomePremR_Subscription3' } 'B58A5943-16EA-420F-A611-7B230ACD762C' { 'Office15_O365HomePremR_Subscription4' } '28F64A3F-CF84-46DA-B1E8-2DFA7750E491' { 'Office15_O365HomePremR_Subscription5' } 'A96F8DAE-DA54-4FAD-BDC6-108DA592707A' { 'Office15_O365HomePremR_SubTest1' } '77F47589-2212-4E3B-AD27-A900CE813837' { 'Office15_O365HomePremR_SubTest2' } '96353198-443E-479D-9E80-9A6D72FD1A99' { 'Office15_O365HomePremR_SubTest3' } 'B4AF11BE-5F94-4D8F-9844-CE0D5E0D8680' { 'Office15_O365HomePremR_SubTest4' } '4C1D1588-3088-4796-B3B2-8935F3A0D886' { 'Office15_O365HomePremR_SubTest5' } '951C0FE6-40A8-4400-8003-EEC0686FFBC4' { 'Office15_O365HomePremR_SubTrial1' } 'FB3540BC-A824-4C79-83DA-6F6BD3AC6CCB' { 'Office15_O365HomePremR_SubTrial2' } '86AF9220-9D6F-4575-BEF0-619A9A6AA005' { 'Office15_O365HomePremR_SubTrial3' } 'AE9D158F-9450-4A0C-8C80-DD973C58357C' { 'Office15_O365HomePremR_SubTrial4' } '95820F84-6E8C-4D22-B2CE-54953E9911BC' { 'Office15_O365HomePremR_SubTrial5' } '3AD61E22-E4FE-497F-BDB1-3E51BD872173' { 'Office15_O365ProPlusR_Grace' } '0C4E5E7A-B436-4776-BB89-88E4B14687E2' { 'Office15_O365ProPlusR_Retail' } '149DBCE7-A48E-44DB-8364-A53386CD4580' { 'Office15_O365ProPlusR_Subscription1' } 'E3DACC06-3BC2-4E13-8E59-8E05F3232325' { 'Office15_O365ProPlusR_Subscription2' } 'A8119E32-B17C-4BD3-8950-7D1853F4B412' { 'Office15_O365ProPlusR_Subscription3' } '6E5DB8A5-78E6-4953-B793-7422351AFE88' { 'Office15_O365ProPlusR_Subscription4' } 'FF02E86C-FEF0-4063-B39F-74275CDDD7C3' { 'Office15_O365ProPlusR_Subscription5' } '46D2C0BD-F912-4DDC-8E67-B90EADC3F83C' { 'Office15_O365ProPlusR_SubTrial1' } '26B6A7CE-B174-40AA-A114-316AA56BA9FC' { 'Office15_O365ProPlusR_SubTrial2' } 'B6B47040-B38E-4BE2-BF6A-DABF0C41540A' { 'Office15_O365ProPlusR_SubTrial3' } 'E538D623-C066-433D-A6B7-E0708B1FADF7' { 'Office15_O365ProPlusR_SubTrial4' } 'DFC5A8B0-E9FD-43F7-B4CA-D63F1E749711' { 'Office15_O365ProPlusR_SubTrial5' } '8DED1DA3-5206-4540-A862-E8473B65D742' { 'Office15_O365SmallBusPremR_Grace' } '7A75647F-636F-4607-8E54-E1B7D1AD8930' { 'Office15_O365SmallBusPremR_Retail' } 'BACD4614-5BEF-4A5E-BAFC-DE4C788037A2' { 'Office15_O365SmallBusPremR_Subscription1' } '0BC1DAE4-6158-4A1C-A893-807665B934B2' { 'Office15_O365SmallBusPremR_Subscription2' } '65C607D5-E542-4F09-AD0B-40D6A88B2702' { 'Office15_O365SmallBusPremR_Subscription3' } '4CB3D290-D527-45C2-B079-26842762FDD3' { 'Office15_O365SmallBusPremR_Subscription4' } '881D148A-610E-4F0A-8985-3BE4C0DB2B09' { 'Office15_O365SmallBusPremR_Subscription5' } '6AE65B85-E04E-4368-80A7-786D5766325E' { 'Office15_O365SmallBusPremR_SubTrial1' } '2030A84D-D6C7-4968-8CEC-CF4737ACC337' { 'Office15_O365SmallBusPremR_SubTrial2' } '2F756D47-E1B1-4D2A-922B-4D76F35D007D' { 'Office15_O365SmallBusPremR_SubTrial3' } 'C5A706AC-9733-4061-8242-28EB639F1B29' { 'Office15_O365SmallBusPremR_SubTrial4' } '090506FC-50F8-4C00-B8C7-91982A2A7C99' { 'Office15_O365SmallBusPremR_SubTrial5' } '12275A09-FEC0-45A5-8B59-446432F13CD6' { 'Office15_OfficeLPK_Bypass' } 'FD97BCB1-8F3C-4185-91D2-A2AB7EE278C2' { 'Office15_OneNoteR_Grace' } 'BA6BA8B7-2A1D-4659-BA45-4BAC007B1698' { 'Office15_OneNoteR_OEM_Perp' } '8B524BCC-67EA-4876-A509-45E46F6347E8' { 'Office15_OneNoteR_Retail' } 'B6DDD089-E96F-43F7-9A77-440E6F3CD38E' { 'Office15_OneNoteR_Trial' } 'EFE1F3E6-AEA2-4144-A208-32AA872B6545' { 'Office OneNote 2013' } 'B067E965-7521-455B-B9F7-C740204578A2' { 'Office15_OneNoteVL_MAK' } 'A3A4593B-97DC-4364-9910-70202AF2D0B5' { 'Office15_OutlookR_Grace' } 'A1B2DD4A-29DD-4B74-A6FE-BF3463C00F70' { 'Office15_OutlookR_OEM_Perp' } '12004B48-E6C8-4FFA-AD5A-AC8D4467765A' { 'Office15_OutlookR_Retail' } 'AF3A9181-8B97-4B28-B2B1-A7AC6F8C3A05' { 'Office15_OutlookR_Trial' } '771C3AFA-50C5-443F-B151-FF2546D863A0' { 'Office OutLook 2013' } '8D577C50-AE5E-47FD-A240-24986F73D503' { 'Office15_OutlookVL_MAK' } 'B845985D-10AE-449A-96AF-43CEDCE9363D' { 'Office15_PersonalDemoR_BypassTrial180' } 'A75ADD9F-3982-464D-93FE-7D3BEC07FB46' { 'Office15_PersonalR_Grace' } '1EFD9BEC-770F-4F5D-BC66-138ACAF5019E' { 'Office15_PersonalR_OEM_Perp' } '17E9DF2D-ED91-4382-904B-4FED6A12CAF0' { 'Office15_PersonalR_Retail' } '621292D6-D737-40F8-A6E8-A9D0B852AEC2' { 'Office15_PersonalR_Trial' } '1DC00701-03AF-4680-B2AF-007FFC758A1F' { 'Office15_MondoR_KMS_Automation' } 'C86F17B4-67E0-459E-B785-F09FF54600E4' { 'Office15_MondoPreInstallR_OEM_ARM' } 'F3A4939A-92A7-47CC-9D05-7C7DB72DD968' { 'Office15_PowerPointR_Grace' } 'AC867F78-3A34-4C70-8D80-53B6F8C4092C' { 'Office15_PowerPointR_OEM_Perp' } '31743B82-BFBC-44B6-AA12-85D42E644D5B' { 'Office15_PowerPointR_Retail' } '52C5FBED-8BFB-4CB4-8BFF-02929CD31A98' { 'Office15_PowerPointR_Trial' } '8C762649-97D1-4953-AD27-B7E2C25B972E' { 'Office PowerPoint 2013' } 'E40DCB44-1D5C-4085-8E8F-943F33C4F004' { 'Office15_PowerPointVL_MAK' } '42C3EF3F-AB7C-482A-8060-B2E57B25D4BA' { 'Office15_ProfessionalDemoR_BypassTrial180' } 'A9419E0F-8A3F-4E58-A143-E4B4803F85D2' { 'Office15_ProfessionalR_Grace' } '3178076B-5F4E-4ACE-A160-8AAE7F002944' { 'Office15_ProfessionalR_OEM_Perp' } '44BC70E2-FB83-4B09-9082-E5557E0C2EDE' { 'Office15_ProfessionalR_Retail' } '1FCA7624-3A67-4A02-9EF3-6C363E35C8CD' { 'Office15_ProfessionalR_Trial' } '781038A1-800F-4DDF-AB26-70A98774F8AD' { 'Office15_ProjectLPK_Bypass' } '4031E9F3-E451-4E18-BEDD-91CAA3690C91' { 'Office15_ProjectProCO365R_Subscription' } 'AE1310F8-2F53-4994-93A3-C61502E91D04' { 'Office15_ProjectProCO365R_SubTest' } '2B456DC8-145A-4D2D-9C72-703D1CD8C50E' { 'Office15_ProjectProCO365R_SubTrial' } '40E9B240-879B-4BA4-BFB0-2E94CA998EEB' { 'Office15_ProjectProDemoR_BypassTrial180' } 'A1D1EFF9-1301-4709-BC2C-B6FCE5C158D8' { 'Office15_ProjectProMSDNR_Retail' } '2F72340C-B555-418D-8B46-355944FE66B8' { 'Office15_ProjectProO365R_Subscription' } '539165C6-09E3-4F4B-9C29-EEC86FDF545F' { 'Office15_ProjectProO365R_SubTest' } '330A4ACE-9CC1-4AF5-8D36-8D0681194618' { 'Office15_ProjectProO365R_SubTrial' } 'AE7B1E26-3AEE-4FE3-9C5B-88F05E36CD34' { 'Office15_ProjectProR_Grace' } '3B5C7D36-1314-41C0-B405-15C558435F7D' { 'Office15_ProjectProR_OEM_Perp' } 'F2435DE4-5FC0-4E5B-AC97-34F515EC5EE7' { 'Office15_ProjectProR_Retail' } '41937580-5DDD-4806-9089-5266D567219F' { 'Office15_ProjectProR_Trial' } '4A5D124A-E620-44BA-B6FF-658961B33B9A' { 'Office Project Pro 2013' } 'ED34DC89-1C27-4ECD-8B2F-63D0F4CEDC32' { 'Office15_ProjectProVL_MAK' } '35466B1A-B17B-4DFB-A703-F74E2A1F5F5E' { 'Office15_ProjectServer_Bypass' } 'BC7BAF08-4D97-462C-8411-341052402E71' { 'Office15_ProjectServer_BypassTrial180' } '053D3F49-B913-4B33-935E-F930DECD8709' { 'Office15_ProjectStdCO365R_Subscription' } '594E9433-6492-434D-BFCE-4014F55D3909' { 'Office15_ProjectStdCO365R_SubTest' } 'B480F090-28FE-4A67-8885-62322037A0CD' { 'Office15_ProjectStdCO365R_SubTrial' } '58D95B09-6AF6-453D-A976-8EF0AE0316B1' { 'Office15_ProjectStdO365R_Subscription' } '5DF83BED-7E8E-4A28-80EF-D8B0A004CF3E' { 'Office15_ProjectStdO365R_SubTest' } '75F08E14-5CF5-4D59-9CEF-DA3194B6FD24' { 'Office15_ProjectStdO365R_SubTrial' } '6883893B-9DD9-4943-ACEB-58327AFDC194' { 'Office15_ProjectStdR_Grace' } '519FBBDE-79A6-4793-8A84-57F6541579C9' { 'Office15_ProjectStdR_OEM_Perp' } '5517E6A2-739B-4822-946F-7F0F1C5934B1' { 'Office15_ProjectStdR_Retail' } '427A28D1-D17C-4ABF-B717-32C780BA6F07' { 'Office Project Standard 2013' } '2B9E4A37-6230-4B42-BEE2-E25CE86C8C7A' { 'Office15_ProjectStdVL_MAK' } '82E42CB5-1741-46FB-8F2F-AC8414741E8D' { 'Office15_ProPlusDemoR_BypassTrial180' } '41499869-4103-4D3B-9DA6-D07DF41B6E39' { 'Office15_ProPlusMSDNR_Retail' } '1B686580-9FB1-4B88-BFBA-EAE7C0DA31AD' { 'Office15_ProPlusR_Grace' } 'BB00F022-69DA-4BE3-968D-D9BCD41CF814' { 'Office15_ProPlusR_OEM_Perp' } '064383FA-1538-491C-859B-0ECAB169A0AB' { 'Office15_ProPlusR_Retail' } 'DB56DEC3-34F2-4BC5-A7B9-ECC3CC51C12A' { 'Office15_ProPlusR_Trial' } 'B322DA9C-A2E2-4058-9E4E-F59A6970BD69' { 'Office Professional Plus 2013' } '2B88C4F2-EA8F-43CD-805E-4D41346E18A7' { 'Office15_ProPlusVL_MAK' } '86E17AEA-A932-42C4-8651-95DE6CB37A08' { 'Office15_PTK_Bypass' } 'DB8E8683-A848-473B-B2E7-D1DE4D042095' { 'Office15_PublisherR_Grace' } 'CC802B96-22A4-4A90-8757-2ABB7B74484A' { 'Office15_PublisherR_OEM_Perp' } 'C3A0814A-70A4-471F-AF37-2313A6331111' { 'Office15_PublisherR_Retail' } '615FEE6D-2E96-487F-98B2-51A892788A70' { 'Office15_PublisherR_Trial' } '00C79FF1-6850-443D-BF61-71CDE0DE305F' { 'Office Publisher 2013' } '38EA49F6-AD1D-43F1-9888-99A35D7C9409' { 'Office15_PublisherVL_MAK' } '7930E9BD-12B8-4B32-88CE-733B4A594EDF' { 'Office15_ServerLPK_Bypass' } 'BA3E3833-6A7E-445A-89D0-7802A9A68588' { 'Office15_SPDFreeR_PrepidBypass' } 'A884AB66-DE2E-4505-BA8B-3FB9DAF149ED' { 'Office15_StandardMSDNR_Retail' } '370155F7-D1EC-4B8B-9FBA-EE8ACC6E0BB7' { 'Office15_StandardR_Grace' } '32255C0A-16B4-4CE2-B388-8A4267E219EB' { 'Office15_StandardR_Retail' } '603EDDF5-E827-4233-AFDE-4084B3F3B30C' { 'Office15_StandardR_Trial' } 'B13AFB38-CD79-4AE5-9F7F-EED058D750CA' { 'Office Visio Standard 2013 Office Standard 2013' } 'A24CCA51-3D54-4C41-8A76-4031F5338CB2' { 'Office15_StandardVL_MAK' } 'E0132983-CA20-4390-8BBA-8FDA37E7C86B' { 'Office15_VisioLPK_Bypass' } '4B2E77A0-8321-42A0-B36D-66A2CDB27AF4' { 'Office15_VisioProCO365R_Subscription' } '6C44E4BD-C6DB-474A-877E-1BB899ACA206' { 'Office15_VisioProCO365R_SubTest' } '79EEBE53-530A-4869-B56B-B4FFE0A1B831' { 'Office15_VisioProCO365R_SubTrial' } '6A9BD082-8C07-462C-8D19-18C2CAE0FB02' { 'Office15_VisioProDemoR_BypassTrial180' } 'A491EFAD-26CE-4ED7-B722-4569BA761D14' { 'Office15_VisioProMSDNR_Retail' } 'A56A3B37-3A35-4BBB-A036-EEE5F1898EEE' { 'Office15_VisioProO365R_Subscription' } '27B162B5-F5D2-40E9-8AF3-D42FF4572BD4' { 'Office15_VisioProO365R_SubTest' } '402DFB6D-631E-4A3F-9A5A-BE753BFD84C5' { 'Office15_VisioProO365R_SubTrial' } '024EA285-2685-48BC-87EF-79B48CC8C027' { 'Office15_VisioProR_Grace' } '141F6878-2591-4231-A476-027432E28B2F' { 'Office15_VisioProR_OEM_Perp' } '15D12AD4-622D-4257-976C-5EB3282FB93D' { 'Office15_VisioProR_Retail' } 'F35E39C1-A41F-47C9-A204-2CA3C4B13548' { 'Office15_VisioProR_Trial' } 'E13AC10E-75D0-4AFF-A0CD-764982CF541C' { 'Office Visio Pro 2013' } '3E4294DD-A765-49BC-8DBD-CF8B62A4BD3D' { 'Office15_VisioProVL_MAK' } 'C5A7B998-FAE7-4F08-9802-9A2216F1EC2B' { 'Office15_VisioStdCO365R_Subscription' } '1B170697-99F8-4B3C-861D-FBDBE5303A8A' { 'Office15_VisioStdCO365R_SubTest' } '2F632ABD-D62A-46C8-BF95-70186096F1ED' { 'Office15_VisioStdCO365R_SubTrial' } '980F9E3E-F5A8-41C8-8596-61404ADDF677' { 'Office15_VisioStdO365R_Subscription' } 'CEED49FA-52AD-4C90-B7D4-926ECDFD7F52' { 'Office15_VisioStdO365R_SubTest' } '2E5F5521-6EFA-4E29-804D-993C1D1D7406' { 'Office15_VisioStdO365R_SubTrial' } 'F97246FA-C8CE-4D41-B6F7-AE718E7891C5' { 'Office15_VisioStdR_Grace' } 'E67ED831-B287-418B-ABC3-D68403A36166' { 'Office15_VisioStdR_OEM_Perp' } 'DAE597CE-5823-4C77-9580-7268B93A4B23' { 'Office15_VisioStdR_Retail' } 'AC4EFAF0-F81F-4F61-BDF7-EA32B02AB117' { 'Office15_VisioStdVL_KMS_Client' } '44A1F6FF-0876-4EDB-9169-DBB43101EE89' { 'Office15_VisioStdVL_MAK' } 'F3B8948B-6F0F-4297-B174-FE3E71416BCA' { 'Office15_WacServerLPK_Bypass' } 'D6B57A0D-AE69-4A3E-B031-1F993EE52EDC' { 'Office15_WCServer_Bypass' } '92485559-060B-44A7-9FC4-207C7A9BD39C' { 'Office15_WordR_Grace' } '6A817637-8CA1-45D5-A53D-6B97FB8AF382' { 'Office15_WordR_OEM_Perp' } '191509F2-6977-456F-AB30-CF0492B1E93A' { 'Office15_WordR_Retail' } 'AEA37447-9EE8-4EF5-8032-B0C955B6A4F5' { 'Office15_WordR_Trial' } 'D9F5B1C6-5386-495A-88F9-9AD6B41AC9B3' { 'Office Word 2013' } '9CEDEF15-BE37-4FF0-A08A-13A045540641' { 'Office15_WordVL_MAK' } '6b766db0-a520-4418-97b7-a0aea118bf48' { 'Win 8 RTM CoreARM OEM:DM' } '2cbb1485-df52-4c29-9815-da6998e056e1' { 'Windows Embedded Standard 8 Beta EmbeddedA Retail:TB:Eval' } 'b012fb7a-5275-4f58-a592-c7b8ca13fea5' { 'Windows Embedded Standard 8 Beta EmbeddedA OEM:DM' } '58c1051b-bb3c-4367-9b99-9ef39046aa97' { 'Windows Embedded Standard 8 Beta EmbeddedA OEM:NONSLP' } '78ac7410-fd18-4dbd-9982-eb4161a6653a' { 'Win 8 RTM CoreARM OEM:NONSLP' } 'd41625e4-a75a-44df-8d16-574c95f6d6d3' { 'POSReady 8 Beta EmbeddedIndustry OEM:NONSLP' } '34651e08-53a1-4a92-8ec8-30eb8e0f73a5' { 'POSReady 8 Beta EmbeddedIndustry Retail:TB:Eval' } 'b7787ae7-4bf8-41e4-854d-c8f853d1606f' { 'POSReady 8 Beta EmbeddedIndustry Retail' } 'c0708dbd-d736-4389-b4d8-27b2f899524a' { 'POSReady 8 Beta EmbeddedIndustryE Retail' } '5ca3e488-dbae-4fae-8282-a98fbcd21126' { 'POSReady 8 Beta EmbeddedIndustryE Volume:GVLK' } '20f611bc-c50d-4c3a-878e-4338e46141e2' { 'POSReady 8 Beta EmbeddedIndustryE Volume:MAK' } '75341c16-374d-4b0b-b248-bec1e0d9e44b' { 'POSReady 8 Beta EmbeddedIndustryE Retail:TB:Eval' } 'ab1a6590-d3e3-42e7-935b-810a2494a432' { 'Windows Embedded Standard 8 RTM Embedded Retail:TB:Eval' } 'ab75630e-1c24-4f68-bfca-c374f59ae815' { 'Windows Embedded Standard 8 RTM Embedded Retail:TB:Eval' } 'ea764f2d-56c4-4d1b-b45f-46e068eb3619' { 'Windows Embedded Standard 8 RTM Embedded Retail:TB:Eval' } 'fc474b8d-d005-46fc-96f5-f230d5792cd9' { 'Windows Embedded Standard 8 RTM Embedded Retail' } 'b06bdff0-f320-48eb-97d1-28d5e18c7a34' { 'Windows Embedded Standard 8 RTM APPXLOB-Embedded OEM:NONSLP' } 'ac3c60d9-5b2f-4fe6-94bc-4060f1f8c3dc' { 'Windows Embedded Standard 8 RTM APPXLOB-Embedded Retail:TB:Eval' } '1e58c9d7-e3f1-4f69-9039-1f162463ac2c' { 'Windows Embedded Standard 8 RTM APPXLOB-Embedded Volume:MAK' } '4b01cd02-8a33-4887-9f32-f3146ad7fe45' { 'Windows Embedded Standard 8 RTM APPXLOB-Embedded Volume:MAK' } '2bd32cda-9fdf-4048-a750-113b14b0eb7e' { 'Windows Embedded Standard 8 RTM APPXLOB-Embedded Volume:MAK' } '890c2bc9-b3be-4460-b8ce-d7cf882fab53' { 'Windows Embedded Standard 8 RTM Embedded OEM:NONSLP' } '9759968d-6770-4c25-8941-0ceb69eb5fbb' { 'Windows Embedded Standard 8 RTM Embedded OEM:NONSLP' } '93cfeb06-05af-4ae8-97ff-c3fd575e5cee' { 'Windows Embedded Standard 8 RTM Embedded OEM:DM' } '84171b32-6c39-492c-9e0b-41ad14ff26d8' { 'Windows Embedded Standard 8 RTM Embedded OEM:DM' } '331cc226-0a4d-445d-b2f7-d58cb17e5e71' { 'Windows Embedded Standard 8 RTM Embedded Retail' } '8f365ba6-c1b9-4223-98fc-282a0756a3ed' { 'Windows Server Essentials 2012 RTM ServerSolution Volume:GVLK' } 'f5087a06-1ddc-4de3-95b7-8d8a4dbb1b3f' { 'Windows vNext Test ServerStandard VT:IA' } '062c594b-8615-41fd-a462-87670482165c' { 'Windows vNext Test ServerDatacenter VT:IA' } '93f2ea62-ee1e-4324-886f-57055ad7f674' { 'Windows Embedded Industry 8 RTM EmbeddedIndustry Retail:TB:Eval' } '2152e4c0-0681-4b7b-ab57-b24df0c7416c' { 'Windows Embedded Industry 8 RTM EmbeddedIndustry Retail:TB:Eval' } 'c4fb0b3b-90b4-487b-ae12-64ba1dccf04f' { 'Windows Embedded Industry 8 RTM EmbeddedIndustry Retail:TB:Eval' } 'd728c961-34d6-45ba-91bb-87a8faf46e44' { 'Windows Embedded Industry 8 RTM EmbeddedIndustry Retail' } '73e01f81-b9d8-4a44-8d5a-534229107bfe' { 'Windows Embedded Industry 8 RTM EmbeddedIndustry OEM:NONSLP' } 'fc7416d9-0cc1-4bcc-b17f-39d2cc192b6a' { 'Windows Embedded Industry 8 RTM EmbeddedIndustry OEM:DM' } 'b4d532ea-30eb-4c54-b2e3-4fc6cbc048b6' { 'Windows Embedded Industry 8 RTM EmbeddedIndustry OEM:DM' } '5463f2ee-278d-4736-9d3f-b9d95a7f1f60' { 'Windows Embedded Industry 8 RTM EmbeddedIndustry OEM:DM' } 'ffee4506-8519-49f8-9642-f4688250ec08' { 'Windows Embedded Industry 8 RTM EmbeddedIndustry Volume:MAK' } '251ef9bf-2005-442f-94c4-86307de7bb32' { 'Windows Embedded Industry 8 RTM APPXLOB-Embedded Volume:MAK' } '6c2bb877-b5e2-4812-9b6f-3d6dae62b089' { 'Windows Embedded Industry 8 RTM APPXLOB-Embedded Volume:MAK' } '7f70fca8-36c1-4c4f-a9b0-d329697d213f' { 'Windows Embedded Industry 8 RTM APPXLOB-Embedded Volume:MAK' } '10018baf-ce21-4060-80bd-47fe74ed4dab' { 'Windows Embedded Industry 8 RTM EmbeddedIndustry Volume:GVLK' } '95b3d457-44b1-49f7-a364-fe2768425030' { 'Windows Embedded Industry 8 RTM EmbeddedIndustryE Retail:TB:Eval' } '5909e8ba-2f87-4374-994a-642796003e94' { 'Windows Embedded Industry 8 RTM EmbeddedIndustryE Retail:TB:Eval' } '88c1be07-44de-41a5-a94d-58de36ca43fc' { 'Windows Embedded Industry 8 RTM EmbeddedIndustryE Retail:TB:Eval' } 'e815ea0d-7377-4fc0-83bc-d5548c2c7ada' { 'Windows Embedded Industry 8 RTM EmbeddedIndustryE Retail' } 'f969bfd3-472d-413b-8c94-164c3bff4c0a' { 'Windows Embedded Industry 8 RTM EmbeddedIndustryE Volume:MAK' } '70f13f47-e981-4a64-86ba-3f4f60e9abf8' { 'Windows Embedded Industry 8 RTM APPXLOB-Embedded Volume:MAK' } '6e53f42e-fe47-48e2-885c-3aec236327ca' { 'Windows Embedded Industry 8 RTM APPXLOB-Embedded Volume:MAK' } '6721c983-a7b8-4a81-800d-428e6b7d8a8e' { 'Windows Embedded Industry 8 RTM APPXLOB-Embedded Volume:MAK' } '18db1848-12e0-4167-b9d7-da7fcda507db' { 'Windows Embedded Industry 8 RTM EmbeddedIndustryE Volume:GVLK' } 'd112cbd5-ad2f-4f37-9cb4-bc31c08211e2' { 'ServerCloudStorage Next Beta ServerCloudStorage OEM:SLP' } 'f270896d-e836-4357-a27d-ba1dbc6f3743' { 'ServerCloudStorage Next Beta ServerCloudStorage OEM:NONSLP' } '5F80CD86-1A00-4F1E-BAB1-EA4A5959F380' { 'CRM 6 RTM Enterprise Server Volume:GVLK' } 'D0B07E3F-9921-4307-AD2C-7B4EAB9E5D61' { 'CRM 6 RTM Enterprise Server Retail' } '39575532-5539-43C7-97A8-5124C6D921A0' { 'CRM 6 RTM Online Server Retail' } '717F99B8-4C2B-48FF-9B67-9B584FC6F38E' { 'CRM 6 RTM Service Provider Volume:GVLK' } '9ACCE7BA-FADC-48E6-A3FB-B8DD772326D4' { 'CRM 6 RTM Workgroup Server Volume:GVLK' } 'F225B346-050C-4E01-9FA6-856EB78F8BE7' { 'CRM 6 RTM Workgroup Server Retail' } 'a5660459-eecb-402a-ae58-9256b9214f76' { 'Windows Embedded Industry Next Beta EmbeddedIndustryEval Retail:TB:Eval' } 'b7610cd6-9f6e-4a6b-9846-1e9f30bc95c2' { 'Windows Embedded Industry Next Beta EmbeddedIndustry OEM:NONSLP' } '4451c642-6a57-4b2b-932b-5d94129897ef' { 'Windows Embedded Industry Next Beta EmbeddedIndustry OEM:DM' } 'c35a9336-fb02-48db-8f4d-245c17f03667' { 'Windows Embedded Industry Next Beta EmbeddedIndustry Volume:GVLK' } '68bc2dd6-9a01-477b-ac7f-88b9709af75d' { 'Windows Embedded Industry Next Beta EmbeddedIndustry Volume:MAK' } '87c67764-b6e6-4b18-b603-d4fd67012083' { 'Windows Embedded Industry Next Beta EmbeddedIndustryEEval Retail:TB:Eval' } '3e548858-b936-48e1-aa61-8a25ba990dab' { 'Windows Embedded Industry Next Beta EmbeddedIndustryE OEM:NONSLP' } '4daf1e3e-6be9-4848-8f5a-a18a0d2895e1' { 'Windows Embedded Industry Next Beta EmbeddedIndustryE Volume:GVLK' } '56a82112-00ad-4497-9eea-8ac182430dc5' { 'Windows Embedded Industry Next Beta EmbeddedIndustryE Volume:MAK' } '329cf0e4-4ade-4391-9f71-e225f53c2ee1' { 'Windows Embedded Industry Next Beta EmbeddedIndustryA OEM:NONSLP' } '6c4dba01-6fbf-48ae-9271-70b6a17c4a40' { 'Windows Embedded Industry Next Beta EmbeddedIndustryA OEM:DM' } '9cc2564c-292e-4d8a-b9f9-1f5007d9409a' { 'Windows Embedded Industry Next Beta EmbeddedIndustryA Volume:GVLK' } '268345e7-ad2a-4e18-ab96-6918863f3c1d' { 'Windows Embedded Industry Next Beta EmbeddedIndustryA Volume:MAK' } '4a9eba79-a93c-438c-9930-7922f2bbfd33' { 'Windows Server Next Beta ServerStandard VT:IA' } 'c9809b5d-c3c4-4d2d-a27e-ec3b273d4307' { 'Windows Server Next Beta ServerDatacenter VT:IA' } '1103486e-71e0-4679-9441-1970859a2aa6' { 'Windows Server Next Beta ServerStandard OEM:SLP' } 'a947b8eb-eb40-4864-97d9-5bd3a9d749f6' { 'Windows Server Next Beta ServerDatacenter OEM:SLP' } 'a293499e-5c36-4383-a10d-621ed3fed043' { 'Windows Server Essentials Next Beta ServerSolution VT:IA' } '439e8c91-ff38-4ecb-ba0b-32658680c952' { 'Windows Server 12 R2 RTM ServerStandard Retail' } '4fc45a88-26b5-4cf9-9eef-769ee3f0a016' { 'Windows Server 12 R2 RTM ServerStandardEval Retail:TB:Eval' } 'c7e5dd52-ef14-4bf6-bc71-1bf5f5794cd0' { 'Windows Server 12 R2 RTM ServerStandard OEM:SLP' } 'd3081572-e3f0-49f5-8b83-ec763c014570' { 'Windows Server 12 R2 RTM ServerStandard OEM:SLP (MUI locked to zh-CN)' } '5b338ef7-8d99-45cb-bb59-618bd328b4a4' { 'Windows Server 12 R2 RTM ServerStandard OEM:NONSLP' } 'c6b0fae3-70ea-4a98-95f2-587dc1ea4131' { 'Windows Server 12 R2 RTM ServerStandard OEM:NONSLP (MUI locked to zh-CN)' } '979d2e65-04b7-44c9-9d7b-ef4028168cba' { 'Windows Server 12 R2 RTM ServerStandard Volume:MAK' } 'b3ca044e-a358-4d68-9883-aaa2941aca99' { 'Windows Server 2012 R2 Standard' } 'c2d61e88-5598-4e77-aae2-286dc6670a89' { 'Windows Server 12 R2 RTM ServerDatacenter Retail' } 'e628c5e8-2300-4429-8b80-a8b21bd7ce0a' { 'Windows Server 12 R2 RTM ServerDatacenterEval Retail:TB:Eval' } '66d129b6-eae9-414e-a39a-ea5b8be961cc' { 'Windows Server 12 R2 RTM ServerDatacenter OEM:SLP' } 'fecbc8f2-a4b1-402a-92e7-5d81a6fe3e80' { 'Windows Server 12 R2 RTM ServerDatacenter OEM:SLP (MUI locked to zh-CN)' } '1226e046-263d-414c-824f-0d4f458cee3a' { 'Windows Server 12 R2 RTM ServerDatacenter OEM:NONSLP' } '1cc95b8e-1b6e-42cc-9768-9e84ce28cc3f' { 'Windows Server 12 R2 RTM ServerDatacenter OEM:NONSLP (MUI locked to zh-CN)' } '641f81b2-63c2-47dd-aba7-c24bf651ff85' { 'Windows Server 12 R2 RTM ServerDatacenter Volume:MAK' } '00091344-1ea4-4f37-b789-01750ba6988c' { 'Windows Server 2012 R2 Datacenter' } 'c77db0a9-53d5-4374-b5fb-474e00a691be' { 'Windows Server 12 R2 RTM ServerWinFoundation OEM:SLP' } 'a2dc4de1-b9fe-47a2-8717-67a5d4ca2ba4' { 'Windows Server 12 R2 RTM ServerWinFoundation OEM:SLP (MUI locked to zh-CN)' } '00b997e2-864d-40b5-b80c-112aaed7bc5b' { 'Windows Server 12 R2 RTM ServerWinFoundation OEM:NONSLP' } '398cf8ec-a090-4984-9f90-e7938babdc55' { 'Windows Server 12 R2 RTM ServerWinFoundation OEM:NONSLP (MUI locked to zh-CN)' } 'bffb487e-c76f-49ff-b006-169d06ef9d67' { 'Windows Server 12 R2 RTM ServerWinFoundation Retail' } 'f002931d-5536-4908-8d93-40ae584e24d6' { 'Windows Server 12 R2 RTM ServerStandard VT:IA' } '640e7014-6f45-4106-bd1d-ac17a812a2d1' { 'Windows Server 12 R2 RTM ServerDatacenter VT:IA' } '1f69990a-882c-41d0-bc52-f294badd6a84' { 'ServerCloudStorage 12 R2 RTM ServerCloudStorage Retail' } '581e30e6-c16d-4db7-9797-386576439267' { 'ServerCloudStorage 12 R2 RTM ServerCloudStorage OEM:SLP' } '8a72972b-7b86-4d8d-a4e4-79da4e916297' { 'ServerCloudStorage 12 R2 RTM ServerCloudStorage OEM:NONSLP' } 'b743a2be-68d4-4dd3-af32-92425b7bb623' { 'Windows Server 2012 R2 Cloud Storage' } 'e7cb1f59-5bff-42e2-831e-f2b9a44c3961' { 'Storage Server 2012 R2 RTM ServerStorageStandard OEM:SLP' } '3b1fa934-29ab-4ae2-bf6e-ccbaef7f3031' { 'Storage Server 2012 R2 RTM ServerStorageStandard OEM:NONSLP' } '7ec7a624-e060-445c-b52b-2621e69e016b' { 'Storage Server 2012 R2 RTM ServerStorageStandard Retail' } 'b9f3109c-bfa9-4f37-9824-6dba9ee62056' { 'Storage Server 2012 R2 RTM ServerStorageStandardEval Retail:TB:Eval' } '2d3b7269-65f4-467d-9d51-dbe0e5a4e668' { 'Storage Server 2012 R2 RTM ServerStorageWorkgroupEval Retail:TB:Eval' } '6f35b08e-e4ca-4c87-834e-6a59e64b9d0d' { 'Storage Server 2012 R2 RTM ServerStorageWorkgroup OEM:SLP' } '667cf149-d9e5-40bf-8047-53bd15bcdb0a' { 'Storage Server 2012 R2 RTM ServerStorageWorkgroup OEM:NONSLP' } '20ea7d3b-99c1-4d42-994f-a103fdac65d5' { 'Storage Server 2012 R2 RTM ServerStorageWorkgroup Retail' } '2994120e-2119-47df-b779-076c79acc297' { 'Windows Server Essentials 2012 R2 RTM ServerSolution OEM:SLP' } '64ae227f-0baf-4f75-ab38-79887da96115' { 'Windows Server Essentials 2012 R2 RTM ServerSolution OEM:SLP (MUI locked to zh-CN)' } 'e96022a1-3247-4125-9ddc-4c6068ab3bfc' { 'Windows Server Essentials 2012 R2 RTM ServerSolution OEM:NONSLP' } '866e0a28-d082-41fb-b584-411e2ff09b90' { 'Windows Server Essentials 2012 R2 RTM ServerSolution OEM:NONSLP (MUI locked to zh-CN)' } '9986e719-0599-4daa-b72e-ac8e505031db' { 'Windows Server Essentials 2012 R2 RTM ServerSolution Retail' } '0c02eb79-fa61-43e0-9b8b-c6584c85caf8' { 'Windows Server Essentials 2012 R2 RTM ServerSolution Volume:MAK' } '21db6ba4-9a7b-4a14-9e29-64a60c59301d' { 'Windows Server Essentials 2012 R2' } '2528222c-11e5-4238-ac71-e187f964c787' { 'Windows Server Essentials 2012 R2 RTM ServerSolution VT:IA' } 'c7c00280-b24d-4e82-89ca-4f1288eb1d9e' { 'Win 8.1 RTM Core OEM:DM' } '51b43152-a885-432f-a1cb-a575ca416784' { 'Win 8.1 RTM Professional OEM:DM' } '24c2ee7a-4a61-448d-a8b0-a1a08edfd867' { 'Win 8.1 RTM ProfessionalN OEM:DM' } 'b080aea2-e6c5-4b22-838e-fa4a21c931e3' { 'Win 8.1 RTM Core OEM:NONSLP' } '78d9b031-b92d-4fc7-b6df-38b42dcc7110' { 'Win 8.1 RTM CoreARM OEM:NONSLP' } 'b8490a14-d942-43bb-a1b5-68f347757bce' { 'Win 8.1 RTM CoreCountrySpecific OEM:NONSLP' } 'b656184e-5c4d-47e9-9797-0959c94a9404' { 'Win 8.1 RTM CoreN OEM:NONSLP' } 'bea5bfff-b61d-45e5-bc61-4fca1d85b501' { 'Win 8.1 RTM CoreSingleLanguage OEM:NONSLP' } 'd03e843c-9044-4cd4-b5eb-78a9586b5598' { 'Win 8.1 RTM Professional OEM:NONSLP' } '8b547029-1c12-405d-9df7-8faa53949a3f' { 'Win 8.1 RTM ProfessionalN OEM:NONSLP' } '9a8645c4-8908-49bb-8eec-6671a533b17a' { 'Win 8.1 RTM Core Retail' } '9e263fcf-ef40-428c-8aa1-40e09e2994db' { 'Win 8.1 RTM Core OEM:DM' } 'c4b15b02-3fe9-4ac0-878e-a4b10ffe84bf' { 'Win 8.1 RTM CoreN Retail' } '8da2dfae-e4f5-4e6a-9272-96f8470e033e' { 'Win 8.1 RTM Professional Retail' } '92bd040f-0108-45dd-94e3-e0d6423df214' { 'Win 8.1 RTM ProfessionalN Retail' } '4fea9ede-e6ee-41a6-a231-1604ec75c480' { 'Win 8.1 RTM ProfessionalN Retail' } '8d904b5c-2cd4-43f4-846a-f0f5d60387a0' { 'Win 8.1 RTM ProfessionalWMC Retail' } '513b06ef-c15f-4df0-9097-a4768323bfb6' { 'Win 8.1 RTM ProfessionalWMC Retail' } '7fd0a88b-fb89-415f-9b79-84adc6a7cd56' { 'Win 8.1 RTM EnterpriseNEval Retail:TB:Eval' } '0eebbb45-29d4-49cb-ba87-a23db0cce40a' { 'Win 8.1 RTM EnterpriseEval Retail:TB:Eval' } 'fe1c3238-432a-43a1-8e25-97e7d1ef10f3' { 'Windows 8.1 Core' } 'c4804ecf-6db4-4134-90a9-90d0874c9ad8' { 'Win 8.1 RTM CoreARM OEM:DM' } 'ffee456a-cd87-4390-8e07-16146c672fd0' { 'Win 8.1 RTM CoreARM Volume:GVLK' } 'db78b74f-ef1c-4892-abfe-1e66b8231df6' { 'Win 8.1 RTM CoreCountrySpecific Volume:GVLK' } '78558a64-dc19-43fe-a0d0-8075b2a370a3' { 'Windows 8.1 CoreN' } 'c72c6a1d-f252-4e7e-bdd1-3fca342acb35' { 'Win 8.1 RTM CoreSingleLanguage Volume:GVLK' } '81671aaf-79d1-4eb1-b004-8cbbe173afea' { 'Windows 8.1 Enterprise' } '113e705c-fa49-48a4-beea-7dd879b46b14' { 'Windows 8.1 EnterpriseN' } 'c06b6981-d7fd-4a35-b7b4-054742b7af67' { 'Windows 8.1 Professional' } '7476d79f-8e48-49b4-ab63-4d0b813a16e4' { 'Windows 8.1 ProfessionalN' } '096ce63d-4fac-48a9-82a9-61ae9e800e5f' { 'Windows 8.1 Professional WMC' } '354d964a-56e7-43c5-a93f-287a7a750bd4' { 'Win 8.1 RTM Professional;ProfessionalN Volume:MAK' } '4bbc5a14-ec8c-4954-a8f3-1dad8c225d37' { 'Win 8.1 RTM CoreARM OEM:DM' } 'fd9e2767-c9dc-4ba9-a70a-e690649d7301' { 'Win 8.1 RTM ProfessionalWMC Retail' } 'cdcc4295-9acc-4fd9-a2b6-ade31f228d73' { 'Win 8.1 RTM CoreCountrySpecific OEM:DM' } 'a143fcf7-82ba-4829-b005-063a5fb76e82' { 'Win 8.1 RTM CoreN OEM:DM' } 'e2ca509a-a2f4-498b-ba09-297685d369ac' { 'Win 8.1 RTM CoreSingleLanguage OEM:DM' } '12788d53-9337-42dc-88c9-413b553ba71c' { 'Win 8.1 RTM CoreSingleLanguage OEM:DM' } '763fe1c2-d40f-4f3c-9a28-7a3af6f0d987' { 'Win 8.1 RTM Professional OEM:DM' } 'f1a8fe3c-5d21-4050-9cb9-695449b058e4' { 'Windows Embedded Industry 8.1 RTM EmbeddedIndustryEval Retail:TB:Eval' } 'd9eea459-1e6b-499d-8486-e68163f2a8be' { 'Windows Embedded Industry 8.1 RTM EmbeddedIndustryEval Retail:TB:Eval' } '0553d524-1466-4fdc-8bab-a6482da45008' { 'Windows Embedded Industry 8.1 RTM EmbeddedIndustryEval Retail:TB:Eval' |