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:
|
dir /A:D /s /B | find "AceAddon-2.0" > delete.txt
dir /A:D /s /B | find "AceComm-2.0" >> delete.txt
dir /A:D /s /B | find "AceConsole-2.0" >> delete.txt
dir /A:D /s /B | find "AceDB-2.0" >> delete.txt
dir /A:D /s /B | find "AceDebug-2.0" >> delete.txt
dir /A:D /s /B | find "AceEvent-2.0" >> delete.txt
dir /A:D /s /B | find "AceHook-2.1" >> delete.txt
dir /A:D /s /B | find "AceLibrary" >> delete.txt
dir /A:D /s /B | find "AceLocale-2.2" >> delete.txt
dir /A:D /s /B | find "AceModuleCore-2.0" >> delete.txt
dir /A:D /s /B | find "AceOO-2.0" >> delete.txt
dir /A:D /s /B | find "AceTab-2.0" >> delete.txt
dir /A:D /s /B | find "Abacus-2.0" >> delete.txt
dir /A:D /s /B | find "CandyBar-2.0" >> delete.txt
dir /A:D /s /B | find "Compost-2.0" >> delete.txt
dir /A:D /s /B | find "Crayon-2.0" >> delete.txt
dir /A:D /s /B | find "Deformat-2.0" >> delete.txt
dir /A:D /s /B | find "Dewdrop-2.0" >> delete.txt
dir /A:D /s /B | find "FuBarPlugin-2.0" >> delete.txt
dir /A:D /s /B | find "Glory-2.0" >> delete.txt
dir /A:D /s /B | find "Gratuity-2.0" >> delete.txt
dir /A:D /s /B | find "Jostle-2.0" >> delete.txt
dir /A:D /s /B | find "Metrognome-2.0" >> delete.txt
dir /A:D /s /B | find "PaintChips-2.0" >> delete.txt
dir /A:D /s /B | find "ParserLib" >> delete.txt
dir /A:D /s /B | find "Roster-2.1" >> delete.txt
dir /A:D /s /B | find "SharedMedia-1.0" >> delete.txt
dir /A:D /s /B | find "SpecialEvents-Aura-2.0" >> delete.txt
dir /A:D /s /B | find "Surface-1.0" >> delete.txt
dir /A:D /s /B | find "Tablet-2.0" >> delete.txt
dir /A:D /s /B | find "Talismonger-3.0" >> delete.txt
dir /A:D /s /B | find "TipHooker-1.0" >> delete.txt
dir /A:D /s /B | find "Tourist-2.0" >> delete.txt
dir /A:D /s /B | find "Waterfall-1.0" >> delete.txt
dir /A:D /s /B | find "WhoLib-1.0" >> delete.txt
for /F %%I in (delete.txt) do rmdir /S /Q %%I
|