mgcluebeck
Goto Top

Deinstallation von Office 365 auf OEM-PC mit Windows 10 Pro

Hallo ins Forum,

entspricht es der Wahrheit, dass eine Office 365 Installation auf einem neuen OEM-PC sich nicht mehr deinstallieren lässt?

Ich habe es mit dem Tool von Microsoft versucht und auch über die Systemsteuerung. Nach dem Neustart war die Office 365 Installation noch immer vorhanden.

Ich habe dann mit der Hotline des OEM-Herstellers gesprochen. Aussage war, OEM-Hersteller werden von Microsoft dazu angehalten, die neuen PC´s mit Office 365 zu "betanken" und es gibt keine Deinstallationsroutine mehr!!! Einzige Lösung wäre eine komplette Neuinstallation von Windows 10!!

Jemand Erfahrungen hierzu gesammelt??

Gruß aus dem Norden
MC

Content-ID: 369535

Url: https://administrator.de/forum/deinstallation-von-office-365-auf-oem-pc-mit-windows-10-pro-369535.html

Ausgedruckt am: 08.04.2025 um 19:04 Uhr

GrueneSosseMitSpeck
GrueneSosseMitSpeck 28.03.2018 aktualisiert um 09:17:22 Uhr
Goto Top
ja ein paar Möglichkeiten:

1.) ein Wiederherstellungspunkt. Vielleicht findet sich einer, in dem Office365 noch nicht drin ist
2.) manchmal fehlt zwar die Routine in "SYstemsteuerung - Software", aber es gibt einen "Uninstallstring". Findet man ggf. in der Registiry. Aber aus Erfahrung mit anderen Produkten - z.B. dem SQL-Server - weiß ich daß so einige Software von Microsoft nicht mehr zu entfernen ist... und nur dann sauber deinstallierbar ist wenn man a) die Diesnte alle stoppt und b) in der Systemsteuerung die Einzelkomponenten in der richtigen Reihenfolge deinstalliert.
3.) ich würd mal nach dem Fixit offline suchen. MS selbst bietet den zwar nicht mehr an, aber im Internet dürfte der wohl noch hundert mal rumliegen. Das Fixit hat ne Option "uninstall software that has problems getting uninstalled by GUI"

zuguterletzt:

4.) die Wiederherstellungskonsole. F8 drücken und sich bis zu der Option durchhangeln, wo der PC komplett neu installiert wird. Es ist aber nicht auszuschließen, daß in diesem Prozeß dann das Office 365 wieder mit installiert wird... auf meim Dell Notebook bin ich die ganze Bloatware (hier ein Office Home 2010) nur durch Installation von einer Windows 7 DVD aus dem MSDN und dem KEycode auf dem Notebook losgeworden weil das Office auch in der 8 GB großen Rettungspartition drin war. Die bleibt nur noch für Notfälle, z.B. Virusbefall unterwegs face-sad
Vision2015
Vision2015 28.03.2018 um 09:08:48 Uhr
Goto Top
Zitat von @mgcluebeck:

Hallo ins Forum,
Moin..



entspricht es der Wahrheit, dass eine Office 365 Installation auf einem neuen OEM-PC sich nicht mehr deinstallieren lässt?
nö.. eigentlich nicht!

Ich habe es mit dem Tool von Microsoft versucht und auch über die Systemsteuerung. Nach dem Neustart war die Office 365 Installation noch immer vorhanden.
nur das setup... oder Installiert?

Ich habe dann mit der Hotline des OEM-Herstellers gesprochen. Aussage war, OEM-Hersteller werden von Microsoft dazu angehalten, die neuen PC´s mit Office 365 zu "betanken" und es gibt keine Deinstallationsroutine mehr!!! Einzige Lösung wäre eine komplette Neuinstallation von Windows 10!!
wer ist den der OEM?


Jemand Erfahrungen hierzu gesammelt??


Gruß aus dem Norden

MC
Frank
lordofremixes
lordofremixes 28.03.2018 um 09:53:32 Uhr
Goto Top
Nehm mal das Script hier:

der bügelt das weg:

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
'*******************************************************************************  
' Name: OffScrubC2R.vbs  
' Author: Microsoft Customer Support Services  
' Copyright (c) 2014 - 2015 Microsoft Corporation  
' Script to remove Office Click To Run (C2R) products  
' when a regular uninstall is no longer possible  
'  
' Scope: Office 2013, 2016 and O365 C2R products  
'*******************************************************************************  

Option Explicit

'-------------------------------------------------------------------------------  
'  
'   Declaration of constants  
'-------------------------------------------------------------------------------  


Const SCRIPTVERSION   = "2.00"  
Const SCRIPTFILE      = "OffScrubC2R.vbs"  
Const SCRIPTNAME      = "OffScrubC2R"  
Const RETVALFILE      = "ScrubRetValFile.txt"  
Const ONAME           = "Office C2R / O365"  
Const HKCR            = &H80000000
Const HKCU            = &H80000001
Const HKLM            = &H80000002
Const HKU             = &H80000003
Const PRODLEN         = 13
Const SQUISHED        = 20
Const COMPRESSED      = 32
Const REG_ARP         = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\"  
Const VB_YES          = 6
Const VB_NO           = 7

Const ERROR_SUCCESS                 = 0   'Bit #1.  0 indicates Success. Script completed successfully  
Const ERROR_FAIL                    = 1   'Bit #1.  Failure bit. Indicates an overall script failure.  
                                          'RESERVED bit! Returned when process is killed from task manager  
Const ERROR_REBOOT_REQUIRED         = 2   'Bit #2.  Reboot bit. If set a reboot is required  
Const ERROR_USERCANCEL              = 4   'Bit #3.  User Cancel bit. Controlled cancel from script UI  
Const ERROR_STAGE1                  = 8   'Bit #4.  Informational. Msiexec based install was not possible  
Const ERROR_STAGE2                  = 16  'Bit #5.  Critical. Not all of the intended cleanup operations could be applied  
Const ERROR_INCOMPLETE              = 32  'Bit #6.  Pending file renames (del on reboot) - OR - Removal needs to run again after a system reboot.  
Const ERROR_DCAF_FAILURE            = 64  'Bit #7.  Critical. Da capo al fine (second attempt) still failed.  
Const ERROR_ELEVATION_USERDECLINED  = 128 'Bit #8.  Critical script error. User declined to allow mandatory script elevation  
Const ERROR_ELEVATION               = 256 'Bit #9.  Critical script error. The attempt to elevate the process did not succeed  
Const ERROR_SCRIPTINIT              = 512 'Bit #10. Critical script error. Initialization failed  
Const ERROR_RELAUNCH                = 1024'Bit #11. Critical script error. This is a temporary value and must not be the final return code  
Const ERROR_UNKNOWN                 = 2048'Bit #12 Critical script error. Script did not complete in a well defined state  
Const ERROR_ALL                     = 4095'Full BitMask  
Const ERROR_USER_ABORT              = &HC000013A 'RESERVED. Dec -1073741510. Critical error. Returned when user aborts with <Ctrl>+<Break> or closes the cmd window  
Const ERROR_SUCCESS_CONFIG_COMPLETE = 1728
Const ERROR_SUCCESS_REBOOT_REQUIRED = 3010

'-------------------------------------------------------------------------------  
'  
'   Declaration of variables  
'-------------------------------------------------------------------------------  

Dim oFso, oMsi, oReg, oWShell, oWmiLocal, oShellApp
Dim ComputerItem, Key, Item, LogStream, TmpKey
Dim arrVersion
Dim dictionaryKeepLis, dicApps, dictionaryKeepFolder, dicDelRegKey, dictionaryKeepReg
Dim dicInstalledSku, dicRemoveSku, dictionaryKeepSku, dicC2RSuite, dicDelInUse
Dim dicDelFolder
Dim sAppData, sScrubDir, sProgramFiles, sProgramFilesX86, sCommonProgramFiles
Dim sAllusersProfile, sOSVersion, sWinDir, sWICacheDir, sCommonProgramFilesX86
Dim sProgramData, sPackageFolder, sLocalAppData, sOInstallRoot, sSkuRemoveList
Dim sOSinfo, sDefault, sTemp, sTmp, sCmd, sLogDir, sPrompt, sProfilesDirectory
Dim sRetVal, sScriptDir, sPackageGuid, sValue, sActiveConfiguration
Dim iVersionNT, iError, iProcCloseCnt
Dim f64, fLogInitialized, fNoCancel, fRemoveOse, fDetectOnly, fQuiet, fForce
Dim fC2R, fRemoveAll, fRebootRequired, fRerun, fSetRunOnce, fTestRerun
Dim fIsElevated, fNoElevate, fUserConsent, fCScript

'-------------------------------------------------------------------------------  
'                                   Main  
'  
'                           Main section of script  
'-------------------------------------------------------------------------------  


' initialize required settings and objects  
' ----------------------------------------  
Initialize

' call the command line parser  
'-----------------------------  
ParseCmdLine

                                '-----------------------------  
                                ' Stage # 0 - Basic detection |  
                                '-----------------------------  

LogH "Stage # 0 " & chr(34) & "Basic detection" & chr(34)   

' ensure integrity of WI metadata which could fail used APIs otherwise  
'---------------------------------------------------------------------  
Log "Ensure Windows Installer metadata integrity " & " (" & Time & ")"  
EnsureValidWIMetadata HKCU,"Software\Classes\Installer\Products", COMPRESSED  
EnsureValidWIMetadata HKCR,"Installer\Products", COMPRESSED  
EnsureValidWIMetadata HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products", COMPRESSED  
EnsureValidWIMetadata HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components", COMPRESSED  
EnsureValidWIMetadata HKCR,"Installer\Components", COMPRESSED  

' build a list with installed/registered Office products  
'-------------------------------------------------------  
FindInstalledOProducts
If dicC2RSuite.Count > 0 Then 
    Log "Registered ARP product(s) found:"  
    For Each Key In dicC2RSuite.Keys
    	Log " - " & Key & " - " & dicC2RSuite.Item(Key)  
    Next 'Key  
'    For Each Item in dicC2RSuite.Items  
'        Log " - " & Item  
'    Next 'Item  
Else
    Log "No registered product(s) found"  
End If

' locate the C2R %PackageFolder% and the PackageGuid  
'---------------------------------------------------  
sPackageFolder = ""  
If RegReadValue(HKLM, "SOFTWARE\Microsoft\Office\15.0\ClickToRun", "PackageFolder", sValue, "REG_SZ") Then  
	sPackageFolder = sValue
ElseIf RegReadValue(HKLM, "SOFTWARE\Microsoft\Office\16.0\ClickToRun", "PackageFolder", sPackageFolder, "REG_SZ") Then  
	sPackageFolder = sValue
ElseIf RegReadValue(HKLM, "SOFTWARE\Microsoft\Office\ClickToRun", "PackageFolder", sPackageFolder, "REG_SZ") Then  
	sPackageFolder = sValue
End If
' if sPackageFolder is invalid set it to the c2r registry reference string  
If NOT Len(sPackageFolder) > 0 OR IsNull(sPackageFolder) Then 
	If oFso.FolderExists(oWShell.ExpandEnvironmentStrings("%programfiles%") & "\Microsoft Office 15") Then  
		sPackageFolder = oWShell.ExpandEnvironmentStrings("%programfiles%") & "\Microsoft Office 15"  
	ElseIf oFso.FolderExists(oWShell.ExpandEnvironmentStrings("%programfiles%") & "\Microsoft Office 16") Then  
		sPackageFolder = oWShell.ExpandEnvironmentStrings("%programfiles%") & "\Microsoft Office 16"  
	ElseIf oFso.FolderExists(oWShell.ExpandEnvironmentStrings("%programfiles%") & "\Microsoft Office\PackageManifests") Then  
		sPackageFolder = oWShell.ExpandEnvironmentStrings("%programfiles%") & "\Microsoft Office"  
	ElseIf oFso.FolderExists(oWShell.ExpandEnvironmentStrings("%programfiles(x86)%") & "\Microsoft Office\PackageManifests") Then  
		sPackageFolder = oWShell.ExpandEnvironmentStrings("%programfiles(x86)%") & "\Microsoft Office"  
	End If
End If

sPackageGuid = ""  
If RegReadValue(HKLM, "SOFTWARE\Microsoft\Office\15.0\ClickToRun", "PackageGUID", sValue, "REG_SZ") Then  
	sPackageGuid = sValue
ElseIf RegReadValue(HKLM, "SOFTWARE\Microsoft\Office\16.0\ClickToRun", "PackageGUID", sValue, "REG_SZ") Then  
	sPackageGuid = sValue
ElseIf RegReadValue(HKLM, "SOFTWARE\Microsoft\Office\ClickToRun", "PackageGUID", sValue, "REG_SZ") Then  
	sPackageGuid = sValue
End If

' Init complete. Reset the return value  
'--------------------------------------  
ClearError ERROR_SCRIPTINIT


                                '-----------------------  
                                ' Stage # 1 - Uninstall |  
                                '-----------------------  

LogH "Stage # 1 " & chr(34) & "Uninstall" & chr(34)  

' clean O15 SPP  
'--------------  
LogH1 "Clean OSPP"   
CleanOSPP

' end all running Office applications  
'------------------------------------  
LogH1 "End running processes"   
CloseOfficeApps

' remove scheduled tasks which might interfere with uninstall  
'------------------------------------------------------------  
DelSchtasks

' unpin shortcuts  
'----------------  
' need to unpin as long as the shortcuts are still valid!  
LogH1 "Unpinning shortcuts"   
CleanShortcuts sAllusersProfile, True, True
CleanShortcuts sProfilesDirectory, True, True

' uninstall  
'----------  
LogH1 "Removing " & ONAME    
Uninstall

                                '---------------------  
                                ' Stage # 2 - CleanUp |  
                                '---------------------  
LogH "Stage # 2 " & chr(34) & "CleanUp" & chr(34)  

' Cleanup registry data  
'----------------------  
RegWipe

' Cleanup files  
'--------------  
FileWipe

' for test purposes only!  
If fTestRerun Then
    LogH2 "Enforcing 'Rerun' mode for test purposes"  
    fRebootRequired = True
    SetError ERROR_REBOOT_REQUIRED
    Rerun
End If

ExitScript

Sub ExitScript

                                    '------------------  
                                    ' Stage # 3 - Exit |  
                                    '------------------  
    ' Update cached error and quit  
    '-----------------------------  
    If NOT CBool(iError AND (ERROR_FAIL + ERROR_INCOMPLETE)) Then RegDeleteValue HKCU, "SOFTWARE\Microsoft\Office\15.0\CleanC2R", "Rerun", False  
    SetRetVal iError

    ' log result  
    If CBool(iError AND ERROR_INCOMPLETE) Then 
        LogH2 "Removal result: " & iError & " - INCOMPLETE. Uninstall requires a system reboot to complete."  
    Else
        sTmp = " - SUCCESS"  
        If CBool(iError AND ERROR_USERCANCEL) Then sTmp = " - USER CANCELED"  
        If CBool(iError AND ERROR_FAIL) Then sTmp = " - FAIL"  
        LogH2 "Removal result: " & iError & sTmp  
    End If
    If CBool(iError AND ERROR_FAIL) Then
        If CBool(iError AND ERROR_REBOOT_REQUIRED) Then Log " - Reboot required"  
        If CBool(iError AND ERROR_USERCANCEL) Then Log " - User cancel"  
        If CBool(iError AND ERROR_STAGE1) Then Log " - Msiexec failed"  
        If CBool(iError AND ERROR_STAGE2) Then Log " - Cleanup failed"  
        If CBool(iError AND ERROR_INCOMPLETE) Then Log " - Removal incomplete. Rerun after reboot needed"  
        If CBool(iError AND ERROR_DCAF_FAILURE) Then Log " - Second attempt cleanup still incomplete"  
        If CBool(iError AND ERROR_ELEVATION_USERDECLINED) Then Log " - User declined elevation"  
        If CBool(iError AND ERROR_ELEVATION) Then Log " - Elevation failed"  
        If CBool(iError AND ERROR_SCRIPTINIT) Then Log " - Initialization error"  
        If CBool(iError AND ERROR_RELAUNCH) Then Log " - Unhandled error during relaunch attempt"  
        If CBool(iError AND ERROR_UNKNOWN) Then Log " - Unknown error"  
        ' ERROR_USER_ABORT is only valid for the temporary cached error file  
        'If CBool(iError AND ERROR_USER_ABORT) Then Log " - Process terminated by user"  
    End If

    LogH2 "Removal end."   

    ' Reboot handling  
    If fRebootRequired Then
        sPrompt = "In order to complete uninstall, a system reboot is necessary. Would you like to reboot now?"  
        If NOT fQuiet Then
            If MsgBox(sPrompt, vbYesNo, SCRIPTNAME & " - Reboot Required") = VB_YES Then  
                Dim colOS, oOS
                Dim oWmiReboot
                Set oWmiReboot = GetObject("winmgmts:{impersonationLevel=impersonate,(Shutdown)}!\\.\root\cimv2")  
                Set colOS = oWmiReboot.ExecQuery ("Select * from Win32_OperatingSystem")  
                For Each oOS in colOS
                    oOS.Reboot()
                Next
            End If
        End If
    End If

    wscript.quit iError
End Sub 'ExitScript  

'-------------------------------------------------------------------------------  
'                                  End  Main  
'  
'                           End of Main section  
'-------------------------------------------------------------------------------  

'-------------------------------------------------------------------------------  
'   Initialize  
'  
'   Configure defaults and initialize all required objects  
'-------------------------------------------------------------------------------  
Sub Initialize ()
    Dim iCnt

    ' set defaults  
    '-------------  
    iError = ERROR_SUCCESS
    iProcCloseCnt = 0
    sLogDir = ""  
    sPackageFolder = ""  
    f64 = False
    fCScript = False
    fLogInitialized = False
    fNoCancel = False
    fRemoveOse = False
    fDetectOnly = False
    fQuiet = True
    fForce = False
    fC2R = True
    fRebootRequired = False
    fRerun = False
    fTestRerun = False
    fIsElevated = False
    fNoElevate = False
    fSetRunOnce = False
    fUserConsent = False

    ' create required objects  
    '------------------------  
    Set oWmiLocal   = GetObject("winmgmts:\\.\root\cimv2")  
    Set oWShell     = CreateObject("Wscript.Shell")  
    Set oShellApp   = CreateObject("Shell.Application")  
    Set oFso        = CreateObject("Scripting.FileSystemObject")  
    Set oMsi        = CreateObject("WindowsInstaller.Installer")  
    Set oReg        = GetObject("winmgmts:\\.\root\default:StdRegProv")  

    ' get environment path values  
    '----------------------------  
    sAppData            = oWShell.ExpandEnvironmentStrings("%appdata%")  
    sLocalAppData       = oWShell.ExpandEnvironmentStrings("%localappdata%")  
    sTemp               = oWShell.ExpandEnvironmentStrings("%temp%")  
    sAllUsersProfile    = oWShell.ExpandEnvironmentStrings("%allusersprofile%")  
    RegReadValue HKLM, "SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList", "ProfilesDirectory", sProfilesDirectory, "REG_EXPAND_SZ"  
    If NOT oFso.FolderExists(sProfilesDirectory) Then 
        sProfilesDirectory  = oFso.GetParentFolderName(oWShell.ExpandEnvironmentStrings("%userprofile%"))  
    End If
    sProgramFiles       = oWShell.ExpandEnvironmentStrings("%programfiles%")  
    'sProgramFilesX86   = deferred. Depends on operating system architecture check  
    sCommonProgramFiles = oWShell.ExpandEnvironmentStrings("%commonprogramfiles%")  
    'sCommonProgramFilesX86 = deferred. Depends on operating system architecture check  
    sProgramData        = oWSHell.ExpandEnvironmentStrings("%programdata%")  
    sWinDir             = oWShell.ExpandEnvironmentStrings("%windir%")  
    'sPackageFolder      = deferred  
    sWICacheDir         = sWinDir & "\" & "Installer"  
    sScrubDir           = sTemp & "\" & SCRIPTNAME  
    sScriptDir          = wscript.ScriptFullName
    sScriptDir          = Left(sScriptDir, InStrRev(sScriptDir, "\"))  

    ' ensure 64 bit host if needed  
    If InStr(LCase(wscript.path), "syswow64") > 0 Then RelaunchAs64Host  

    ' create the temp folder  
    '-----------------------  
    If Not oFso.FolderExists(sScrubDir) Then oFso.CreateFolder sScrubDir

    ' set the default logging directory  
    '----------------------------------  
    sLogDir = sScrubDir

    ' detect bitness of the operating system  
    '----------------------------------------  
    Set ComputerItem = oWmiLocal.ExecQuery("Select * from Win32_ComputerSystem")  
    For Each Item In ComputerItem
        f64 = Instr(Left(Item.SystemType, 3), "64") > 0  
    Next
    If f64 Then sProgramFilesX86 = oWShell.ExpandEnvironmentStrings("%programfiles(x86)%")  
    If f64 Then sCommonProgramFilesX86 = oWShell.ExpandEnvironmentStrings("%CommonProgramFiles(x86)%")  

    ' update error flag  
    '------------------  
    SetError ERROR_SCRIPTINIT

    ' get Win32_OperatingSystem details  
    '----------------------------------  
    Set ComputerItem = oWmiLocal.ExecQuery("Select * from Win32_OperatingSystem")  
    For Each Item in ComputerItem 
        sOSinfo = sOSinfo & Item.Caption 
        sOSinfo = sOSinfo & Item.OtherTypeDescription
        sOSinfo = sOSinfo & ", " & "SP " & Item.ServicePackMajorVersion  
        sOSinfo = sOSinfo & ", " & "Version: " & Item.Version  
        sOsVersion = Item.Version
        sOSinfo = sOSinfo & ", " & "Codepage: " & Item.CodeSet  
        sOSinfo = sOSinfo & ", " & "Country Code: " & Item.CountryCode  
        sOSinfo = sOSinfo & ", " & "Language: " & Item.OSLanguage  
    Next

    ' get VersionNT number  
    '---------------------  
    arrVersion = Split(sOsVersion, Delimiter(sOsVersion))
    iVersionNt = CInt(arrVersion(0)) * 100 + CInt(arrVersion(1))

    ' ensure sufficient registry permisions  
    '--------------------------------------  
    fIsElevated = CheckRegPermissions
    If NOT fIsElevated AND NOT fNoElevate Then
        ' try to relaunch elevated  
        RelaunchElevated

        ' can't relaunch. Exit out  
        SetError ERROR_ELEVATION
        If UCase(Mid(Wscript.FullName, Len(Wscript.Path) + 2, 1)) = "C" Then  
            If Not fLogInitialized Then CreateLog
            Log "Error: Insufficient registry access permissions - exiting"  
        End If
        SetRetVal iError
        wscript.quit iError
    End If

    ' clear error flags  
    '------------------  
    ClearError ERROR_ELEVATION
    ClearError ERROR_SCRIPTINIT

    ' ensure CScript as engine  
    '------------------------  
    fCScript = UCase(Mid(Wscript.FullName, Len(Wscript.Path) + 2, 1)) = "C"  
    If NOT fCScript AND NOT fQuiet Then RelaunchAsCScript

    ' set retval for file based logic  
    '--------------------------------  
    ' value needs to be kept on 'user abort'  
    SetRetVal ERROR_USER_ABORT

    ' create dictionary objects  
    '--------------------------  
    Set dicInstalledSku = CreateObject("Scripting.Dictionary")  
    Set dicRemoveSku = CreateObject("Scripting.Dictionary")  
    Set dictionaryKeepSku = CreateObject("Scripting.Dictionary")  
    Set dictionaryKeepLis = CreateObject("Scripting.Dictionary")  
    Set dictionaryKeepFolder = CreateObject("Scripting.Dictionary")  
    Set dicApps = CreateObject("Scripting.Dictionary")  
    Set dicDelRegKey = CreateObject("Scripting.Dictionary")  
    Set dictionaryKeepReg = CreateObject("Scripting.Dictionary")  
    Set dicC2RSuite = CreateObject("Scripting.Dictionary")  
    Set dicDelInUse = CreateObject("Scripting.Dictionary")  
    Set dicDelFolder = CreateObject("Scripting.Dictionary")  

    ' add initial known .exe files that need to be closed  
    '----------------------------------------------------  
    dicApps.Add "appvshnotify.exe", "appvshnotify.exe"  
    dicApps.Add "integratedoffice.exe", "integratedoffice.exe"  
    dicApps.Add "integrator.exe", "integrator.exe"  
    dicApps.Add "firstrun.exe", "firstrun.exe"  
    dicApps.Add "setup.exe", "setup.exe"  
    dicApps.Add "communicator.exe", "communicator.exe"  
    dicApps.Add "msosync.exe", "msosync.exe"  
    dicApps.Add "OneNoteM.exe", "OneNoteM.exe"  
    dicApps.Add "iexplore.exe", "iexplore.exe"  
    dicApps.Add "mavinject32.exe", "mavinject32.exe"  
    dicApps.Add "werfault.exe", "werfault.exe"  
    dicApps.Add "perfboost.exe", "perfboost.exe"  
    dicApps.Add "roamingoffice.exe", "roamingoffice.exe"  
    ' SP1 additions / changes  
    dicApps.Add "officeclicktorun.exe", "officeclicktorun.exe"  
    dicApps.Add "officeondemand.exe", "officeondemand.exe"  
    dicApps.Add "OfficeC2RClient.exe", "OfficeC2RClient.exe"  

End Sub 'Initialize  

'-------------------------------------------------------------------------------  
'   ParseCmdLine  
'  
'   Command line parser  
'-------------------------------------------------------------------------------  
Sub ParseCmdLine

    Dim iCnt, iArgCnt
    Dim arrArguments
    Dim sArg0
    
    iArgCnt = Wscript.Arguments.Count
    If iArgCnt > 0 Then
        If wscript.Arguments(0) = "UAC" Then  
            If wscript.arguments.count = 1 Then iArgCnt = 0
        End If
    End If
    If iArgCnt = 0 Then
        Select Case UCase(wscript.ScriptName)
        Case Else
            'Create the log  
            CreateLog
            FindInstalledOProducts
            sDefault = "ALL"  
            arrArguments = Split(Trim(sDefault), " ")  
            If UBound(arrArguments) = -1 Then ReDim arrArguments(0)
        End Select
    Else
        ReDim arrArguments(iArgCnt-1)
        For iCnt = 0 To (iArgCnt-1)
            arrArguments(iCnt) = UCase(Wscript.Arguments(iCnt))
        Next 'iCnt  
    End If 'iArgCnt = 0  

    ' hardcode to full removal  
    sArg0 = "ALL"  

    Select Case UCase(sArg0)
    Case "?"  
        ShowSyntax
    Case "ALL"  
        fRemoveAll = True
        fRemoveOse = False
    Case "C2R"  
        fC2R = True
        fRemoveAll = False
        fRemoveOse = False
    Case Else
        fRemoveAll = False
        fRemoveOse = False
        sSkuRemoveList = sArg0
    End Select
    
    For iCnt = 0 To UBound(arrArguments)
        Select Case arrArguments(iCnt)
        Case "?", "/?", "-?"  
            ShowSyntax
        Case "/L", "/LOG"  
            fLogInitialized = False
            If UBound(arrArguments) > iCnt Then
                If oFso.FolderExists(arrArguments(iCnt + 1)) Then 
                    sLogDir = arrArguments(iCnt + 1)
                Else
                    On Error Resume Next
                    oFso.CreateFolder(arrArguments(iCnt + 1))
                    If Err <> 0 Then sLogDir = sScrubDir Else sLogDir = arrArguments(iCnt + 1)
                End If
            End If
        Case "/N", "/NOCANCEL"  
            fNoCancel = True
        
        Case "/NE", "/NOELEVATE"  
            fNoElevate = True

        Case "/O", "/OSE"  
            fRemoveOse = True
        
        Case "/Q", "/QUIET"  
            fQuiet = True
        
        ' for test purposes only!  
        Case "/TR", "/TESTRERUN"  
            fTestRerun = True
        Case Else
        End Select
    Next 'iCnt  
    If Not fLogInitialized Then CreateLog
End Sub 'ParseCmdLine  

'-------------------------------------------------------------------------------  
'   ShowSyntax  
'  
'   Show the expected syntax for the script usage  
'-------------------------------------------------------------------------------  
Sub ShowSyntax
    Wscript.Echo sErr & vbCrLf & _
             SCRIPTFILE & " V " & SCRIPTVERSION & vbCrLf & _  
             "Copyright (c) Microsoft Corporation. All Rights Reserved" & vbCrLf & vbCrLf & _  
             SCRIPTFILE & " - Remove " & ONAME & vbCrLf & _  
             "when a regular uninstall is no longer possible" & vbCrLf & vbCrLf & _  
             "Usage:" & vbTab & SCRIPTFILE & vbCrLf & vbCrLf & _  
             vbTab & "/?                               ' Displays this help"& vbCrLf  
    Wscript.Quit
End Sub 'ShowSyntax  

'-------------------------------------------------------------------------------  
'   FindInstalledOProducts  
'  
'   Office configuration products are listed with their configuration product  
'   name in the "Uninstall" key.  
'-------------------------------------------------------------------------------  
Sub FindInstalledOProducts
    Dim ArpItem, prod, cult
    Dim sCurKey, sValue, sConfigName, sCulture, sDisplayVersion, sProd
    Dim sUninstallString
    Dim iLeft, iRight
    Dim arrKeys, arrProducts, arrCultures
    Dim fSystemComponent0, fDisplayVersion, fUninstallString

	Const REG_ARP                 = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\"  
	Const REG_O15RPROPERTYBAG     = "SOFTWARE\Microsoft\Office\15.0\ClickToRun\propertyBag\"  
	Const REG_O15C2RCONFIGURATION = "SOFTWARE\Microsoft\Office\15.0\ClickToRun\Configuration\"  
	Const REG_O15C2RPRODUCTIDS    = "SOFTWARE\Microsoft\Office\15.0\ClickToRun\ProductReleaseIDs\Active\"  
	Const REG_O16C2RCONFIGURATION = "SOFTWARE\Microsoft\Office\16.0\ClickToRun\Configuration\"  
	Const REG_O16C2RPRODUCTIDS    = "SOFTWARE\Microsoft\Office\16.0\ClickToRun\ProductReleaseIDs\Active\"  
	Const REG_C2RCONFIGURATION    = "SOFTWARE\Microsoft\Office\ClickToRun\Configuration\"  
	Const REG_C2RPRODUCTIDS       = "SOFTWARE\Microsoft\Office\ClickToRun\ProductReleaseIDs\"  


    If dicInstalledSku.Count > 0 Then Exit Sub 'Already done from command line parser  
    
    fDisplayVersion = False

    ' identify C2R products  
    LogOnly vbCrLf & "Detecting installed products "  
    
	LogOnly "Check for O15 C2R products"  
	' Check O15 Configuration key  
    If RegReadValue(HKLM, REG_O15C2RCONFIGURATION, "ProductReleaseIds", sValue, "REG_SZ") Then  
        arrProducts = Split(sValue, ",")  
        fDisplayVersion = RegReadValue(HKLM, REG_O15C2RPRODUCTIDS & "culture", "x-none", sDisplayVersion, "REG_SZ")  
        If NOT Err = 0 Then
            Err.Clear
        Else
            ' get version from active with fallback on configuration  
            For Each prod in arrProducts
                LogOnly "Found O15 C2R product in Configuration: " & prod  
                ' update product dictionary  
                If NOT dicInstalledSku.Exists(LCase(prod)) Then
                	LogOnly "adding new product to dictionary: " & LCase(prod)  
                	dicInstalledSku.Add LCase(prod), sDisplayVersion
                End If
            Next 'prod  
        End If
    End If
    
    ' Check O15 PropertyBag key  
    If RegReadValue(HKLM, REG_O15RPROPERTYBAG, "productreleaseid", sValue, "REG_SZ") Then  
        arrProducts = Split(sValue, ",")  
        fDisplayVersion = RegReadValue(HKLM, REG_O15C2RPRODUCTIDS & "culture", "x-none", sDisplayVersion, "REG_SZ")  
        If NOT Err = 0 Then
            Err.Clear
        Else
            For Each prod in arrProducts
                LogOnly "Found O15 C2R product in PropertyBag: " & prod  
                ' update product dictionary  
                If NOT dicInstalledSku.Exists(LCase(prod)) Then
                	LogOnly "adding new product to dictionary: " & LCase(prod)  
                	dicInstalledSku.Add LCase(prod), sDisplayVersion
                End If
            Next 'prod  
        End If
    End If
    
	'O16 section  
	LogOnly "Check for Office C2R products (>=QR8)"  
	' Check Office Configuration key  
    If RegReadValue(HKLM, REG_C2RPRODUCTIDS, "ActiveConfiguration", sActiveConfiguration, "REG_SZ") Then  
    	' Get DisplayVersion  
    	'Try QR8 logic first  
		fDisplayVersion = RegReadValue(HKLM, REG_C2RPRODUCTIDS & sActiveConfiguration & "\culture", "x-none", sDisplayVersion, "REG_SZ")  
    	If RegEnumKey(HKLM, REG_C2RPRODUCTIDS & sActiveConfiguration & "\culture", arrCultures) Then  
    		For Each cult In arrCultures
    			If InStr(LCase(cult), "x-none") > 0 Then  
    				fDisplayVersion = RegReadValue(HKLM, REG_C2RPRODUCTIDS & sActiveConfiguration & "\culture\" & cult, "Version", sDisplayVersion, "REG_SZ")  
    			End If
    		Next 'cult  
    	End If 
    	' Update product dic  
    	If RegEnumKey(HKLM, REG_C2RPRODUCTIDS & sActiveConfiguration, arrProducts) Then
    		For Each prod In arrProducts
    			sProd = LCase(prod)
    			If InStr(sProd, ".") > 0 Then sProd = Left(sProd, InStr(sProd, ".") - 1)  
    			Select Case LCase(sProd)
    			Case "culture", "stream"  
    			Case Else
	                LogOnly "Found Office C2R product in Configuration: " & prod  
	                ' update product dictionary  
	                If NOT dicInstalledSku.Exists(sProd) Then
		                LogOnly "adding new product to dictionary: " & sProd  
	                	dicInstalledSku.Add sProd, sDisplayVersion
	                End If
    			End Select
    		Next 'prod  
    	End If 'arrProducts  
    End If 'ActiveConfiguration  

	LogOnly "Check for Office C2R products (QR7)"  
	' Check Office Configuration key  
	If RegReadValue(HKLM, REG_C2RCONFIGURATION, "ProductReleaseIds", sValue, "REG_SZ") Then  
	    arrProducts = Split(sValue, ",")  
	    If Not fDisplayVersion Then fDisplayVersion = RegReadValue(HKLM, REG_C2RPRODUCTIDS & "Active\culture", "x-none", sDisplayVersion, "REG_SZ")  
	    If NOT Err = 0 Then
	        Err.Clear
	    Else
	        For Each prod in arrProducts
	            LogOnly "Found Office C2R product in Configuration: " & prod  
	            ' update version tracking  
	            If NOT dicInstalledSku.Exists(LCase(prod)) Then
	            	LogOnly "adding new product to dictionary: " & LCase(prod)  
	            	dicInstalledSku.Add LCase(prod), sDisplayVersion
	            End If
	        Next 'prod  
	    End If
	End If

	LogOnly "Check for O16 C2R products (QR6)"  
	' Check O16 Configuration key  
    If RegReadValue(HKLM, REG_O16C2RCONFIGURATION, "ProductReleaseIds", sValue, "REG_SZ") Then  
        arrProducts = Split(sValue, ",")  
        If Not fDisplayVersion Then fDisplayVersion = RegReadValue(HKLM, REG_O16C2RPRODUCTIDS & "culture", "x-none", sDisplayVersion, "REG_SZ")  
        If NOT Err = 0 Then
            Err.Clear
        Else
            For Each prod in arrProducts
                LogOnly "Found O16 (QR6) C2R product in Configuration: " & prod  
                ' update product dictionary  
                If NOT dicInstalledSku.Exists(LCase(prod)) Then
                	LogOnly "adding new product to dictionary: " & prod  
                	dicInstalledSku.Add LCase(prod), sDisplayVersion
                End If
            Next 'prod  
        End If
    End If

    LogOnly "Check ARP for Office C2R products"  
    ' ARP  
    RegEnumKey HKLM, REG_ARP, arrKeys
    If IsArray(arrKeys) Then
        For Each ArpItem in arrKeys
            ' filter on Office C2R products  
            sCurKey = REG_ARP & ArpItem & "\"  
            fUninstallString = RegReadValue(HKLM, sCurKey, "UninstallString", sValue, "REG_SZ")  
            If (fUninstallString And( (InStr(UCase(sValue), UCase("Microsoft Office 1")) > 0) Or (InStr(UCase(sValue), UCase("OfficeClickToRun.exe")) > 0) )) Then  
                'get Version  
                fDisplayVersion = RegReadValue(HKLM, sCurKey, "DisplayVersion", sDisplayVersion, "REG_SZ")  
                'extract the productreleaseid  
                sValue = Trim(sValue)
                prod = Trim(Mid(sValue, InStrRev(sValue, " ")))  
                prod = Replace(prod, "productstoremove=", "")  
                If InStr(prod, "_") > 0 Then  
                    prod = Left(prod, InStr(prod, "_") - 1)  
                End If
                If InStr(prod, ".1") > 0 Then  
                    prod = Left(prod, InStr(prod, ".1") - 1)  
                End If
                LogOnly "Found C2R product in ARP: " & prod  
                If NOT dicInstalledSku.Exists(LCase(prod)) Then
                	LogOnly "adding new product to dictionary: " & prod  
                	dicInstalledSku.Add LCase(prod), sDisplayVersion
                End If
                ' categorize the SKU as C2R  
                If NOT dicC2RSuite.Exists(ArpItem) Then dicC2RSuite.Add ArpItem, prod & " - " & sDisplayVersion   
            Else
            
	            'Legacy logic keep for compat reasons  
	            sValue = ""  
	            sDisplayVersion = ""  
	            fSystemComponent0 = NOT (RegReadValue(HKLM, sCurKey, "SystemComponent", sValue, "REG_DWORD") AND (sValue = "1"))  
	            fDisplayVersion = RegReadValue(HKLM, sCurKey, "DisplayVersion", sValue, "REG_SZ")  
	            If fDisplayVersion Then
	                sDisplayVersion = sValue
	                If Len(sValue) > 1 Then
	                	On Error Resume Next
	                    fDisplayVersion = (CInt(Left(sValue, 2)) > 14)
	                    If Not Err <> 0 Then Err.Clear
	                Else
	                    fDisplayVersion = False
	                End If
	            End If
	            fUninstallString = RegReadValue(HKLM, sCurKey, "UninstallString", sUninstallString, "REG_SZ")  
	            
	            ' filter on C2R configuration SKU  
	            If (fUninstallString And( (InStr(UCase(sUninstallString), UCase("Microsoft Office 1")) > 0) Or (InStr(UCase(sUninstallString), UCase("OfficeClickToRun.exe")) > 0) )) Then  
	                ' Extract the ProductReleaseID  
	                If InStr(sUninstallString, "productstoremove=") > 0 Then  
		                sConfigName = Trim(Mid(sValue, InStrRev(sUninstallString, " ")))  
		                sConfigName = Replace(sConfigName, "productstoremove=", "")  
		                If InStr(prod, "_") > 0 Then  
		                    sConfigName = Left(sConfigName, InStr(sConfigName, "_") - 1)  
		                End If
	                Else
		                iLeft = InStr(ArpItem, " - ") + 2  
		                iRight = InStr(iLeft, ArpItem, " - ") - 1  
		                If iRight > 0 Then
		                    sConfigName = Trim(Mid(ArpItem, iLeft, (iRight - iLeft)))
		                    sCulture = Mid(ArpItem, iRight + 3)
		                Else
		                    sConfigName = Trim(Left(ArpItem, iLeft - 3))
		                    sCulture = Mid(ArpItem, iLeft)
		                End If
		                sConfigName = Replace(sConfigName, "Microsoft", "")  
		                sConfigName = Replace(sConfigName, "Office", "")  
		                sConfigName = Replace(sConfigName, "Professional", "Pro")  
		                sConfigName = Replace(sConfigName, "Standard", "Std")  
		                sConfigName = Replace(sConfigName, "(Technical Preview)", "")  
		                sConfigName = Replace(sConfigName, "15", "")  
		                sConfigName = Replace(sConfigName, "16", "")  
		                sConfigName = Replace(sConfigName, "2013", "")  
		                sConfigName = Replace(sConfigName, "2016", "")  
		                sConfigName = Replace(sConfigName, " ", "")  
		                sConfigName = Replace(sConfigName, "Project", "Prj")  
		                sConfigName = Replace(sConfigName, "Visio", "Vis")  
	                End If
	                If NOT dicInstalledSku.Exists(LCase(sConfigName)) Then
	                	LogOnly "adding new product to dictionary (ARP Legacy): " & sConfigName  
	                	dicInstalledSku.Add LCase(sConfigName), sDisplayVersion
	                End If
	                ' categorize the SKU as C2R  
	                If NOT dicC2RSuite.Exists(ArpItem) Then dicC2RSuite.Add ArpItem, sConfigName & " - " & sDisplayVersion   
	            ElseIf (fSystemComponent0 AND fDisplayVersion AND (InStr(UCase(ArpItem), UCase("OFFICE15.")) > 0 Or InStr(UCase(ArpItem), UCase("OFFICE16.")) > 0)) Then  
	                ' classic .msi install SKU  
	                iLeft = InStr(ArpItem, ".") + 1  
	                iRight = InStr(iLeft, ArpItem, "-") - 1  
	                sConfigName = Mid(ArpItem, iLeft)
	                sCulture = ""  
	                If NOT dictionaryKeepSku.Exists(ArpItem) Then dictionaryKeepSku.Add ArpItem, sConfigName & " - " & sDisplayVersion  
	            End If
	            
	            ' Other products  
	            If InScope(ArpItem) Then
	                Select Case Mid(ArpItem,11,4)
	                ' 007E = Licensing  
	                ' 008C = Extensibility Components  
	                Case "007E", "008F", "008C"  
	                    sConfigName = "Habanero"  
	                    RegReadValue HKLM, sCurKey, "DisplayName", sConfigName, "REG_SZ"  
	                    If NOT dicInstalledSku.Exists(LCase(ArpItem)) Then
	                    	LogOnly "adding new product to dictionary (ARP Legacy other): " & ArpItem  
	                    	dicInstalledSku.Add LCase(ArpItem), sDisplayVersion
	                    End If
	                    If NOT dicC2RSuite.Exists(ArpItem) Then dicC2RSuite.Add ArpItem, sConfigName & " - " & sDisplayVersion  
	                Case "24E1", "237A"  
	                    sConfigName = "MSOIDLOGIN"  
	                    If NOT dicInstalledSku.Exists(LCase(ArpItem)) Then
	                    	LogOnly "adding new product to dictionary (ARP Legacy other): " & ArpItem  
	                    	dicInstalledSku.Add LCase(ArpItem), sDisplayVersion
	                    End If
	                    If NOT dicC2RSuite.Exists(ArpItem) Then dicC2RSuite.Add ArpItem, sConfigName & " - " & sDisplayVersion  
	                Case Else
	                    ' not in scope for c2r removal!  
	                    If NOT dictionaryKeepSku.Exists(ArpItem) Then dictionaryKeepSku.Add ArpItem, ArpItem
	                End Select
	            End If 'InScope    
	            ' End legacy logic  
	            
            End If
        Next 'ArpItem  
    End If
    
End Sub 'FindInstalledOProducts  

'-------------------------------------------------------------------------------  
'   EnsureValidWIMetadata  
'  
'   Ensures that only valid metadata entries exist to avoid API failures.  
'   Invalid entries will be removed  
'-------------------------------------------------------------------------------  
Sub EnsureValidWIMetadata(hDefKey, sKey, iValidLength)
    Dim arrKeys
    Dim SubKey

    If Len(sKey) > 1 Then
        If Right(sKey, 1) = "\" Then sKey = Left(sKey, Len(sKey) - 1)  
    End If

    If RegEnumKey(hDefKey, sKey, arrKeys) Then
        For Each SubKey in arrKeys
            If NOT Len(SubKey) = iValidLength Then
                RegDeleteKey hDefKey, sKey & "\" & SubKey & "\"  
            End If
        Next 'SubKey  
    End If
End Sub 'EnsureValidWIMetadata  

'-------------------------------------------------------------------------------  
'   CleanOSPP  
'  
'   Clean out licenses from the Office Software Protection Platform   
'-------------------------------------------------------------------------------  
Sub CleanOSPP
    Dim oProductInstances, pi
    Dim sCleanOSPP, sCmd, sRetVal

    CONST OfficeAppId = "0ff1ce15-a989-479d-af46-f275c6370663"  'Office 2013  

    sCleanOSPP = "x64\CleanOSPP.exe"  
    If Not f64 Then sCleanOSPP = "x86\CleanOSPP.exe"  
    If oFso.FileExists(sScriptDir & sCleanOSPP) Then
        sCmd = sScriptDir & sCleanOSPP
        Log "   Running: " & sCmd  
        On Error Resume Next
        sRetVal = oWShell.Run(sCmd, 0, True)
        Log "   Return value: " & sRetVal  
        On Error Goto 0
        Exit Sub
    End If
    
    On Error Resume Next
    If NOT (dicC2RSuite.Count > 0 OR dictionaryKeepSku.Count > 0) Then
        Log "Skipping CleanOSPP"  
        Exit Sub
    End If
    
    ' Initialize the software protection platform object with a filter on Office 2013 products  
    If iVersionNT > 601 Then
        Set oProductInstances = oWmiLocal.ExecQuery("SELECT ID, ApplicationId, PartialProductKey, Name, ProductKeyID FROM SoftwareLicensingProduct WHERE ApplicationId = '" & OfficeAppId & "' " & "AND PartialProductKey <> NULL")  
    Else
        Set oProductInstances = oWmiLocal.ExecQuery("SELECT ID, ApplicationId, PartialProductKey, Name, ProductKeyID FROM OfficeSoftwareProtectionProduct WHERE ApplicationId = '" & OfficeAppId & "' " & "AND PartialProductKey <> NULL")  
    End If

    ' Remove all licenses  
    For Each pi in oProductInstances
        If NOT IsNull(pi) Then
            pi.UninstallProductKey( pi.ProductKeyID)
        End If
    Next 'pi  


End Sub 'CleanOSPP  

'-------------------------------------------------------------------------------  
'   DelSchtasks  
'  
'   Delete know scheduled tasks.  
'-------------------------------------------------------------------------------  
Sub DelSchtasks ()
    Dim sCmd

    If CBool(iError AND ERROR_USERCANCEL) Then Exit Sub

    LogH2 "Removing scheduled tasks"   

    LogOnly "FF_INTEGRATEDstreamSchedule"  
    oWShell.Run "SCHTASKS /Delete /TN FF_INTEGRATEDstreamSchedule /F", 0, False  
    wscript.sleep 500

    LogOnly "FF_INTEGRATEDUPDATEDETECTION"  
    oWShell.Run "SCHTASKS /Delete /TN FF_INTEGRATEDUPDATEDETECTION /F", 0, False  
    wscript.sleep 500

    LogOnly "C2RAppVLoggingStart"  
    oWShell.Run "SCHTASKS /Delete /TN C2RAppVLoggingStart /F", 0, False  
    wscript.sleep 500

    LogOnly "Office 15 Subscription Heartbeat"  
    sCmd = "SCHTASKS /Delete /TN " & Chr(34) & "Office 15 Subscription Heartbeat" & Chr(34) & " /F"  
    oWShell.Run sCmd, 0, False
    wscript.sleep 500

    LogOnly "Microsoft Office 15 Sync Maintenance"  
    sCmd = "SCHTASKS /Delete /TN " & Chr(34) & "Microsoft Office 15 Sync Maintenance for {d068b555-9700-40b8-992c-f866287b06c1}" & Chr(34) & " /F"  
    oWShell.Run sCmd, 0, False
    wscript.sleep 500

    LogOnly "OfficeInventoryAgentFallBack"  
    sCmd = "SCHTASKS /Delete /TN " & Chr(34) & "\Microsoft\Office\OfficeInventoryAgentFallBack" & Chr(34) & " /F"  
    oWShell.Run sCmd, 0, False
    wscript.sleep 500

    LogOnly "OfficeTelemetryAgentFallBack"  
    sCmd = "SCHTASKS /Delete /TN " & Chr(34) & "\Microsoft\Office\OfficeTelemetryAgentFallBack" & Chr(34) & " /F"  
    oWShell.Run sCmd, 0, False
    wscript.sleep 500

    LogOnly "OfficeInventoryAgentLogOn"  
    sCmd = "SCHTASKS /Delete /TN " & Chr(34) & "\Microsoft\Office\OfficeInventoryAgentLogOn" & Chr(34) & " /F"  
    oWShell.Run sCmd, 0, False

    LogOnly "OfficeTelemetryAgentLogOn"  
    sCmd = "SCHTASKS /Delete /TN " & Chr(34) & "\Microsoft\Office\OfficeTelemetryAgentLogOn" & Chr(34) & " /F"  
    oWShell.Run sCmd, 0, False

    LogOnly "Office Background Streaming"  
    sCmd = "SCHTASKS /Delete /TN " & Chr(34) & "Office Background Streaming" & Chr(34) & " /F"  
    oWShell.Run sCmd, 0, False
    wscript.sleep 500

    LogOnly "Office Automatic Updates"  
    sCmd = "SCHTASKS /Delete /TN " & Chr(34) & "\Microsoft\Office\Office Automatic Updates" & Chr(34) & " /F"  
    oWShell.Run sCmd, 0, False
    wscript.sleep 500

    LogOnly "Office ClickToRun Service Monitor"  
    sCmd = "SCHTASKS /Delete /TN " & Chr(34) & "\Microsoft\Office\Office ClickToRun Service Monitor" & Chr(34) & " /F"  
    oWShell.Run sCmd, 0, False
    wscript.sleep 500

    LogOnly "Office Subscription Maintenance"  
    sCmd = "SCHTASKS /Delete /TN " & Chr(34) & "Office Subscription Maintenance" & Chr(34) & " /F"  
    oWShell.Run sCmd, 0, False
    wscript.sleep 500

End Sub

'-------------------------------------------------------------------------------  
'   CloseOfficeApps  
'  
'   End all running instances of applications that will be removed.  
'-------------------------------------------------------------------------------  
Sub CloseOfficeApps
    Dim Processes, Process, app, prop
    Dim sAppName, sOut, sUserWarn
    Dim fWait
    Dim iRet
    
    On Error Resume Next
    fWait = False
    iProcCloseCnt = iProcCloseCnt + 1
    If fRerun Then Exit Sub

    If NOT fUserConsent Then
        ' detect processes to allow a user warning  
        sUserWarn =  "Please save all open documents and close all Office, IE and Windows Explorer applications before proceeding." & vbCrLf & _  
                    "When you click OK this removal process will terminate all running Office, IE and Windows Explorer processes and applications." & vbCrLf & vbCrLf & _  
                    "Click ‘Cancel’ to to end this removal now."  
        For Each app in dicApps.Keys
            sAppName = Replace(app, ".", "%.")  
            Set Processes = oWmiLocal.ExecQuery("Select * From Win32_Process Where Name like '" & sAppName & "'")  
            For Each Process in Processes
                If NOT InStr(sUserWarn, Process.Name) > 0 Then sUserWarn = sUserWarn & vbCrLf & " - " & Process.Name  
            Next 'Process  
        Next 'app  
        Set Processes = oWmiLocal.ExecQuery("Select * From Win32_Process")  
        For Each Process in Processes
            For Each prop in Process.Properties_
                If prop.Name = "ExecutablePath" Then   
                    If IsC2R(prop.Value) Then sUserWarn = sUserWarn & vbCrLf & " - " & Process.Name  
                End If 'ExcecutablePath  
            Next 'prop  
        Next 'Process  
        If (InStr(sUserWarn, " - ") > 0 AND NOT fQuiet) Then  
            iRet = MsgBox(sUserWarn, 49, "Save your unsaved work now!")  
            If iRet = 2 Then 
                SetError ERROR_USERCANCEL
                ExitScript
            Else
                fUserConsent = True
            End If
        End If
    End If 'fUserConsent  

    ' end known processes first  
    For Each app in dicApps.Keys
        sAppName = Replace(app, ".", "%.")  
        Set Processes = oWmiLocal.ExecQuery("Select * From Win32_Process Where Name like '" & sAppName & "'")  
        For Each Process in Processes
            sOut = "End process '" & Process.Name  
            iRet = Process.Terminate()
            CheckError "CloseOfficeApps: " & "Process.Name"  
            Log sOut & "' returned: " & iRet  
            fWait = True
        Next 'Process  
    Next 'app  

    ' end running applications  
    Set Processes = oWmiLocal.ExecQuery("Select * From Win32_Process")  
    For Each Process in Processes
        For Each prop in Process.Properties_
            If prop.Name = "ExecutablePath" Then   
                If IsC2R(prop.Value) Then
                    sOut = "End process '" & Process.Name  
                    iRet = Process.Terminate()
                    CheckError "CloseOfficeApps: " & "Process.Name"  
                    Log sOut & "' returned: " & iRet  
                    fWait = True
                End If 
            End If 'ExcecutablePath  
        Next 'prop  
    Next 'Process  
    If fWait Then wscript.sleep 5000
End Sub 'CloseOfficeApps  

'-------------------------------------------------------------------------------  
'   Uninstall  
'  
'   Identify and invoke default uninstall command for a regular uninstall.  
'-------------------------------------------------------------------------------  
Sub Uninstall
    Dim OseService, srvc
    Dim hDefKey, sSubKeyName, sValue, Name, arrNames, arrTypes
    Dim sku, prod, sUninstallCmd, sReturn, sMsiProp, sCmd
    Dim sPkgFld, sPkgGuid
    Dim i

    If CBool(iError AND ERROR_USERCANCEL) Then Exit Sub

    ' check if OSE service is *installed, *not disabled, *running under System context.  
    LogH2 "Checking state of OSE service"  
    Set OseService = oWmiLocal.Execquery("Select * From Win32_Service Where Name like 'ose%'")  
    For Each srvc in OseService
        If (srvc.StartMode = "Disabled") AND (Not srvc.ChangeStartMode("Manual") = 0) Then _  
            Log "Conflict detected: OSE service is disabled"  
        If (Not srvc.StartName = "LocalSystem") AND (srvc.Change( , , , , , , "LocalSystem", "")) Then _  
            Log "Conflict detected: OSE service not running as LocalSystem"  
    Next 'srvc  

    If NOT dicC2RSuite.Count > 0 Then
        Log "No uninstallable C2R items registered in Uninstall"  
    End If

    ' remove the published component registration for C2R packages  
    LogH2 "Removing published component registration for C2R packages"  
    ' delete the manifest files  
    For i = 1 To 4
    	Select Case i
    	Case 1
	    	RegReadValue HKLM, "SOFTWARE\Microsoft\Office\15.0\ClickToRun", "PackageFolder", sPkgFld, "REG_SZ"   
	    	RegReadValue HKLM, "SOFTWARE\Microsoft\Office\15.0\ClickToRun", "PackageGUID", sPkgGuid, "REG_SZ"  
	    Case 2
	    	RegReadValue HKLM, "SOFTWARE\Microsoft\Office\16.0\ClickToRun", "PackageFolder", sPkgFld, "REG_SZ"   
	    	RegReadValue HKLM, "SOFTWARE\Microsoft\Office\16.0\ClickToRun", "PackageGUID", sPkgGuid, "REG_SZ"  
	    Case 3
	    	RegReadValue HKLM, "SOFTWARE\Microsoft\Office\ClickToRun", "PackageFolder", sPkgFld, "REG_SZ"   
	    	RegReadValue HKLM, "SOFTWARE\Microsoft\Office\ClickToRun", "PackageGUID", sPkgGuid, "REG_SZ"  
	    Case 4
	    	sPkgFld = sPackageFolder
	    	sPkgGuid = sPackageGuid
	    End Select
	    If oFso.FolderExists(sValue & "\root\Integration") Then  
	        sCmd = "cmd.exe /c del " & chr(34) & sPkgFld & "\root\Integration\C2RManifest*.xml" & chr(34)  
	        Log "   Running: " & sCmd  
	        sReturn = oWShell.Run (sCmd, 0, True)
	        Log "   Return value: " & sReturn  
	        If oFso.FileExists(sPkgFld & "\root\Integration\integrator.exe") Then  
	            sCmd = chr(34) & sPkgFld & "\root\Integration\integrator.exe" & chr(34) & " /U  /Extension PackageRoot=" & chr(34) & sPkgFld & "\root" & chr(34) & " PackageGUID=" & sPkgGuid  
	            Log "   Running: " & sCmd  
	            sReturn = oWShell.Run (sCmd, 0, True)
	            Log "   Return value: " & sReturn  
	            sCmd = chr(34) & sPkgFld & "\root\Integration\integrator.exe" & chr(34) & " /U"  
	            Log "   Running: " & sCmd  
	            sReturn = oWShell.Run (sCmd, 0, True)
	            Log "   Return value: " & sReturn  
	        End If
	        If oFso.FileExists(sProgramData & "\Microsoft\ClickToRun\{" & sPkgGuid & "}\integrator.exe") Then  
	            sCmd = chr(34) & sProgramData & "\Microsoft\ClickToRun\{" & sPkgGuid & "}\integrator.exe" & chr(34) & " /U  /Extension PackageRoot=" & chr(34) & sPkgFld & "\root" & chr(34) & " PackageGUID=" & sPkgGuid  
	            Log "   Running: " & sCmd  
	            sReturn = oWShell.Run (sCmd, 0, True)
	            Log "   Return value: " & sReturn  
	        End If
	    End If
    Next 'i  

    ' delete potential blocking registry keys for msiexec based tasks  
    LogH2 "Removing C2R and App-V registry data"  
    For Each sku in dicC2RSuite.Keys
        ' remove the ARP entry  
        RegDeleteKey HKLM, REG_ARP & sku
    Next 'sku  
    RegDeleteKey HKCU, "SOFTWARE\Microsoft\Office\15.0\ClickToRun"  
    RegDeleteKey HKLM, "SOFTWARE\Microsoft\Office\15.0\ClickToRun"  
    RegDeleteKey HKCU, "SOFTWARE\Microsoft\Office\16.0\ClickToRun"  
    RegDeleteKey HKLM, "SOFTWARE\Microsoft\Office\16.0\ClickToRun"  
    RegDeleteKey HKCU, "SOFTWARE\Microsoft\Office\ClickToRun"  
    RegDeleteKey HKLM, "SOFTWARE\Microsoft\Office\ClickToRun"  
    
    ' AppV keys  
    hDefKey = HKCU
    sSubKeyName = "SOFTWARE\Microsoft\AppV\ISV"  
    Do
        If RegEnumValues(hDefKey, sSubKeyName, arrNames, arrTypes) Then
            For Each Name in arrNames
                If IsC2R(Name) Then RegDeleteValue hDefKey, sSubKeyName, Name, False
            Next 'Name  
        End If 'RegEnumValues  
        If hDefKey = HKLM Then Exit Do
        hDefKey = HKLM
    Loop

    ' msiexec based uninstall  
    sMsiProp = " REBOOT=ReallySuppress NOREMOVESPAWN=True"  
    LogH2 "Detect Msi based products"  
    For Each prod in oMsi.Products
        If CheckDelete(prod) Then
            Log "Calling msiexec.exe to remove " & prod   
            sUninstallCmd = "msiexec.exe /x" & prod & sMsiProp  
            If fQuiet Then 
                sUninstallCmd = sUninstallCmd & " /q"  
            Else
                sUninstallCmd = sUninstallCmd & " /qb-!"  
            End If
            sUninstallCmd = sUninstallCmd & " /l*v " & chr(34) & sLogDir & "\Uninstall_" & prod & ".log" & chr(34)  
            CloseOfficeApps
            LogOnly "Calling msiexec with '" & sUninstallCmd & "'"  
            sReturn = oWShell.Run(sUninstallCmd, 0, True)
            Log "msiexec returned: " & SetupRetVal(sReturn) & " (" & sReturn & ")" & vbCrLf  
            fRebootRequired = fRebootRequired OR (sReturn = "3010")  
            If fRebootRequired Then SetError ERROR_REBOOT_REQUIRED
            Select Case CInt(sReturn)
            Case ERROR_SUCCESS,ERROR_SUCCESS_CONFIG_COMPLETE,ERROR_SUCCESS_REBOOT_REQUIRED
                'success no action required  
            Case Else
                SetError ERROR_STAGE1
            End Select
        Else
        	LogOnly "Skipping out of scope product: " & prod  
        End If 'CheckDelete  
    Next 'Product  
    oWShell.Run "cmd.exe /c net stop msiserver", 0, False  
End Sub 'Uninstall  

'-------------------------------------------------------------------------------  
'   RegWipe  
'  
'   Removal of left behind registry data   
'-------------------------------------------------------------------------------  
Sub Regwipe
    Dim hDefKey, item, name, value, RetVal
    Dim sGuid, sSubKeyName, sValue, sCmd
    Dim i, iLoopCnt
    Dim arrKeys, arrNames, arrTypes, arrTestNames, arrTestTypes
    Dim arrMultiSzValues, arrMultiSzNewValues
    Dim fDelReg

    If CBool(iError AND ERROR_USERCANCEL) Then Exit Sub

    LogH1 "Registry CleanUp"  
    CloseOfficeApps

    ' Note: ARP entries have already been cleared in uninstall stage  

    ' HKCU Registration  
    RegDeleteKey HKCU, "Software\Microsoft\Office\15.0\Registration"  
    RegDeleteKey HKCU, "Software\Microsoft\Office\16.0\Registration"  
    RegDeleteKey HKCU, "Software\Microsoft\Office\Registration"  

    
    ' C2R specifics  
    ' AppV key "SOFTWARE\Microsoft\AppV" has already been cleared in uninstall stage  

    ' Virtual InstallRoot  
    RegDeleteKey HKLM, "SOFTWARE\Microsoft\Office\15.0\Common\InstallRoot\Virtual"  
    RegDeleteKey HKLM, "SOFTWARE\Microsoft\Office\16.0\Common\InstallRoot\Virtual"  
    RegDeleteKey HKLM, "SOFTWARE\Microsoft\Office\Common\InstallRoot\Virtual"  

    ' Mapi reg  
    If NOT dictionaryKeepSku.Count > 0 Then RegDeleteKey HKLM, "SOFTWARE\Classes\CLSID\{2027FC3B-CF9D-4ec7-A823-38BA308625CC}"  
    
    ' C2R keys  
    RegDeleteKey HKCU, "SOFTWARE\Microsoft\Office\15.0\ClickToRun"  
    RegDeleteKey HKLM, "SOFTWARE\Microsoft\Office\15.0\ClickToRun"  
    RegDeleteKey HKLM, "SOFTWARE\Microsoft\Office\15.0\ClickToRunStore"  
    RegDeleteKey HKCU, "SOFTWARE\Microsoft\Office\16.0\ClickToRun"  
    RegDeleteKey HKLM, "SOFTWARE\Microsoft\Office\16.0\ClickToRun"  
    RegDeleteKey HKLM, "SOFTWARE\Microsoft\Office\16.0\ClickToRunStore"  
    RegDeleteKey HKCU, "SOFTWARE\Microsoft\Office\ClickToRun"  
    RegDeleteKey HKLM, "SOFTWARE\Microsoft\Office\ClickToRun"  
    RegDeleteKey HKLM, "SOFTWARE\Microsoft\Office\ClickToRunStore"  
    
    ' Office key in HKLM  
    If Not dictionaryKeepSku.Count > 0 Then
    	'double calls to ensure Wow6432 gets cleared out as well  
    	RegDeleteKey HKLM, "Software\Microsoft\Office\15.0"  
    	RegDeleteKey HKLM, "Software\Microsoft\Office\15.0"  
    	RegDeleteKey HKLM, "Software\Microsoft\Office\16.0"  
    	RegDeleteKey HKLM, "Software\Microsoft\Office\16.0"  
    End If
    ClearOfficeHKLM "SOFTWARE\Microsoft\Office"  

    ' Run key  
    sSubKeyName = "SOFTWARE\Microsoft\Windows\CurrentVersion\Run"  
    If RegEnumValues (HKLM, sSubKeyName, arrNames, arrTypes) Then
        For Each name in arrNames
            If RegReadValue(HKLM, sSubKeyName, name, sValue, "REG_SZ") Then  
                If IsC2R(sValue) Then RegDeleteValue HKLM, sSubKeyName, name, False
            End If
        Next 'item  
    End If
    RegDeleteValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "Lync15", False  
    RegDeleteValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "Lync16", False  
    
    
    If NOT dictionaryKeepSku.Count > 0 Then 
        ' Protocol Handlers  
        RegDeleteKey HKLM, "SOFTWARE\Classes\Protocols\Handler\osf"  
    
        ' Groove ShellIconOverlayIdentifiers  
        RegDeleteKey HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers\Microsoft SPFS Icon Overlay 1 (ErrorConflict)"  
        RegDeleteKey HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers\Microsoft SPFS Icon Overlay 2 (SyncInProgress)"  
        RegDeleteKey HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers\Microsoft SPFS Icon Overlay 3 (InSync)"  
        RegDeleteKey HKLM, "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers\Microsoft SPFS Icon Overlay 1 (ErrorConflict)"  
        RegDeleteKey HKLM, "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers\Microsoft SPFS Icon Overlay 2 (SyncInProgress)"  
        RegDeleteKey HKLM, "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers\Microsoft SPFS Icon Overlay 3 (InSync)"  

        ' Shell extensions  
        RegDeleteValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved\", "{B28AA736-876B-46DA-B3A8-84C5E30BA492}", False  
        RegDeleteValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved\", "{8B02D659-EBBB-43D7-9BBA-52CF22C5B025}", False  
        RegDeleteValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved\", "{0875DCB6-C686-4243-9432-ADCCF0B9F2D7}", False  
        RegDeleteValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved\", "{42042206-2D85-11D3-8CFF-005004838597}", False  
        RegDeleteValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved\", "{993BE281-6695-4BA5-8A2A-7AACBFAAB69E}", False  
        RegDeleteValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved\", "{C41662BB-1FA0-4CE0-8DC5-9B7F8279FF97}", False  
        RegDeleteValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved\", "{506F4668-F13E-4AA1-BB04-B43203AB3CC0}", False  
        RegDeleteValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved\", "{D66DC78C-4F61-447F-942B-3FB6980118CF}", False  
        RegDeleteValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved\", "{46137B78-0EC3-426D-8B89-FF7C3A458B5E}", False  
    
        ' BHO  
        RegDeleteKey HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{31D09BA0-12F5-4CCE-BE8A-2923E76605DA}"  
        RegDeleteKey HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{B4F3A835-0E21-4959-BA22-42B3008E02FF}"  
        RegDeleteKey HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{D0498E0A-45B7-42AE-A9AA-ABA463DBD3BF}"  
        RegDeleteKey HKLM, "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{31D09BA0-12F5-4CCE-BE8A-2923E76605DA}"  
        RegDeleteKey HKLM, "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{B4F3A835-0E21-4959-BA22-42B3008E02FF}"  
        RegDeleteKey HKLM, "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{D0498E0A-45B7-42AE-A9AA-ABA463DBD3BF}"  
    
        ' OneNote Namespace Extension for Desktop  
        RegDeleteKey HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{0875DCB6-C686-4243-9432-ADCCF0B9F2D7}"  
    
        ' Web Sites  
        RegDeleteKey HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\Namespace\{B28AA736-876B-46DA-B3A8-84C5E30BA492}"  
        RegDeleteKey HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\NetworkNeighborhood\Namespace\{46137B78-0EC3-426D-8B89-FF7C3A458B5E}"  

        ' VolumeCaches  
        RegDeleteKey HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Microsoft Office Temp Files"  
    End If 'NOT dictionaryKeepSku.Count > 0  

    ' ARP  
    ' Note: configuration entries have already been removed   
    ' as part of the 'Uninstall' stage  
    If RegEnumKey(HKLM, REG_ARP, arrKeys) Then
        For Each item in arrKeys
            If Len(item) > 37 Then
                sGuid = UCase(Left(item, 38))
                If CheckDelete(sGuid) Then RegDeleteKey HKLM, REG_ARP & item & "\"  
            End If 'Len(Item)>37  
        Next 'Item  
    End If

    ' UpgradeCodes, WI config, WI global config  
    LogH2 "Scanning Windows Installer metadata for removeable UpgradeCodes"  
    For iLoopCnt = 1 to 5
        Select Case iLoopCnt
        Case 1
            sSubKeyName = "SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes\"  
            hDefKey = HKLM
        Case 2 
            sSubKeyName = "Installer\UpgradeCodes\"  
            hDefKey = HKCR
        Case 3
            sSubKeyName = "SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\"  
            hDefKey = HKLM
        Case 4 
            sSubKeyName = "Installer\Features\"  
            hDefKey = HKCR
        Case 5 
            sSubKeyName = "Installer\Products\"  
            hDefKey = HKCR
        End Select
        If RegEnumKey(hDefKey, sSubKeyName, arrKeys) Then
            For Each item in arrKeys
                ' ensure the expected length for a compressed GUID  
                If Len(item) = 32 Then
                    ' expand the GUID  
                    sGuid = GetExpandedGuid(item) 
                    ' check if it's an Office key  
                    If CheckDelete(sGuid) Then
                        If iLoopCnt < 3 Then
                            ' enum all entries  
                            RegEnumValues hDefKey, sSubKeyName & item, arrNames, arrTypes
                            If IsArray(arrNames) Then
                                ' delete entries within removal scope  
                                For Each name in arrNames
                                    If Len(name) = 32 Then
                                        sGuid = GetExpandedGuid(name)
                                        If CheckDelete(sGuid) Then RegDeleteValue hDefKey, sSubKeyName & item & "\", name, True  
                                    Else
                                        ' invalid data -> delete the value  
                                        RegDeleteValue hDefKey, sSubKeyName & item & "\", name, True  
                                    End If
                                Next 'Name  
                            End If 'IsArray(arrNames)  
                            ' if all entries were removed - delete the key  
                            If NOT RegEnumValues(hDefKey, sSubKeyName & item, arrNames, arrTypes) Then RegDeleteKey hDefKey, sSubKeyName & item & "\"  
                        Else 'iLoopCnt >= 3  
                            RegDeleteKey hDefKey, sSubKeyName & item & "\"  
                        End If 'iLoopCnt < 3  
                    End If 'InScope  
                End If 'Len(Item)=32  
            Next 'Item  
        End If 'RegEnumKey  
    Next 'iLoopCnt  

    ' Components in Global  
    LogH2 "Scanning Windows Installer Global Components metadata"  
    sSubKeyName = "SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\"  
    hDefKey = HKLM
    If RegEnumKey(hDefKey, sSubKeyName, arrKeys) Then
        For Each item in arrKeys
            ' ensure the expected length for a compressed GUID  
            If Len(Item) = 32 Then
                If RegEnumValues(hDefKey, sSubKeyName & item, arrNames, arrTypes) Then
                    For Each name in arrNames
                        If Len(Name) = 32 Then
                            sGuid = GetExpandedGuid(Name)
                            If CheckDelete(sGuid) Then
                                RegDeleteValue hDefKey, sSubKeyName & item & "\", name, False  
                                ' if all entries were removed - delete the key  
                                If NOT RegEnumValues(hDefKey, sSubKeyName & item, arrTestNames, arrTestTypes) Then RegDeleteKey hDefKey, sSubKeyName & item & "\"  
                            End If
                        End If '32  
                    Next 'Name  
                End If 'RegEnumValues  
            End If '32  
        Next 'Item  
    End If 'RegEnumKey  

    ' Published Components  
    LogH2 "Scanning Windows Installer Published Components metadata"  
    sSubKeyName = "Installer\Components\"  
    hDefKey = HKCR
    If RegEnumKey(hDefKey, sSubKeyName, arrKeys) Then
        For Each item in arrKeys
            ' ensure the expected length for a compressed GUID  
            If Len(Item) = 32 Then
                If RegEnumValues(hDefKey, sSubKeyName & item, arrNames, arrTypes) Then
                    For Each name in arrNames
                        If RegReadValue (hDefKey, sSubKeyName & item, name, sValue, "REG_MULTI_SZ") Then  
                            arrMultiSzValues = Split(sValue, chr(13))
                            If IsArray(arrMultiSzValues) Then
                                i = -1
                                ReDim arrMultiSzNewValues(-1)
                                fDelReg = False
                                For Each value in arrMultiSzValues
                                    If Len(value) > 19 Then
                                        sGuid = ""  
                                        If GetDecodedGuid(Left(value, SQUISHED), sGuid) Then
                                            If CheckDelete(sGuid) Then
                                                fDelReg = True
                                            Else
                                                i = i + 1 
                                                ReDim Preserve arrMultiSzNewValues(i)
                                                arrMultiSzNewValues(i) = value
                                            End If 'CheckDelete  
                                        End If 'decode  
                                    End If '19  
                                Next 'Value  
                                If NOT (i = -1) Then
                                    If NOT UBound(arrMultiSzValues) = i Then oReg.SetMultiStringValue hDefKey, sSubKeyName & item, name,arrMultiSzNewValues
                                Else
                                    If fDelReg Then
                                        RegDeleteValue hDefKey, sSubKeyName & item & "\", name, True  
                                        ' if all entries were removed - delete the key  
                                        If NOT RegEnumValues(hDefKey, sSubKeyName & item, arrTestNames, arrTestTypes) Then RegDeleteKey hDefKey, sSubKeyName & item & "\"  
                                    End If 'DelReg  
                                End If
                            End If 'IsArray  
                        End If
                    Next 'Name  
                End If 'RegEnumValues  
            End If '32  
        Next 'Item  
    End If 'RegEnumKey  

End Sub 'Regwipe  

'-------------------------------------------------------------------------------  
'   FileWipe  
'  
'   Removal of left behind services, files and shortcuts   
'-------------------------------------------------------------------------------  
Sub FileWipe
    Dim scRoot
    Dim fDelFolders
    
    If CBool(iError AND ERROR_USERCANCEL) Then Exit Sub

    LogH1 "File Cleanup"   

    fDelFolders = False
    CloseOfficeApps
    DelSchtasks

    ' remove the OfficeSvc service  
    LogH2 "Deleting OfficeSvc service"  
    DeleteService "OfficeSvc"  

    ' SP1 addition / change  
    ' remove the ClickToRunSvc service  
    LogH2 "Deleting ClickToRunSvc service"   
    DeleteService "ClickToRunSvc"  

    ' adding additional processes for termination  
    dicApps.Add "explorer.exe", "explorer.exe"  
    dicApps.Add "msiexec.exe", "msiexec.exe"  
    dicApps.Add "ose.exe", "ose.exe"  
    
    If fC2R Then
	    ' delete C2R package files  
        LogH2 "Deleting C2R package files"   
        If oFso.FolderExists(sProgramFiles & "\Microsoft Office 15") _  
        Or oFso.FolderExists(sProgramFiles & "\Microsoft Office 16") _  
        Or oFso.FolderExists(oWShell.ExpandEnvironmentStrings("%programfiles%") & "\Microsoft Office\PackageManifests") _  
        Or oFso.FolderExists(oWShell.ExpandEnvironmentStrings("%programfiles(x86)%") & "\Microsoft Office\PackageManifests") Then  
            fDelFolders = True
            Log "   Attention: Now closing Explorer.exe for file delete operations"  
            Log "   Explorer will automatically restart."  
            wscript.sleep 2000
            CloseOfficeApps
        End If
        ' delete Office folders  
        LogH2 "Deleting Office folders"  
        DeleteFolder sProgramFiles & "\Microsoft Office 15"  
        DeleteFolder sProgramFiles & "\Microsoft Office 16"  
        If f64 Then 
        	DeleteFolder sCommonProgramFilesX86 & "\Microsoft Office 15"  
        	DeleteFolder sCommonProgramFilesX86 & "\Microsoft Office 16"  
        End If
        If fDelFolders Then
        	DeleteFolder sProgramFiles & "\Microsoft Office\PackageManifests"  
        	DeleteFolder sProgramFiles & "\Microsoft Office\PackageSunrisePolicies"  
        	DeleteFolder sProgramFiles & "\Microsoft Office\root"  
        	DeleteFile sProgramFiles & "\Microsoft Office\AppXManifest.xml"  
         	DeleteFile sProgramFiles & "\Microsoft Office\FileSystemMetadata.xml"  
        	If Not dictionaryKeepSku.Count > 0 Then 
        		DeleteFolder sProgramFiles & "\Microsoft Office\Office16"  
        		DeleteFolder sProgramFiles & "\Microsoft Office\Office15"  
        	End If
        	If f64 Then
	        	DeleteFolder sProgramFilesX86 & "\Microsoft Office\PackageManifests"  
	        	DeleteFolder sProgramFilesX86 & "\Microsoft Office\PackageSunrisePolicies"  
	        	DeleteFolder sProgramFilesX86 & "\Microsoft Office\root"  
	        	DeleteFile sProgramFilesX86 & "\Microsoft Office\AppXManifest.xml"  
	         	DeleteFile sProgramFilesX86 & "\Microsoft Office\FileSystemMetadata.xml"  
	        	If Not dictionaryKeepSku.Count > 0 Then 
	        		DeleteFolder sProgramFilesX86 & "\Microsoft Office\Office16"  
	        		DeleteFolder sProgramFilesX86 & "\Microsoft Office\Office15"  
	        	End If
       		End If
		End If
        
        DeleteFolder sProgramData & "\Microsoft\ClickToRun"  
        DeleteFolder sCommonProgramFiles & "\microsoft shared\ClickToRun"  
        DeleteFolder sProgramData & "\Microsoft\office\FFPackageLocker"  
        DeleteFolder sProgramData & "\Microsoft\office\ClickToRunPackageLocker"  
        If oFso.FileExists(sProgramData & "\Microsoft\office\FFPackageLocker") Then DeleteFile sProgramData & "\Microsoft\office\FFPackageLocker"  
        If oFso.FileExists(sProgramData & "\Microsoft\office\FFStatePBLocker") Then DeleteFile sProgramData & "\Microsoft\office\FFStatePBLocker"  
        If NOT dictionaryKeepSku.Count > 0 Then DeleteFolder sProgramData & "\Microsoft\office\Heartbeat"  
        DeleteFolder oWShell.ExpandEnvironmentStrings("%userprofile%") & "\Microsoft Office"  
        DeleteFolder oWShell.ExpandEnvironmentStrings("%userprofile%") & "\Microsoft Office 15"  
        DeleteFolder oWShell.ExpandEnvironmentStrings("%userprofile%") & "\Microsoft Office 16"  
    End If

    ' restore explorer.exe if needed  
    RestoreExplorer

    ' delete shortcuts  
    LogH2 "Search and delete shortcuts"  
    CleanShortcuts sAllUsersProfile, True, False
    CleanShortcuts sProfilesDirectory, True, False

    ' delete empty folder structures  
    If dicDelFolder.Count > 0 Then
        LogH2 "Removing empty folders"  
        DeleteEmptyFolders
    End If

    ' add the collected files in use for delete on reboot  
    If dicDelInUse.Count > 0 Then ScheduleDeleteEx

    LogH2 "File Cleanup complete"  
End Sub ' FileWipe  

'-------------------------------------------------------------------------------  
'   CleanShortcuts  
'  
'   Recursively search all profile folders for Office shortcuts in scope   
'-------------------------------------------------------------------------------  
Sub CleanShortcuts (sFolder, fDelete, fUnPin)
    Dim oFolder, fld, file, sc, item
    Dim fDeleteSC

	Set oFolder = oFso.GetFolder(sFolder)
	' exclude system protected link folders  
    If CBool(oFolder.Attributes AND 1024) Then Exit Sub

    On Error Resume Next
    For Each fld In oFolder.SubFolders
        If Err <> 0 Then
		    CheckError "CleanShortcuts: " & vbTab & sFolder  
        Else
            CleanShortcuts fld.Path, fDelete, fUnPin
        End If
	Next
    For Each file In oFolder.Files
		If LCase(Right(file.Path, 4)) = ".lnk" Then  
            fDeleteSC = False
            LogOnly " check file: " & file.Path  
            set sc = oWShell.CreateShortcut(file.Path)
            If Err <> 0 Then
		        CheckError "CleanShortcutsSC: " & vbTab & sFolder  
            Else
                'Compare if the shortcut target is in the list of executables that will be removed  
                'LogOnly "  - SC.TargetPath: " & sc.TargetPath  
                If Len(sc.TargetPath) > 0 Then
                    If InStr(sc.TargetPath,"{") > 0 Then  
                        'Handle Windows Installer shortcuts  
                        If Len(sc.TargetPath) >= InStr(sc.TargetPath,"{") + 37 Then  
                            If CheckDelete(Mid(sc.TargetPath, InStr(sc.TargetPath,"{"), 38)) Then fDeleteSC = True  
                        End If
                    Else
                        'Handle regular shortcuts  
                        If IsC2R(sc.TargetPath) Then fDeleteSC = True
                        If NOT oFso.FileExists(sc.TargetPath) Then
                            ' Shortcut target does not exist  
                            If IsC2R(sc.TargetPath) Then
                                LogOnly "removing Office shortcut with non-existent target: " & file.Path & " - " & sc.TargetPath  
                                fDeleteSC = True
                            Else
                                'LogOnly "  - keep orphaned SC as target is not in scope: " & sc.TargetPath  
                            End If
                        Else
                            'LogOnly "  - keep SC as shortcut target does still exist: " & sc.TargetPath  
                        End If
                    End If
                End If
            End If
            If fDeleteSC Then 
                If NOT dicDelFolder.Exists(sFolder) Then dicDelFolder.Add sFolder, sFolder
                If fUnPin Then UnPin file
                If fDelete Then
                    UnPin file
                    DeleteFile file.Path
                End If
                fDeleteSC = False
            End If 'fDeleteSC  
        End If
	Next
    On Error Goto 0
End Sub 'CleanShortcuts  

'-------------------------------------------------------------------------------  
'   UnPin  
'  
'   Unpins a shortcut from the taskbar or start menu   
'-------------------------------------------------------------------------------  
Sub UnPin(file)
    Dim fldItem, verb

    On Error Resume Next
    Set fldItem = oShellApp.NameSpace(file.ParentFolder.Path).ParseName(file.Name)
    For Each verb in fldItem.Verbs
        Select Case Replace(verb, "&", "")  
        Case "Unpin from Taskbar", "Von Taskleiste lösen", "Détacher du barre des tâches", "Détacher de la barre des tâches", "Desanclar de la barra de tareas", "Ta bort från Aktivitetsfältet", "タスク バーに表示しない(K)", "작업 표시줄에서 제거(K)", "Открепить от панели задач"  
            verb.DoIt
        Case "Unpin from Start Menu", "Vom Startmenü lösen", "Détacher du menu Démarrer", "Détacher de la menu Démarrer"  
            If iVersionNT > 600 Then verb.DoIt
        End Select
    Next
    On Error Goto 0
End Sub

'-------------------------------------------------------------------------------  
'   ClearOfficeHKLM  
'  
'   Recursively search and clear the HKLM Office key from references in scope   
'-------------------------------------------------------------------------------  
Sub ClearOfficeHKLM (sSubKeyName)
    Dim key, name
    Dim sValue
    Dim arrKeys, arrNames, arrTypes
    Dim arrTestNames, arrTestTypes, arrTestKeys

    ' recursion  
    If RegEnumKey(HKLM, sSubKeyName, arrKeys) Then
        For Each key in arrKeys
            ClearOfficeHKLM sSubKeyName & "\" & key  
        Next 'key  
    End If
    
    ' identify & clear removable entries  
    If RegEnumValues(HKLM, sSubKeyName, arrNames, arrTypes) Then
        For Each name in arrNames
            If RegReadValue(HKLM, sSubKeyName, name, sValue, "REG_SZ") Then  
                If IsC2R(sValue) Then RegDeleteValue HKLM, sSubKeyName, name, False
            End If
        Next 'item  
    End If
    
    ' clear out empty keys  
    If (NOT RegEnumValues(HKLM, sSubKeyName, arrNames, arrTypes)) AND _
       (NOT RegEnumKey(HKLM, sSubKeyName, arrKeys)) AND _
       (NOT dictionaryKeepSku.Count > 0) Then _
        RegDeleteKey HKLM, sSubKeyName
End Sub


'-------------------------------------------------------------------------------  
'  
'                                        Helper Functions  
'  
'-------------------------------------------------------------------------------  

'-------------------------------------------------------------------------------  
'   IsC2R  
'  
'   Check if the passed in string is related to C2R  
'   Returns TRUE if in C2R scope  
'-------------------------------------------------------------------------------  
Function IsC2R (sValue)

	Const OREF            = "\ROOT\OFFICE1"  
	Const OREFROOT        = "Microsoft Office\Root\"  
	Const OREGREFC2R15    = "Microsoft Office 15"  
	Const OREGREFC2R16    = "Microsoft Office 16"  
	Const OCOMMON		  = "\microsoft shared\ClickToRun"  
	Const OMANIFEST		  = "\Microsoft Office\PackageManifests"  
	Const OSUNRISE		  = "\Microsoft Office\PackageSunrisePolicies"  
	
	Dim fReturn
	
	fReturn = False
	
    If InStr(LCase(sValue), LCase(OREF)) > 0 _
    Or InStr(LCase(sValue), LCase(OREFROOT)) > 0 _
    Or InStr(LCase(sValue), LCase(OCOMMON)) > 0 _
    Or InStr(LCase(sValue), LCase(OMANIFEST)) > 0 _
    Or InStr(LCase(sValue), LCase(OSUNRISE)) > 0 _
    Or InStr(LCase(sValue), LCase(OREGREFC2R15)) > 0 _
    Or InStr(LCase(sValue), LCase(OREGREFC2R16)) > 0 Then fReturn = True
    
	IsC2R = fReturn
End Function

'-------------------------------------------------------------------------------  
'   CheckRegPermissions  
'  
'   Test the permissions on some key registry locations to determine if   
'   sufficient permissions are given.  
'-------------------------------------------------------------------------------  
Function CheckRegPermissions
    Const KEY_QUERY_VALUE       = &H0001
    Const KEY_SET_VALUE         = &H0002
    Const KEY_CREATE_SUB_KEY    = &H0004
    Const DELETE                = &H00010000

    Dim sSubKeyName
    Dim fReturn

    CheckRegPermissions = True
    sSubKeyName = "Software\Microsoft\Windows\"  
    oReg.CheckAccess HKLM, sSubKeyName, KEY_QUERY_VALUE, fReturn
    If Not fReturn Then CheckRegPermissions = False
    oReg.CheckAccess HKLM, sSubKeyName, KEY_SET_VALUE, fReturn
    If Not fReturn Then CheckRegPermissions = False
    oReg.CheckAccess HKLM, sSubKeyName, KEY_CREATE_SUB_KEY, fReturn
    If Not fReturn Then CheckRegPermissions = False
    oReg.CheckAccess HKLM, sSubKeyName, DELETE, fReturn
    If Not fReturn Then CheckRegPermissions = False

End Function 'CheckRegPermissions  

'-------------------------------------------------------------------------------  
'   GetMyProcessId  
'  
'   Returns the process id of the own process  
'-------------------------------------------------------------------------------  
Function GetMyProcessId()
    Dim iParentProcessId

    iParentProcessId = 0
    ' try to obtain from creating a new cscript instance  
    On Error Resume Next
    iParentProcessId = GetObject("winmgmts:root\cimv2").Get("Win32_Process.Handle='" & oWShell.Exec("cscript.exe").ProcessId & "'").ParentProcessId  
    On Error Goto 0
    If iParentProcessId > 0 Then
        ' succeeded to obtain the process id  
        GetMyProcessId = iParentProcessId
        Exit Function
    End If

    ' failed to obtain the id from the creation of a new instance  
    ' get it from enum of Win32_Process  
    Dim Process, Processes
    Err.Clear
    Set Processes = oWmiLocal.ExecQuery("Select * From Win32_Process WHERE Name='cscript.exe' AND CommandLine like '%" & SCRIPTNAME & "%'")  
    For Each Process in Processes
        iParentProcessId = Process.ProcessId
        Exit For
    Next
    GetMyProcessId = iParentProcessId
End Function 'GetMyProcessId  

'-------------------------------------------------------------------------------  
'   Delimiter  
'  
'   Returns the delimiter for a passed in string  
'-------------------------------------------------------------------------------  
Function Delimiter (sVersion)
    Dim iCnt, iAsc

    Delimiter = " "  
    For iCnt = 1 To Len(sVersion)
        iAsc = Asc(Mid(sVersion, iCnt, 1))
        If Not (iASC >= 48 And iASC <= 57) Then 
            Delimiter = Mid(sVersion, iCnt, 1)
            Exit Function
        End If
    Next 'iCnt  
End Function

'-------------------------------------------------------------------------------  
'   GetExpandedGuid  
'  
'   Returns the expanded string from a compressed GUID  
'-------------------------------------------------------------------------------  
Function GetExpandedGuid (sGuid)
    Dim i

    'Ensure valid length  
    If NOT Len(sGuid) = 32 Then Exit Function

    GetExpandedGuid = "{" & StrReverse(Mid(sGuid,1,8)) & "-" & _  
                       StrReverse(Mid(sGuid,9,4)) & "-" & _  
                       StrReverse(Mid(sGuid,13,4))& "-"  
    For i = 17 To 20
	    If i Mod 2 Then
		    GetExpandedGuid = GetExpandedGuid & mid(sGuid,(i + 1),1)
	    Else
		    GetExpandedGuid = GetExpandedGuid & mid(sGuid,(i - 1),1)
	    End If
    Next
    GetExpandedGuid = GetExpandedGuid & "-"  
    For i = 21 To 32
	    If i Mod 2 Then
		    GetExpandedGuid = GetExpandedGuid & mid(sGuid,(i + 1),1)
	    Else
		    GetExpandedGuid = GetExpandedGuid & mid(sGuid,(i - 1),1)
	    End If
    Next
    GetExpandedGuid = GetExpandedGuid & "}"  
End Function 'GetExpandedGuid  

'-------------------------------------------------------------------------------  
'   GetCompressedGuid  
'  
'   Returns the compressed string for a GUID  
'-------------------------------------------------------------------------------  
Function GetCompressedGuid (sGuid)
    Dim sCompGUID
    Dim i
    
    'Ensure Valid Length  
    If NOT Len(sGuid) = 38 Then Exit Function

    sCompGUID = StrReverse(Mid(sGuid,2,8))  & _
                StrReverse(Mid(sGuid,11,4)) & _
                StrReverse(Mid(sGuid,16,4)) 
    For i = 21 To 24
	    If i Mod 2 Then
		    sCompGUID = sCompGUID & Mid(sGuid, (i + 1), 1)
	    Else
		    sCompGUID = sCompGUID & Mid(sGuid, (i - 1), 1)
	    End If
    Next
    For i = 26 To 37
	    If i Mod 2 Then
		    sCompGUID = sCompGUID & Mid(sGuid, (i - 1), 1)
	    Else
		    sCompGUID = sCompGUID & Mid(sGuid, (i + 1), 1)
	    End If
    Next
    GetCompressedGuid = sCompGUID
End Function

'-------------------------------------------------------------------------------  
'   GetDecodedGuid  
'  
'   Returns the GUID from a squished format  
'-------------------------------------------------------------------------------  
Function GetDecodedGuid(sEncGuid, sGuid)

Dim sDecode, sTable, sHex, iChr
Dim arrTable
Dim i, iAsc, pow85, decChar
Dim lTotal
Dim fFailed

    fFailed = False

    sTable =    "0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff," & _  
                "0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff," & _  
                "0xff,0x00,0xff,0xff,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0a,0x0b,0xff," & _  
                "0x0c,0x0d,0x0e,0x0f,0x10,0x11,0x12,0x13,0x14,0x15,0xff,0xff,0xff,0x16,0xff,0x17," & _  
                "0x18,0x19,0x1a,0x1b,0x1c,0x1d,0x1e,0x1f,0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27," & _  
                "0x28,0x29,0x2a,0x2b,0x2c,0x2d,0x2e,0x2f,0x30,0x31,0x32,0x33,0xff,0x34,0x35,0x36," & _  
                "0x37,0x38,0x39,0x3a,0x3b,0x3c,0x3d,0x3e,0x3f,0x40,0x41,0x42,0x43,0x44,0x45,0x46," & _  
                "0x47,0x48,0x49,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,0x51,0x52,0xff,0x53,0x54,0xff"  
    arrTable = Split(sTable,",")  
    lTotal = 0 : pow85 = 1
    For i = 0 To 19
        fFailed = True
        If i Mod 5 = 0 Then
            lTotal = 0 : pow85 = 1
        End If ' i Mod 5 = 0  
        iAsc = Asc(Mid(sEncGuid,i+1,1))
        sHex = arrTable(iAsc)
        If iAsc >=128 Then Exit For
        If sHex = "0xff" Then Exit For  
        iChr = CInt("&h"&Right(sHex,2))  
        lTotal = lTotal + (iChr * pow85)
        If i Mod 5 = 4 Then sDecode = sDecode & DecToHex(lTotal)
        pow85 = pow85 * 85
        fFailed = False
    Next 'i  
    If NOT fFailed Then sGuid = "{"&Mid(sDecode,1,8)&"-"& _  
                                Mid(sDecode,13,4)&"-"& _  
                                Mid(sDecode,9,4)&"-"& _  
                                Mid(sDecode,23,2) & Mid(sDecode,21,2)&"-"& _  
                                Mid(sDecode,19,2) & Mid(sDecode,17,2) & Mid(sDecode,31,2) & Mid(sDecode,29,2) & Mid(sDecode,27,2) & Mid(sDecode,25,2) &"}"  

    GetDecodedGuid = NOT fFailed

End Function 'GetDecodedGuid  

'-------------------------------------------------------------------------------  
'   DecToHex  
'  
'   Convert a long decimal to hex  
'-------------------------------------------------------------------------------  
Function DecToHex(lDec)
    
    Dim sHex
    Dim iLen
    Dim lVal, lExp
    Dim arrChr
  
    arrChr = Array("0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F")  
    sHex = ""  
    lVal = lDec
    lExp = 16^10
    While lExp >= 1
        If lVal >= lExp Then
            sHex = sHex & arrChr(Int(lVal / lExp))
            lVal = lVal - lExp * Int(lVal / lExp)
        Else
            sHex = sHex & "0"  
            If sHex = "0" Then sHex = ""  
        End If
        lExp = lExp / 16
    Wend

    iLen = 8 - Len(sHex)
    If iLen > 0 Then sHex = String(iLen, "0") & sHex  
    DecToHex = sHex
End Function

'-------------------------------------------------------------------------------  
'   RelaunchAs64Host  
'  
'   Relaunch self with 64 bit CScript host  
'-------------------------------------------------------------------------------  
Sub RelaunchAs64Host
    Dim Argument, sCmd

    sCmd = Replace(LCase(wscript.Path), "syswow64", "sysnative") & "\cscript.exe " & Chr(34) & WScript.scriptFullName & Chr(34)  
    If Wscript.Arguments.Count > 0 Then
        For Each Argument in Wscript.Arguments
            sCmd = sCmd  &  " " & chr(34) & Argument & chr(34)  
        Next 'Argument  
    End If
    Wscript.Quit CLng(oWShell.Run(sCmd, 1, True))

End Sub 'RelaunchAs64Host  

'-------------------------------------------------------------------------------  
'   RelaunchElevated  
'  
'   Relaunch the script with elevated permissions  
'-------------------------------------------------------------------------------  
Sub RelaunchElevated
    Dim Argument, Process, Processes
    Dim iParentProcessId, iSpawnedProcessId
    Dim sCmdLine, sRetValFile, sValue
    Dim oShell

    SetError ERROR_RELAUNCH
    ' Shell object for relaunch  
    Set oShell = CreateObject("Shell.Application")  
    ' build command line for relaunch  
    sCmdLine = Chr(34) & WScript.ScriptFullName & Chr(34)
    If Wscript.Arguments.Count > 0 Then
        For Each Argument in Wscript.Arguments
            Select Case UCase(Argument)
            Case "/Q","/QUIET"  
                'Don't try to relaunch in quiet mode  
                Exit Sub
                SetError ERROR_ELEVATION_FAILED
            Case "UAC"  
                'Already tried elevated relaunch  
                SetError ERROR_ELEVATION_FAILED
                Exit Sub
            Case Else
                sCmdLine = sCmdLine  &  " " & chr(34) & Argument & chr(34)  
            End Select
        Next 'Argument  
    End If
    ' prep work to get the return value from the elevated process  
    iParentProcessId = GetMyProcessId 
    
'    ' make user aware of elevation attempt after reboot  
'    If RegReadValue(HKCU, "SOFTWARE\Microsoft\Office\15.0\CleanC2R", "Rerun", sValue, "REG_DWORD") Then  
'        oWShell.Popup "System reboot complete. OffScrub will now prompt for elevation!", 10, SCRIPTNAME & " - NOTE!"  
'    End If  
    
    ' launch the elevated instance  
    oShell.ShellExecute "cscript.exe", sCmdLine & " /NoElevate UAC", "", "runas", 1  
    ' get the process id of the spawned instance  
    WScript.Sleep 500
    Set Processes = oWmiLocal.ExecQuery("Select * From Win32_Process WHERE ParentProcessId='" & iParentProcessId & "'")  
    If Processes.Count > 0 Then
        For Each Process in Processes
		    iSpawnedProcessId = Process.ProcessId
		    Exit For
        Next 'Process  
        ' monitor the tasklist to detect the end of the spawned process  
        While oWmiLocal.ExecQuery("Select * From Win32_Process WHERE ProcessId='" & iSpawnedProcessId & "'").Count > 0  
            WScript.Sleep 3000
        Wend
        ' get the return value from the file  
        Wscript.Quit GetRetValFromFile
    End If
    ' elevation failed (user declined)  
    SetError ERROR_ELEVATION_USERDECLINED
End Sub 'RelaunchElevated  

'-------------------------------------------------------------------------------  
'   RelaunchAsCScript  
'  
'   Relaunch self with Cscript as host  
'-------------------------------------------------------------------------------  
Sub RelaunchAsCScript
    Dim Argument
    Dim sCmdLine
    
    SetError ERROR_RELAUNCH
    sCmdLine = "cmd.exe /c " & WScript.Path & "\cscript.exe //NOLOGO " & Chr(34) & WScript.scriptFullName & Chr(34)  
    If Wscript.Arguments.Count > 0 Then
        For Each Argument in Wscript.Arguments
            sCmdLine = sCmdLine  &  " " & chr(34) & Argument & chr(34)  
        Next 'Argument  
    End If
    
    Wscript.Quit CLng(oWShell.Run(sCmdLine, 1, True))
End Sub 'RelaunchAsCScript  

'-------------------------------------------------------------------------------  
'   SetError  
'  
'   Set error bit(s)   
'-------------------------------------------------------------------------------  
Sub SetError(ErrorBit)
    iError = iError OR ErrorBit
    Select Case ErrorBit
    Case ERROR_DCAF_FAILURE, ERROR_STAGE2, ERROR_ELEVATION_USERDECLINED, ERROR_ELEVATION, ERROR_SCRIPTINIT
        iError = iError OR ERROR_FAIL
    End Select
End Sub

'-------------------------------------------------------------------------------  
'   ClearError  
'  
'   Unset error bit(s)   
'-------------------------------------------------------------------------------  
Sub ClearError(ErrorBit)
    iError = iError AND (ERROR_ALL - ErrorBit)
    Select Case ErrorBit
    Case ERROR_ELEVATION_USERDECLINED, ERROR_ELEVATION, ERROR_SCRIPTINIT
        iError = iError AND (ERROR_ALL - ERROR_FAIL)
    End Select
End Sub

'-------------------------------------------------------------------------------  
'   SetRetVal  
'  
'   Write return value to file  
'-------------------------------------------------------------------------------  
Sub SetRetVal(iError)
    Dim RetValFileStream
    
    'don't fail script execution if writing the return value to file fails  
    On Error Resume Next 

    Set RetValFileStream = oFso.createTextFile(sScrubDir & "\" & RETVALFILE, True, True)  
    RetValFileStream.Write iError
    RetValFileStream.Close
    On Error Goto 0
End Sub 'SetRetVal  

'-------------------------------------------------------------------------------  
'   GetRetValFromFile  
'  
'   Read return value from file.  
'   Used to ensure return value can get obtained from an elevated process  
'-------------------------------------------------------------------------------  
Function GetRetValFromFile ()
    Dim RetValFileStream
    Dim iRetValFromFile

    On Error Resume Next 'don't fail script execution when getting the return value from file fails  

    If oFso.FileExists(sScrubDir & "\" & RETVALFILE) Then  
        Set RetValFileStream = oFso.OpenTextFile(sScrubDir & "\" & RETVALFILE, 1, False, -2)  
        GetRetValFromFile = RetValFileStream.ReadAll
        RetValFileStream.Close
        Exit Function
    End If
    Err.Clear
    On Error Goto 0
    GetRetValFromFile = ERROR_UNKNOWN
End Function 'GetRetValFromFile  

'-------------------------------------------------------------------------------  
'   CreateLog  
'  
'   Create the removal log file  
'-------------------------------------------------------------------------------  
Sub CreateLog
    Dim DateTime
    Dim sLogName
    
    On Error Resume Next
    ' create the log file  
    Set DateTime = CreateObject("WbemScripting.SWbemDateTime")  
    DateTime.SetVarDate Now, True
    sLogName = sLogDir & "\" & oWShell.ExpandEnvironmentStrings("%COMPUTERNAME%")  
    sLogName = sLogName &  "_" & Left(DateTime.Value, 14)  
    sLogName = sLogName & "_ScrubLog.txt"  
    Err.Clear
    Set LogStream = oFso.CreateTextFile(sLogName, True, True)
    If Err <> 0 Then 
        Err.Clear
        sLogDir = sScrubDir
        sLogName = sLogDir & "\" & oWShell.ExpandEnvironmentStrings("%COMPUTERNAME%")  
        sLogName = sLogName &  "_" & Left(DateTime.Value, 14)  
        sLogName = sLogName & "_ScrubLog.txt"  
        Set LogStream = oFso.CreateTextFile(sLogName, True, True)
    End If
    On Error Goto 0

    Log "Microsoft Customer Support Services - " & ONAME & " Removal Utility" & vbCrLf &_  
        "Removes "& ONAME & " when a regular uninstall is no longer possible." & vbCrLf & vbCrLf & _  
        "Version: " & vbTab & SCRIPTVERSION & vbCrLf & _  
        "64 bit OS: " & vbTab & f64 & vbCrLf & _  
        "Removal start: " & vbTab & Time & vbCrLf  
    fLogInitialized = True
End Sub 'CreateLog  

'-------------------------------------------------------------------------------  
'   HiveString  
'  
'   Translates the numeric constant into the human readable registry hive string  
'-------------------------------------------------------------------------------  
Function HiveString(hDefKey)
    Select Case hDefKey
        Case HKCR : HiveString = "HKEY_CLASSES_ROOT"  
        Case HKCU : HiveString = "HKEY_CURRENT_USER"  
        Case HKLM : HiveString = "HKEY_LOCAL_MACHINE"  
        Case HKU  : HiveString = "HKEY_USERS"  
        Case Else : HiveString = hDefKey
    End Select
End Function

'-------------------------------------------------------------------------------  
'   RegKeyExists  
'  
'   Returns a boolean for the test on existence of a given registry key  
'-------------------------------------------------------------------------------  
Function RegKeyExists(hDefKey, sSubKeyName)
    Dim arrKeys
    RegKeyExists = False
    If oReg.EnumKey(hDefKey, sSubKeyName, arrKeys) = 0 Then RegKeyExists = True
End Function

'-------------------------------------------------------------------------------  
'   RegValExists  
'  
'   Returns a boolean for the test on existence of a given registry value  
'-------------------------------------------------------------------------------  
Function RegValExists(hDefKey,sSubKeyName,sName)
    Dim arrValueTypes, arrValueNames
    Dim i

    RegValExists = False
    If Not RegKeyExists(hDefKey,sSubKeyName) Then Exit Function
    If oReg.EnumValues(hDefKey,sSubKeyName,arrValueNames,arrValueTypes) = 0 AND IsArray(arrValueNames) Then
        For i = 0 To UBound(arrValueNames) 
            If LCase(arrValueNames(i)) = Trim(LCase(sName)) Then RegValExists = True
        Next 
    End If 'oReg.EnumValues  
End Function

'-------------------------------------------------------------------------------  
'   RegReadValue  
'  
'   Read the value of a given registry entry  
'   The correct type has to be passed in as argument  
'-------------------------------------------------------------------------------  
Function RegReadValue(hDefKey, sSubKeyName, sName, sValue, sType)
    Dim RetVal
    Dim Item
    Dim arrValues
    
    Select Case UCase(sType)
        Case "1", "REG_SZ"  
            RetVal = oReg.GetStringValue(hDefKey, sSubKeyName, sName, sValue)
            If Not RetVal = 0 AND f64 Then RetVal = oReg.GetStringValue(hDefKey, Wow64Key(hDefKey, sSubKeyName), sName, sValue)
        Case "2", "REG_EXPAND_SZ"  
            RetVal = oReg.GetExpandedStringValue(hDefKey, sSubKeyName, sName, sValue)
            If NOT RetVal = 0 AND f64 Then RetVal = oReg.GetExpandedStringValue(hDefKey, Wow64Key(hDefKey, sSubKeyName), sName, sValue)
        Case "3", "REG_BINARY"  
            RetVal = oReg.GetBinaryValue(hDefKey, sSubKeyName, sName, sValue)
            If NOT RetVal = 0 AND f64 Then RetVal = oReg.GetBinaryValue(hDefKey, Wow64Key(hDefKey, sSubKeyName), sName, sValue)
        Case "4", "REG_DWORD"  
            RetVal = oReg.GetDWORDValue(hDefKey, sSubKeyName, sName, sValue)
            If NOT RetVal = 0 AND f64 Then RetVal = oReg.GetDWORDValue(hDefKey, Wow64Key(hDefKey, sSubKeyName), sName, sValue)
        Case "7", "REG_MULTI_SZ"  
            RetVal = oReg.GetMultiStringValue(hDefKey, sSubKeyName, sName, arrValues)
            If NOT RetVal = 0 AND f64 Then RetVal = oReg.GetMultiStringValue(hDefKey, Wow64Key(hDefKey, sSubKeyName), sName, arrValues)
            If RetVal = 0 Then sValue = Join(arrValues, chr(13))
        Case Else
            RetVal = -1
    End Select 'sValue  
    
    RegReadValue = (RetVal = 0)
End Function 'RegReadValue  

'-------------------------------------------------------------------------------  
'   RegEnumValues  
'  
'   Enumerate a registry key to return all values  
'-------------------------------------------------------------------------------  
Function RegEnumValues(hDefKey, sSubKeyName, arrNames, arrTypes)
    Dim RetVal, RetVal64
    Dim arrNames32, arrNames64, arrTypes32, arrTypes64
    
    If f64 Then
        RetVal = oReg.EnumValues(hDefKey, sSubKeyName, arrNames32, arrTypes32)
        RetVal64 = oReg.EnumValues(hDefKey, Wow64Key(hDefKey, sSubKeyName), arrNames64, arrTypes64)
        If (RetVal = 0) AND (NOT RetVal64 = 0) AND IsArray(arrNames32) AND IsArray(arrTypes32) Then 
            arrNames = arrNames32
            arrTypes = arrTypes32
        End If
        If (NOT RetVal = 0) AND (RetVal64 = 0) AND IsArray(arrNames64) AND IsArray(arrTypes64) Then 
            arrNames = arrNames64
            arrTypes = arrTypes64
        End If
        If (RetVal = 0) AND (RetVal64 = 0) AND IsArray(arrNames32) AND IsArray(arrNames64) AND IsArray(arrTypes32) AND IsArray(arrTypes64) Then 
            arrNames = RemoveDuplicates(Split((Join(arrNames32, "\") & "\" & Join(arrNames64, "\")), "\"))  
            arrTypes = RemoveDuplicates(Split((Join(arrTypes32, "\") & "\" & Join(arrTypes64, "\")), "\"))  
        End If
    Else
        RetVal = oReg.EnumValues(hDefKey, sSubKeyName, arrNames, arrTypes)
    End If 'f64  
    RegEnumValues = ((RetVal = 0) OR (RetVal64 = 0)) AND IsArray(arrNames) AND IsArray(arrTypes)
End Function 'RegEnumValues  

'-------------------------------------------------------------------------------  
'   RegEnumKey  
'  
'   Enumerate a registry key to return all subkeys  
'-------------------------------------------------------------------------------  
Function RegEnumKey(hDefKey, sSubKeyName, arrKeys)
    Dim RetVal, RetVal64
    Dim arrKeys32, arrKeys64
    
    If f64 Then
        RetVal = oReg.EnumKey(hDefKey, sSubKeyName, arrKeys32)
        RetVal64 = oReg.EnumKey(hDefKey, Wow64Key(hDefKey, sSubKeyName), arrKeys64)
        If (RetVal = 0) AND (NOT RetVal64 = 0) AND IsArray(arrKeys32) Then arrKeys = arrKeys32
        If (Not RetVal = 0) AND (RetVal64 = 0) AND IsArray(arrKeys64) Then arrKeys = arrKeys64
        If (RetVal = 0) AND (RetVal64 = 0) Then 
            If IsArray(arrKeys32) AND IsArray (arrKeys64) Then 
                arrKeys = RemoveDuplicates(Split((Join(arrKeys32, "\") & "\" & Join(arrKeys64, "\")), "\"))  
            ElseIf IsArray(arrKeys64) Then
                arrKeys = arrKeys64
            Else
                arrKeys = arrKeys32
            End If
        End If
    Else
        RetVal = oReg.EnumKey(hDefKey, sSubKeyName, arrKeys)
    End If 'f64  
    RegEnumKey = ((RetVal = 0) OR (RetVal64 = 0)) AND IsArray(arrKeys)
End Function 'RegEnumKey  

'-------------------------------------------------------------------------------  
'   RegDeleteValue  
'  
'   Wrapper around oReg.DeleteValue to handle 64 bit  
'-------------------------------------------------------------------------------  
Sub RegDeleteValue(hDefKey, sSubKeyName, sName, fRegMultiSZ)
    Dim sDelKeyName, sValue
    Dim iRetVal
    Dim fKeep
    
    ' ensure trailing "\"  
    sSubKeyName = sSubKeyName & "\"  
    While InStr(sSubKeyName, "\\") > 0  
        sSubKeyName = Replace(sSubKeyName, "\\", "\")  
    Wend

    fKeep = dictionaryKeepReg.Exists(LCase(sSubKeyName & sName))
    If (NOT fKeep AND f64) Then fKeep = dictionaryKeepReg.Exists(LCase(Wow64Key(hDefKey, sSubKeyName) & sName))
    If fKeep Then
        LogOnly "Disallowing the delete of still required keypath element: " & HiveString(hDefKey) & "\" & sSubKeyName & sName  
        If NOT fForce Then Exit Sub
    End If
    
    ' check on forced delete  
    If fKeep Then
        LogOnly "Enforced delete of still required keypath element: " & HiveString(hDefKey) & "\" & sSubKeyName & sName  
        LogOnly "   Remaining applications will need a repair!"  
    End If
    
    ' ensure value exists  
    If RegValExists(hDefKey, sSubKeyName, sName) Then
        sDelKeyName = sSubKeyName
    ElseIf RegValExists(hDefKey, Wow64Key(hDefKey, sSubKeyName), sName) Then
        sDelKeyName =  Wow64Key(hDefKey, sSubKeyName)
    Else
        LogOnly "Value not found. Cannot delete value: " & HiveString(hDefKey) & "\" & sSubKeyName & sName  
        Exit Sub
    End If

    ' prevent unintentional, unsafe REG_MULTI_SZ delete  
    If RegReadValue(hDefKey, sDelKeyName, sName, sValue, "REG_MULTI_SZ") AND NOT fRegMultiSZ Then  
        LogOnly "Disallowing unsafe delete of REG_MULTI_SZ: " & HiveString(hDefKey) & "\" & sDelKeyName & sName  
        Exit Sub
    End If
    
    ' execute delete operation  
    If Not fDetectOnly Then 
        LogOnly "Delete registry value: " & HiveString(hDefKey) & "\" & sDelKeyName & " -> " & sName  
        iRetVal = 0
        iRetVal = oReg.DeleteValue(hDefKey, sDelKeyName, sName)
        CheckError "RegDeleteValue"  
        If NOT (iRetVal = 0) Then
            LogOnly "     Delete failed. Return value: " & iRetVal  
            SetError ERROR_STAGE2
        End If
    Else
        LogOnly "Preview mode. Disallowing delete registry value: " & HiveString(hDefKey) & "\" & sDelKeyName & " -> " & sName  
    End If
    On Error Goto 0

End Sub 'RegDeleteValue  

'-------------------------------------------------------------------------------  
'   RegDeleteKey  
'  
'   Wrappper around RegDeleteKeyEx to handle 64bit  
'-------------------------------------------------------------------------------  
Sub RegDeleteKey(hDefKey, sSubKeyName)
    Dim sDelKeyName
    Dim fKeep
    
    ' ensure trailing "\"  
    sSubKeyName = sSubKeyName & "\"  
    While InStr(sSubKeyName, "\\") > 0  
        sSubKeyName = Replace(sSubKeyName, "\\", "\")  
    Wend

    fKeep = dictionaryKeepReg.Exists(LCase(sSubKeyName))
    If (NOT fKeep AND f64) Then fKeep = dictionaryKeepReg.Exists(LCase(Wow64Key(hDefKey, sSubKeyName)))
    If fKeep Then
        LogOnly "Disallowing the delete of still required keypath element: " & HiveString(hDefKey) & "\" & sSubKeyName  
        If NOT fForce Then Exit Sub
    End If
    
    ' check on forced delete  
    If fKeep Then
        LogOnly "Enforced delete of still required keypath element: " & HiveString(hDefKey) & "\" & sSubKeyName  
        LogOnly "   Remaining applications will need a repair!"  
    End If
    
    If Len(sSubKeyName) > 1 Then
        'Strip of trailing "\"  
        sSubKeyName = Left(sSubKeyName, Len(sSubKeyName) - 1)
    End If
    
    ' ensure key exists  
    If RegKeyExists(hDefKey, sSubKeyName) Then
        sDelKeyName = sSubKeyName
    ElseIf f64 AND RegKeyExists(hDefKey, Wow64Key(hDefKey, sSubKeyName)) Then
        sDelKeyName = Wow64Key(hDefKey, sSubKeyName)
    Else
        LogOnly "Key not found. Cannot delete key: " & HiveString(hDefKey) & "\" & sSubKeyName  
        Exit Sub
    End If

    ' execute delete  
    If Not fDetectOnly Then
        LogOnly "Delete registry key: " & HiveString(hDefKey) & "\" & sDelKeyName  
        On Error Resume Next
        RegDeleteKeyEx hDefKey, sDelKeyName
        On Error Goto 0
    Else
        LogOnly "Preview mode. Disallowing delete of registry key: " & HiveString(hDefKey) & "\" & sSubKeyName  
    End If
End Sub 'RegDeleteKey  

'-------------------------------------------------------------------------------  
'   RegDeleteKeyEx  
'  
'   Recursively delete a registry structure  
'-------------------------------------------------------------------------------  
Sub RegDeleteKeyEx(hDefKey, sSubKeyName) 
    Dim arrSubkeys
    Dim sSubkey
    Dim iRetVal

    'Strip of trailing "\"  
    If Len(sSubKeyName) > 1 Then
        If Right(sSubKeyName, 1) = "\" Then sSubKeyName = Left(sSubKeyName, Len(sSubKeyName) - 1)  
    End If
    On Error Resume Next

    ' exception handler  
    If (hDefKey = HKLM) AND (sSubKeyName = "SOFTWARE\Microsoft\Office\15.0\ClickToRun") Then  
        iRetVal = oWShell.Run("reg delete HKLM\SOFTWARE\Microsoft\Office\15.0\ClickToRun /f", 0, True)  
        Exit Sub
    End If

    ' regular recursion  
    oReg.EnumKey hDefKey, sSubKeyName, arrSubkeys
    If IsArray(arrSubkeys) Then 
        For Each sSubkey In arrSubkeys 
            RegDeleteKeyEx hDefKey, sSubKeyName & "\" & sSubkey   
        Next 
    End If 
    If Not fDetectOnly Then 
        iRetVal = 0
        iRetVal = oReg.DeleteKey(hDefKey, sSubKeyName)
        If NOT (iRetVal = 0) Then LogOnly "     Delete failed. Return value: "&iRetVal  
    End If
    On Error Goto 0
End Sub 'RegDeleteKeyEx  

'-------------------------------------------------------------------------------  
'   Wow64Key  
'  
'   Return the 32bit regkey location on a 64bit environment  
'-------------------------------------------------------------------------------  
Function Wow64Key(hDefKey, sSubKeyName)
    Dim iPos

    Select Case hDefKey
    Case HKCU
        If Left(sSubKeyName, 17) = "Software\Classes\" Then  
            Wow64Key = Left(sSubKeyName, 17) & "Wow6432Node\" & Right(sSubKeyName, Len(sSubKeyName) - 17)  
        Else
            iPos = InStr(sSubKeyName, "\")  
            Wow64Key = Left(sSubKeyName, iPos) & "Wow6432Node\" & Right(sSubKeyName, Len(sSubKeyName) - iPos)  
        End If
    Case HKLM
        If Left(sSubKeyName, 17) = "Software\Classes\" Then  
            Wow64Key = Left(sSubKeyName, 17) & "Wow6432Node\" & Right(sSubKeyName, Len(sSubKeyName) - 17)  
        Else
            iPos = InStr(sSubKeyName, "\")  
            Wow64Key = Left(sSubKeyName, iPos) & "Wow6432Node\" & Right(sSubKeyName, Len(sSubKeyName) - iPos)  
        End If
    Case Else
        Wow64Key = "Wow6432Node\" & sSubKeyName  
    End Select 'hDefKey  
End Function 'Wow64Key  

'-------------------------------------------------------------------------------  
'   RemoveDuplicates  
'  
'   Remove duplicate entries from a one dimensional array  
'-------------------------------------------------------------------------------  
Function RemoveDuplicates(Array)
    Dim Item
    Dim dicNoDupes
    
    Set dicNoDupes = CreateObject("Scripting.Dictionary")  
    For Each Item in Array
        If Not dicNoDupes.Exists(Item) Then dicNoDupes.Add Item,Item
    Next 'Item  
    RemoveDuplicates = dicNoDupes.Keys
End Function 'RemoveDuplicates  

'-------------------------------------------------------------------------------  
'   CheckError  
'  
'   Checks the status of 'Err' and logs the error details if <> 0  
'-------------------------------------------------------------------------------  
Sub CheckError(sModule)
    If Err <> 0 Then 
        LogOnly "   Error: " & sModule & " - Source: " & Err.Source & "; Err# (Hex): " & Hex( Err ) & _  
               "; Err# (Dec): " & Err & "; Description : " & Err.Description  
    End If 'Err = 0  
    Err.Clear
End Sub

'-------------------------------------------------------------------------------  
'   LogH  
'  
'   Write a header log string to the log file  
'-------------------------------------------------------------------------------  
Sub LogH (sLog)
    LogStream.WriteLine ""  
    sLog = sLog & vbCrLf & String(Len(sLog), "=")  
    If NOT fQuiet AND fCScript Then wscript.echo ""  
    If NOT fQuiet AND fCScript Then wscript.echo sLog
    LogStream.WriteLine sLog
End Sub 'Logh  

'-------------------------------------------------------------------------------  
'   LogH1  
'  
'   Write a header log string to the log file  
'-------------------------------------------------------------------------------  
Sub LogH1 (sLog)
    LogStream.WriteLine ""  
    sLog = sLog & vbCrLf & String(Len(sLog), "-")  
    If NOT fQuiet AND fCScript Then wscript.echo ""  
    If NOT fQuiet AND fCScript Then wscript.echo sLog
    LogStream.WriteLine sLog
End Sub 'LogH1  

'-------------------------------------------------------------------------------  
'   LogH2  
'  
'   Write w/o indent Cmd window and the log file  
'-------------------------------------------------------------------------------  
Sub LogH2 (sLog)
    If NOT fQuiet AND fCScript Then wscript.echo sLog
    LogStream.WriteLine ""  
    LogStream.WriteLine sLog
End Sub 'LogH2  

'-------------------------------------------------------------------------------  
'   Log  
'  
'   Echos the log string to the Cmd window and the log file  
'-------------------------------------------------------------------------------  
Sub Log (sLog)
    If NOT fQuiet AND fCScript Then wscript.echo sLog
    LogStream.WriteLine "   " & Time & ": " & sLog  
End Sub 'Log  

'-------------------------------------------------------------------------------  
'   LogOnly  
'  
'   Commits the log string to the log file  
'-------------------------------------------------------------------------------  
Sub LogOnly (sLog)
    LogStream.WriteLine "   " & Time & ": " & sLog  
End Sub 'Log  

'-------------------------------------------------------------------------------  
'   InScope  
'  
'   Check if ProductCode is in scope for removal  
'-------------------------------------------------------------------------------  
'Check if ProductCode is in scope  
Function InScope(sProductCode)
    Dim fInScope
    Dim sProd
	
	Const OFFICEID = "0000000FF1CE}"  
	
	On Error Resume Next

    fInScope = False
    If Len(sProductCode) = 38 Then
        sProd = UCase(sProductCode)
        If Right(sProd, PRODLEN) = OFFICEID Then
        	If CInt(Mid(sProd, 4, 2)) > 14 Then 
	            If Err <> 0 Then
	            	Err.Clear
	            	Exit Function
	            End If
	            Select Case Mid(sProd, 11, 4)
	            Case "007E", "008F", "008C", "24E1", "237A"  
	                fInScope = True
	            End Select
            End If
        End If
        ' Microsoft Online Services Sign-in Assistant (x64 ship and x86 ship)  
        If sProd = "{6C1ADE97-24E1-4AE4-AEDD-86D3A209CE60}" Then fInScope = True  
        If sProd = "{9520DDEB-237A-41DB-AA20-F2EF2360DCEB}" Then fInScope = True  
        If sProd = UCase(sPackageGuid) Then fInScope = True
        If sProd = UCase("{9AC08E99-230B-47e8-9721-4577B7F124EA}") Then fInScope = True  
    End If '38  

    InScope = fInScope
End Function 'InScope  

'-------------------------------------------------------------------------------  
'   CheckDelete  
'  
'   Check a ProductCode is known to stay installed  
'-------------------------------------------------------------------------------  
Function CheckDelete(sProductCode)

    CheckDelete = False
    ' ensure valid GUID length  
    If NOT Len(sProductCode) = 38 Then Exit Function
    ' only care if it's in the expected ProductCode pattern   
    If NOT InScope(sProductCode) Then Exit Function
    ' check if it's a known product that should be kept  
    If dictionaryKeepSku.Exists(UCase(sProductCode)) Then Exit Function
    
    CheckDelete = True
End Function 'CheckDelete  

'-------------------------------------------------------------------------------  
'   DeleteService  
'  
'   Delete a service  
'-------------------------------------------------------------------------------  
'Delete a service  
Sub DeleteService(sName)
    Dim Services, srvc, Processes, process
    Dim sQuery, sStates, sProcessName, sCmd
    Dim iRet
    
    On Error Resume Next
    
    sStates = "STARTED;RUNNING"  
    sQuery = "Select * From Win32_Service Where Name='" & sName & "'"  
    Set Services = oWmiLocal.Execquery(sQuery)
    
    ' stop and delete the service  
    For Each srvc in Services
        Log "   Found service " & sName & " (" & srvc.DisplayName & ") in state " & srvc.State  
        ' get the process name  
        sProcessName = Trim(Replace(Mid(srvc.PathName, InStrRev(srvc.PathName,"\") + 1), chr(34), ""))  
        ' stop the service  
        If InStr(sStates, UCase(srvc.State)) > 0 Then
            iRet = srvc.StopService()
            LogOnly " attempt to stop service " & sName & " returned: " & iRet  
        End If
        ' ensure no more instances of the service are running  
        Set Processes = oWmiLocal.ExecQuery("Select * From Win32_Process Where Name='" & sProcessName & "'")  
        For Each process in Processes
            iRet = process.Terminate()
        Next 'Process  
        If fDetectOnly Then 
            Log "   Not deleting service " & sName & " in preview mode"  
            Exit Sub
        End If
        iRet = srvc.Delete()
        Log "   Delete service " & sName & " returned: " & iRet  
    Next 'srvc  

    ' check if service got deleted  
    Set Services = oWmiLocal.Execquery(sQuery)
    For Each srvc in Services
        ' failed to delete service. retry with 'sc' command  
        sLog " Deleting service " & sName & " failed. Retry delete using 'SC' command"  
        sCmd = "sc delete " & sName  
        iRet = oWShell.Run(sCmd, 0, True)
    Next 'srvc  

    Set Services = Nothing
    Err.Clear
    On Error Goto 0
End Sub 'DeleteService  


'-------------------------------------------------------------------------------  
'   SetupRetVal  
'  
'   Translation for known uninstall return values  
'-------------------------------------------------------------------------------  
Function SetupRetVal(RetVal)
    Select Case RetVal
        Case 0 : SetupRetVal = "Success"  
        'msiexec return values  
        Case 1259 : SetupRetVal = "APPHELP_BLOCK"  
        Case 1601 : SetupRetVal = "INSTALL_SERVICE_FAILURE"  
        Case 1602 : SetupRetVal = "INSTALL_USEREXIT"  
        Case 1603 : SetupRetVal = "INSTALL_FAILURE"  
        Case 1604 : SetupRetVal = "INSTALL_SUSPEND"  
        Case 1605 : SetupRetVal = "UNKNOWN_PRODUCT"  
        Case 1606 : SetupRetVal = "UNKNOWN_FEATURE"  
        Case 1607 : SetupRetVal = "UNKNOWN_COMPONENT"  
        Case 1608 : SetupRetVal = "UNKNOWN_PROPERTY"  
        Case 1609 : SetupRetVal = "INVALID_HANDLE_STATE"  
        Case 1610 : SetupRetVal = "BAD_CONFIGURATION"  
        Case 1611 : SetupRetVal = "INDEX_ABSENT"  
        Case 1612 : SetupRetVal = "INSTALL_SOURCE_ABSENT"  
        Case 1613 : SetupRetVal = "INSTALL_PACKAGE_VERSION"  
        Case 1614 : SetupRetVal = "PRODUCT_UNINSTALLED"  
        Case 1615 : SetupRetVal = "BAD_QUERY_SYNTAX"  
        Case 1616 : SetupRetVal = "INVALID_FIELD"  
        Case 1618 : SetupRetVal = "INSTALL_ALREADY_RUNNING"  
        Case 1619 : SetupRetVal = "INSTALL_PACKAGE_OPEN_FAILED"  
        Case 1620 : SetupRetVal = "INSTALL_PACKAGE_INVALID"  
        Case 1621 : SetupRetVal = "INSTALL_UI_FAILURE"  
        Case 1622 : SetupRetVal = "INSTALL_LOG_FAILURE"  
        Case 1623 : SetupRetVal = "INSTALL_LANGUAGE_UNSUPPORTED"  
        Case 1624 : SetupRetVal = "INSTALL_TRANSFORM_FAILURE"  
        Case 1625 : SetupRetVal = "INSTALL_PACKAGE_REJECTED"  
        Case 1626 : SetupRetVal = "FUNCTION_NOT_CALLED"  
        Case 1627 : SetupRetVal = "FUNCTION_FAILED"  
        Case 1628 : SetupRetVal = "INVALID_TABLE"  
        Case 1629 : SetupRetVal = "DATATYPE_MISMATCH"  
        Case 1630 : SetupRetVal = "UNSUPPORTED_TYPE"  
        Case 1631 : SetupRetVal = "CREATE_FAILED"  
        Case 1632 : SetupRetVal = "INSTALL_TEMP_UNWRITABLE"  
        Case 1633 : SetupRetVal = "INSTALL_PLATFORM_UNSUPPORTED"  
        Case 1634 : SetupRetVal = "INSTALL_NOTUSED"  
        Case 1635 : SetupRetVal = "PATCH_PACKAGE_OPEN_FAILED"  
        Case 1636 : SetupRetVal = "PATCH_PACKAGE_INVALID"  
        Case 1637 : SetupRetVal = "PATCH_PACKAGE_UNSUPPORTED"  
        Case 1638 : SetupRetVal = "PRODUCT_VERSION"  
        Case 1639 : SetupRetVal = "INVALID_COMMAND_LINE"  
        Case 1640 : SetupRetVal = "INSTALL_REMOTE_DISALLOWED"  
        Case 1641 : SetupRetVal = "SUCCESS_REBOOT_INITIATED"  
        Case 1642 : SetupRetVal = "PATCH_TARGET_NOT_FOUND"  
        Case 1643 : SetupRetVal = "PATCH_PACKAGE_REJECTED"  
        Case 1644 : SetupRetVal = "INSTALL_TRANSFORM_REJECTED"  
        Case 1645 : SetupRetVal = "INSTALL_REMOTE_PROHIBITED"  
        Case 1646 : SetupRetVal = "PATCH_REMOVAL_UNSUPPORTED"  
        Case 1647 : SetupRetVal = "UNKNOWN_PATCH"  
        Case 1648 : SetupRetVal = "PATCH_NO_SEQUENCE"  
        Case 1649 : SetupRetVal = "PATCH_REMOVAL_DISALLOWED"  
        Case 1650 : SetupRetVal = "INVALID_PATCH_XML"  
        Case 3010 : SetupRetVal = "SUCCESS_REBOOT_REQUIRED"  
        Case Else : SetupRetVal = "Unknown Return Value"  
    End Select
End Function 'SetupRetVal  

'-------------------------------------------------------------------------------  
'   DeleteFile  
'  
'   Wrapper to delete a file  
'-------------------------------------------------------------------------------  
Sub DeleteFile(sFile)
    Dim File, attr
    Dim sDelFile, sFileName, sNewPath
    Dim fKeep
    
    On Error Resume Next

    fKeep = dictionaryKeepFolder.Exists(LCase(sFile))
    If (NOT fKeep AND f64) Then fKeep = dictionaryKeepFolder.Exists(LCase(Wow64Folder(sFile)))
    If fKeep Then
        LogOnly "Disallowing the delete of still required keypath element: " & sFile  
        If NOT fForce Then Exit Sub
    End If

    ' check on forced delete  
    If fKeep Then
        LogOnly "Enforced delete of still required keypath element: " & sFile  
        LogOnly "   Remaining applications will need a repair!"  
    End If

    If oFso.FileExists(sFile) Then
        sDelFile = sFile
    ElseIf f64 AND oFso.FileExists(Wow64Folder(sFile)) Then
        sDelFile = Wow64Folder(sFile)
    Else
        LogOnly "Path not found. Cannot not delete folder: " & sFile  
        Exit Sub
    End If
    If Not fDetectOnly Then 
        LogOnly "Delete file: " & sDelFile  
		Set File = oFso.GetFile(sDelFile)
        ' ensure read-only flag is not set  
        attr =  File.Attributes
        If CBool(attr AND 1) Then File.Attributes = attr AND (attr - 1)
        ' add folder to empty folder cleanup list  
        If NOT dicDelFolder.Exists(File.ParentFolder.Path) Then dicDelFolder.Add File.ParentFolder.Path, File.ParentFolder.Path
        ' delete the file  
        sFile = File.Path
        File.Delete True
        Set File = Nothing
        If Err <> 0 Then
            CheckError "DeleteFile"  
            ' schedule file for delete on next reboot  
            ScheduleDeleteFile sFile
        End If 'Err <> 0  
    Else
        LogOnly "Preview mode. Disallowing delete for folder: " & sDelFile  
    End If
    On Error Goto 0
End Sub 'DeleteFile  

'-------------------------------------------------------------------------------  
'   DeleteFolder  
'  
'   Wrapper to delete a folder  
'-------------------------------------------------------------------------------  
Sub DeleteFolder(sFolder)
    Dim Folder, fld, attr
    Dim sDelFolder, sFolderName, sNewPath, sCmd
    Dim fKeep
    
    ' ensure trailing "\"  
    ' trailing \ is required for dictionaryKeepFolder comparisons  
    sFolder = sFolder & "\"  
    While InStr(sFolder,"\\")>0  
        sFolder = Replace(sFolder,"\\","\")  
    Wend

    ' prevent delete of folders that are known to be still required  
    fKeep = dictionaryKeepFolder.Exists(LCase(sFolder))
    If (NOT fKeep AND f64) Then fKeep = dictionaryKeepFolder.Exists(LCase(Wow64Folder(sFolder)))
    If fKeep Then
        LogOnly "Disallowing the delete of still required keypath element: " & sFolder  
        If NOT fForce Then Exit Sub
    End If

    ' check on forced delete  
    If fKeep Then
        LogOnly "Enforced delete of still required keypath element: " & sFolder  
        LogOnly "   Remaining applications will need a repair!"  
    End If
    
    ' strip trailing "\"  
    If Len(sFolder) > 1 Then
        sFolder = Left(sFolder, Len(sFolder) - 1)
    End If

    On Error Resume Next
    If oFso.FolderExists(sFolder) Then 
        sDelFolder = sFolder
    ElseIf f64 AND oFso.FolderExists(Wow64Folder(sFolder)) Then 
        sDelFolder = Wow64Folder(sFolder)
    Else
        LogOnly "Path not found. Cannot not delete folder: " & sFolder  
        Exit Sub
    End If
    If Not fDetectOnly Then 
        LogOnly "Delete folder: " & sDelFolder  
        Set Folder = oFso.GetFolder(sDelFolder)
        ' ensure to remove read only flag  
        attr =  Folder.Attributes
        If CBool(attr AND 1) Then Folder.Attributes = attr AND (attr - 1)
        ' add to empty folder cleanup list  
        If NOT dicDelFolder.Exists(Folder.Path) Then dicDelFolder.Add Folder.Path, Folder.Path
        ' delete the folder  
        ' for performance reasons try 'rd' first  
        Set Folder = Nothing
        sCmd = "cmd.exe /c rd /s " & chr(34) & sDelFolder & chr(34) & " /q"  
        oWShell.Run sCmd, 0, True
        If NOT oFso.FolderExists(sDelFolder) Then Exit Sub
        
        ' rd didn't work check with FileSystemObject  
        Set Folder = oFso.GetFolder(sDelFolder)
        Folder.Delete True
        Set Folder = Nothing
        
        ' error handling  
        If Err <> 0 Then
            Select Case Err
            Case 70
                ' Access Denied  
                ' Retry after closing running processes  
                CheckError "DeleteFolder"  
                If NOT fRerun Then
                    CloseOfficeApps
                    ' attempt 'rd' command  
                    LogOnly "   Attempt to remove with 'rd' command"  
                    sCmd = "cmd.exe /c rd /s " & chr(34) & sDelFolder & chr(34) & " /q"  
                    oWShell.Run sCmd, 0, True
                    If NOT oFso.FolderExists(sDelFolder) Then Exit Sub
                End If

            Case 76 
                ' check on invalid path lengt issues Err 76 (0x4C) "Path not found"  
                ' attempt 'rd' command  
                CheckError "DeleteFolder"  
                LogOnly "   Attempt to remove with 'rd' command"  
                sCmd = "cmd.exe /c rd /s " & chr(34) & sDelFolder & chr(34) & " /q"  
                oWShell.Run sCmd, 0, True
                If NOT oFso.FolderExists(sDelFolder) Then Exit Sub
            End Select
            
            ' stil failed!  
            Log "   Failed to delete folder: " & sDelFolder  
            CheckError "DeleteFolder"  

            ' try to delete as many folder contents as possible  
            ' before the recursive error handling is called  
            Set Folder = oFso.GetFolder(sDelFolder)
            For Each fld in Folder.Subfolders
                sCmd = "cmd.exe /c rd /s " & chr(34) & fld.Path & chr(34) & " /q"  
                oWShell.Run sCmd, 0, True
            Next 'fld  
            sCmd = "cmd.exe /c del " & chr(34) & fld.Path & "\*.*" & chr(34)  
            oWShell.Run sCmd, 0, True
            Set Folder = Nothing

            ' schedule an additional run of the tool after reboot  
            If NOT fRerun Then Rerun

            ' schedule folder for delete on next reboot  
            ScheduleDeleteFolder sDelFolder
        End If 'Err <> 0  
    Else
        LogOnly "Preview mode. Disallowing delete of folder: " & sDelFolder  
    End If
    On Error Goto 0
End Sub 'DeleteFolder  

Sub DeleteFolder_WMI (sFolder)
    Dim Folder, Folders
    Dim sWqlFolder
    Dim iRet

    sWqlFolder = Replace(sFolder, "\", "\\")  
    Set Folders = oWmiLocal.ExecQuery ("Select * from Win32_Directory where name = '" & sWqlFolder & "'")  
    For Each Folder in Folders
        iRet = Folder.Delete
    Next 'Folder  
    LogOnly "   Delete (wmi) for folder " & sFolder & " returned: " & iRet  
End Sub

'-------------------------------------------------------------------------------  
'   Wow64Folder  
'  
'   Returns the WOW folder structure to handle folder-path operations on  
'   64 bit environments  
'-------------------------------------------------------------------------------  
Function Wow64Folder(sFolder)
    If LCase(Left(sFolder, Len(sWinDir & "\System32"))) = LCase(sWinDir & "\System32") Then   
        Wow64Folder = sWinDir & "\syswow64" & Right(sFolder, Len(sFolder) - Len(sWinDir & "\System32"))  
    ElseIf LCase(Left(sFolder, Len(sProgramFiles))) = LCase(sProgramFiles) Then 
        Wow64Folder = sProgramFilesX86 & Right(sFolder, Len(sFolder) - Len(sProgramFiles))
    Else
        Wow64Folder = "?" 'Return invalid string to ensure the folder cannot exist  
    End If
End Function 'Wow64Folder  

'-------------------------------------------------------------------------------  
'   ScheduleDeleteFile  
'  
'   Adds a file to the list of items to delete on reboot  
'-------------------------------------------------------------------------------  
Sub ScheduleDeleteFile (sFile)
    If NOT dicDelInUse.Exists(sFile) Then dicDelInUse.Add sFile, sFile Else Exit Sub
    LogOnly "Adding file in use for delete on reboot: " & sFile  
    fRebootRequired = True
    SetError ERROR_REBOOT_REQUIRED
End Sub 'ScheduleDeleteFile  

'-------------------------------------------------------------------------------  
'   ScheduleDeleteFolder  
'  
'   Recursively adds a folder and its contents to the list of   
'   items to delete on reboot  
'-------------------------------------------------------------------------------  
Sub ScheduleDeleteFolder (sFolder)
    Dim oFolder, fld, file, attr

	Set oFolder = oFso.GetFolder(sFolder)
	' exclude hidden system  folders  
    attr = oFolder.Attributes
    If CBool(attr AND 6) Then Exit Sub

	For Each fld In oFolder.SubFolders
		DeleteFolder fld.Path
	Next
	For Each file In oFolder.Files
		DeleteFile file.Path
	Next
	If NOT dicDelInUse.Exists(oFolder.Path) Then dicDelInUse.Add oFolder.Path, "" Else Exit Sub  
    LogOnly "Adding folder for delete on reboot: " & oFolder.Path  
    fRebootRequired = True
    SetError ERROR_REBOOT_REQUIRED
End Sub 'ScheduleDeleteFile  


'-------------------------------------------------------------------------------  
'   ScheduleDeleteEx  
'  
'   Schedules the delete of files/folders in use on next reboot by adding  
'   affected files/folders to the PendingFileRenameOperations registry entry  
'-------------------------------------------------------------------------------  
Sub ScheduleDeleteEx ()
    Dim key, hDefKey, sKeyName, sValueName
    Dim i
    Dim arrData

    hDefKey = HKLM
    sKeyName = "SYSTEM\CurrentControlSet\Control\Session Manager"  
    sValueName = "PendingFileRenameOperations"  
    
    LogH2 "Adding " & dicDelInUse.Count & " PendingFileRenameOperations"  
    If NOT RegValExists(hDefKey, sKeyName, sValueName) Then
        ReDim arrData(-1)
    Else
        oReg.GetMultiStringValue hDefKey, sKeyName, sValueName, arrData
    End If
    i = UBound(arrData) + 1
    ReDim Preserve arrData(UBound(arrData) + (dicDelInUse.Count * 2))
    For Each key in dicDelInUse.Keys
        LogOnly "   " & key  
        arrData(i) = "\??\" & key  
        arrData(i + 1) = ""  
        i = i + 2
    Next 'key  
    oReg.SetMultiStringValue hDefKey, sKeyName, sValueName, arrData
End Sub 'ScheduleDeleteEx  

'-------------------------------------------------------------------------------  
'   DeleteEmptyFolders  
'  
'   Deletes an individual folder structure if empty  
'-------------------------------------------------------------------------------  
Sub DeleteEmptyFolder (sFolder)
    Dim Folder
    
    ' cosmetic' task don't fail on error  
    On Error Resume Next
    If oFso.FolderExists(sFolder) Then
        Set Folder = oFso.GetFolder(sFolder)
        If (Folder.Subfolders.Count = 0) AND (Folder.Files.Count = 0) Then 
            Set Folder = Nothing
            SmartDeleteFolder sFolder
        End If
    End If
    CheckError "DeleteEmptyFolder"  
    On Error Goto 0
End Sub 'DeleteEmptyFolders  

'-------------------------------------------------------------------------------  
'   DeleteEmptyFolders  
'  
'   Delete an empty folder structure  
'-------------------------------------------------------------------------------  
Sub DeleteEmptyFolders
    Dim Folder
    Dim sFolder
    
    ' cosmetic' task don't fail on error  
    On Error Resume Next
    DeleteEmptyFolder sCommonProgramFiles & "\Microsoft Shared\Office15"  
    DeleteEmptyFolder sCommonProgramFiles & "\Microsoft Shared\Office16"  
    DeleteEmptyFolder sCommonProgramFiles & "\Microsoft Shared\"   
    DeleteEmptyFolder sProgramFiles & "\Microsoft Office\Office15"  
    DeleteEmptyFolder sProgramFiles & "\Microsoft Office\Office16"  
    
    For Each sFolder in dicDelFolder.Keys
        If oFso.FolderExists(sFolder) Then
            Set Folder = oFso.GetFolder(sFolder)
            If (Folder.Subfolders.Count = 0) AND (Folder.Files.Count = 0) Then 
                Set Folder = Nothing
                SmartDeleteFolder sFolder
            End If
        End If
    Next 'sFolder  
    CheckError "DeleteEmptyFolders"  
    On Error Goto 0
End Sub 'DeleteEmptyFolders  

'-------------------------------------------------------------------------------  
'   SmartDeleteFolder  
'  
'   Wrapper to delete a folder and the empty parent folder structure  
'-------------------------------------------------------------------------------  
Sub SmartDeleteFolder(sFolder)
    Dim sDelFolder

    If oFso.FolderExists(sFolder) Then
        sDelFolder = sFolder
    ElseIf f64 AND oFso.FolderExists(Wow64Folder(sFolder)) Then
        sDelFolder = Wow64Folder(sFolder)
    Else
        Exit Sub
    End If

    If Not fDetectOnly Then
        LogOnly "Request SmartDelete for folder: " & sDelFolder  
        SmartDeleteFolderEx sDelFolder
    Else
        LogOnly "Preview mode. Disallowing SmartDelete request for folder: " & sDelFolder  
    End If
End Sub 'SmartDeleteFolder  

'-------------------------------------------------------------------------------  
'   SmartDeleteFolderEx  
'  
'   Executes the folder delete operation(s)  
'-------------------------------------------------------------------------------  
Sub SmartDeleteFolderEx(sFolder)
    Dim Folder
    
    On Error Resume Next
    DeleteFolder sFolder : CheckError "SmartDeleteFolderEx"  
    On Error Goto 0
    Set Folder = oFso.GetFolder(oFso.GetParentFolderName(sFolder))
    If (Folder.Subfolders.Count = 0) AND (Folder.Files.Count = 0) Then SmartDeleteFolderEx(Folder.Path)
End Sub 'SmartDeleteFolderEx  

'-------------------------------------------------------------------------------  
'   RestoreExplorer  
'  
'   Ensure Windows Explorer is restarted if needed  
'-------------------------------------------------------------------------------  
Sub RestoreExplorer
    Dim Processes, Result, oAT, DateTime, JobID
    Dim sCmd
    
    'Non critical routine. Don't fail on error  
    On Error Resume Next
    wscript.sleep 1000
    Set Processes = oWmiLocal.ExecQuery("Select * From Win32_Process Where Name='explorer.exe'")  
    If Processes.Count < 1 Then 
        oWShell.Run "explorer.exe"  
        'To handle this in case of System context, schedule and run as interactive task  
        oWShell.Run "SCHTASKS /Create /TN OffScrEx /TR explorer /SC ONCE /ST 12:00 /IT", 0, True  
        oWShell.Run "SCHTASKS /Run /TN OffScrEx", 0, True  
        oWShell.Run "SCHTASKS /Delete /TN OffScrEx /F", 0, False  
    End If
    On Error Goto 0
End Sub 'RestoreExploer  

'-------------------------------------------------------------------------------  
'   MyJoin  
'  
'   Replacement function to the internal Join function to prevent failures  
'   that were seen in some instances  
'-------------------------------------------------------------------------------  
Function MyJoin(arrToJoin, sSeparator)
    Dim sJoined
    Dim i

    sJoined = ""  
    If IsArray(arrToJoin) Then
        For i = 0 To UBound(arrToJoin)
            sJoined = sJoined & arrToJoin(i) & sSeparator
        Next 'i  
    End If
    If Len(sJoined) > 1 Then sJoined = Left(sJoined, Len(sJoined) - 1)
    MyJoin = sJoined
End Function

'-------------------------------------------------------------------------------  
'   Rerun  
'  
'   Flag need for reboot and schedule autorun to run the tool again on reboot.  
'-------------------------------------------------------------------------------  
Sub Rerun ()
    Dim sValue

    ' check if Rerun has already been called  
    If fRerun Then Exit Sub

    ' set Rerun flag  
    fRerun = True

    ' check if the previous run already initiated the Rerun  
    If RegReadValue(HKCU, "SOFTWARE\Microsoft\Office\15.0\CleanC2R", "Rerun", sValue, "REG_DWORD") Then  
        ' Rerun has already been tried  
        LogH2 "Error: Removal failed"  
        SetError ERROR_DCAF_FAILURE
        Exit Sub
    End If

    fRebootRequired = True
    SetError ERROR_REBOOT_REQUIRED
    SetError ERROR_INCOMPLETE

    ' cache the script to the local scrub folder  
    oFso.CopyFile WScript.scriptFullName, sScrubDir & "\" & SCRIPTFILE  

    oReg.CreateKey HKLM, "SOFTWARE"  
    oReg.CreateKey HKLM, "SOFTWARE\Microsoft"  
    oReg.CreateKey HKLM, "SOFTWARE\Microsoft\Office"  
    oReg.CreateKey HKLM, "SOFTWARE\Microsoft\Office\15.0"  
    oReg.CreateKey HKLM, "SOFTWARE\Microsoft\Office\15.0\CleanC2R"  
    oReg.SetDWordValue HKLM, "SOFTWARE\Microsoft\Office\15.0\CleanC2R", "Rerun", 1  

    fSetRunOnce = True
'    oReg.CreateKey HKCU, "SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce"  
'    oReg.SetStringValue HKCU, "SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce", "CleanC2R", "cscript.exe " & chr(34) & sScrubDir & "\" & SCRIPTFILE & chr(34)  
End Sub

'-------------------------------------------------------------------------------  
'   SetRunOnce  
'  
'   Create a RunOnce entry to resume setup after a reboot  
'-------------------------------------------------------------------------------  
Sub SetRunOnce
    Dim sValue

    oReg.CreateKey HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion"  
    oReg.CreateKey HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce"  
    sValue = "cscript.exe " & chr(34) &  sScrubDir & "\" & SCRIPTFILE & chr(34) & " /NoElevate /Relaunched"  
    oReg.SetStringValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce", "O15CleanUp", sValue  

End Sub 'SetRunOnce  

Als VBS speichern und dann ausführen!

Gruß
lordofremixes
mgcluebeck
mgcluebeck 28.03.2018 um 11:29:02 Uhr
Goto Top
Sowohl das Script als auch der Tipp der manuellen Deinstallation waren nicht zielführend. Auch gab es leider keine Wiederherstellungspunkte.

Es handelt sich um einen neuen PC mit vorinstalliertem Windows 10 Pro von Wortmann.
lordofremixes
lordofremixes 28.03.2018 um 11:40:16 Uhr
Goto Top
Wie hast du das Script denn ausgeführt?

probiere es mal in einer cmd:

cscript //B "Pfad zum Script\Script.vbs"
Pjordorf
Pjordorf 28.03.2018 um 13:20:52 Uhr
Goto Top
Hallo,

Zitat von @mgcluebeck:
Sowohl das Script als auch der Tipp der manuellen Deinstallation waren nicht zielführend
Gab es denn irgendwelche Meldungen die wir wissen sollen?

Es handelt sich um einen neuen PC mit vorinstalliertem Windows 10 Pro von Wortmann.
Und was spricht dagegen eben ein neues Win 10 von Dir aufbügeln zu lassen? Das Media Creation Tool hilft auch dir...

Gruß,
Peter
Vision2015
Vision2015 28.03.2018 um 13:38:55 Uhr
Goto Top
Zitat von @Pjordorf:

Hallo,

Zitat von @mgcluebeck:
Sowohl das Script als auch der Tipp der manuellen Deinstallation waren nicht zielführend
Gab es denn irgendwelche Meldungen die wir wissen sollen?
eh.. mach keinen mist... ich poliere grade meine glaskugel, mit wir bessere erkenntnisse bekommen!

Es handelt sich um einen neuen PC mit vorinstalliertem Windows 10 Pro von Wortmann.
Und was spricht dagegen eben ein neues Win 10 von Dir aufbügeln zu lassen? Das Media Creation Tool hilft auch dir...
jo.. nach 10 minuten ist das problem erledigt face-smile

Gruß,
Peter
Frank
mgcluebeck
mgcluebeck 28.03.2018 um 15:10:48 Uhr
Goto Top
Hallo

also das Script läuft durch ohne Fehler, jedoch ändert es nichts an der Officeinstallation.

Natürlich ist es möglich Windows 10 neu zu installieren. Ich persönlich finde den Aufwand dafür zu groß.
Ein BS neu zu installieren um eine nervige Office Installation los zu werden??

Des Rätsels Lösung kam dann doch vom OEM:

um die Office OEM Vorinstallation zu entfernen, können Sie folgende Befehle ausführen.
Öffnen Sie dazu die PowerShell als Administrator.

Wärend der Ausführung können Fehlermeldungen auftreten, die aber ignoriert werden können.


Remove-AppxPackage -allusers -Package Microsoft.Office.Desktop.Access_16000.8528.2136.0_neutral_~_8wekyb3d8bbwe
Remove-AppxProvisionedPackage -online -PackageName Microsoft.Office.Desktop.Access_16000.8528.2136.0_neutral_~_8wekyb3d8bbwe
Remove-AppxPackage -allusers -Package Microsoft.Office.Desktop.Excel_16000.8528.2136.0_neutral_~_8wekyb3d8bbwe
Remove-AppxProvisionedPackage -online -PackageName Microsoft.Office.Desktop.Excel_16000.8528.2136.0_neutral_~_8wekyb3d8bbwe
Remove-AppxPackage -allusers -Package Microsoft.Office.Desktop.Outlook_16000.8528.2136.0_neutral_~_8wekyb3d8bbwe
Remove-AppxProvisionedPackage -online -PackageName Microsoft.Office.Desktop.Outlook_16000.8528.2136.0_neutral_~_8wekyb3d8bbwe
Remove-AppxPackage -allusers -Package Microsoft.Office.Desktop.PowerPoint_16000.8528.2136.0_neutral_~_8wekyb3d8bbwe
Remove-AppxProvisionedPackage -online -PackageName Microsoft.Office.Desktop.PowerPoint_16000.8528.2136.0_neutral_~_8wekyb3d8bbwe
Remove-AppxPackage -allusers -Package Microsoft.Office.Desktop.Publisher_16000.8528.2136.0_neutral_~_8wekyb3d8bbwe
Remove-AppxProvisionedPackage -online -PackageName Microsoft.Office.Desktop.Publisher_16000.8528.2136.0_neutral_~_8wekyb3d8bbwe
Remove-AppxPackage -allusers -Package Microsoft.Office.Desktop.Word_16000.8528.2136.0_neutral_~_8wekyb3d8bbwe
Remove-AppxProvisionedPackage -online -PackageName Microsoft.Office.Desktop.Word_16000.8528.2136.0_neutral_~_8wekyb3d8bbwe
Remove-AppxPackage -allusers -Package Microsoft.Office.Desktop_16000.8528.2136.0_neutral_~_8wekyb3d8bbwe
Remove-AppxProvisionedPackage -online -PackageName Microsoft.Office.Desktop_16000.8528.2136.0_neutral_~_8wekyb3d8bbwe

del C:\Users\Default\AppData\Local\Microsoft\Windows\Shell\layoutmodification.xml
Pjordorf
Pjordorf 28.03.2018 um 15:57:47 Uhr
Goto Top
Hallo,

Zitat von @mgcluebeck:
Natürlich ist es möglich Windows 10 neu zu installieren. Ich persönlich finde den Aufwand dafür zu groß.
Finde ich nicht da ich nie weiß was der OEM alles aufgespielt hat, wie was eingestellt ist usw. Da ist es sicherer und schneller selnst ein W10 drauf zu bügeln und anschliessend in meiner Domäne anzusiedeln. Da weis man was man hat.

Ein BS neu zu installieren um eine nervige Office Installation los zu werden??
Ich kenne keine OEM Installation wo nur eine Office werkelt. face-smile

Gruß,
Peter