forked from Tribler/tribler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reset-keepid.bat
84 lines (70 loc) · 2.17 KB
/
reset-keepid.bat
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
ver | find "Version 6." > nul
if %ERRORLEVEL% == 0 goto IFDEFVISTA
REM No quotes around this, otherwise we have double in the *DIR vars
set APPDIR=%APPDIR%
goto general
:IFDEFVISTA
set APPDIR=AppData\Roaming
goto general
:general
set TDIR="%USERPROFILE%\%APPDIR%\.Tribler"
set DDIR="%USERPROFILE%\Desktop\TriblerDownloads"
del %TDIR%\torrent*.* /S /F /Q
REM rmdiriver us from Windows, *.* apparently does not include the following:
rmdir %TDIR%\torrent /S /Q
rmdir %TDIR%\torrent2 /S /Q
rmdir %TDIR%\torrentcache /S /Q
rmdir %TDIR%\torrentinfo /S /Q
rmdir %TDIR%\datacache /S /Q
rmdir %TDIR%\piececache /S /Q
rmdir %TDIR%\bsddb /S /Q
rmdir %TDIR%\sqlite /S /Q
rmdir %TDIR%\subscriptions /S /Q
rmdir %TDIR%\icons /S /Q
rmdir %TDIR%\itracker /S /Q
rmdir %TDIR%\dlcheckpoints /S /Q
rmdir %TDIR%\downloads /S /Q
rmdir %TDIR%\collected_torrent_files /S /Q
del %TDIR%\routing*.*
del %TDIR%\abc.conf
del %TDIR%\*.pickle
REM Remove downloads
rmdir %DDIR% /S /Q
REM SwarmPlayer
set TDIR="%USERPROFILE%\%APPDIR%\.SwarmPlayer"
del %TDIR%\torrent*.* /S /F /Q
REM rmdiriver us from Windows, *.* apparently does not include the following:
rmdir %TDIR%\torrent /S /Q
rmdir %TDIR%\torrent2 /S /Q
rmdir %TDIR%\torrentcache /S /Q
rmdir %TDIR%\torrentinfo /S /Q
rmdir %TDIR%\datacache /S /Q
rmdir %TDIR%\piececache /S /Q
rmdir %TDIR%\bsddb /S /Q
rmdir %TDIR%\subscriptions /S /Q
rmdir %TDIR%\icons /S /Q
rmdir %TDIR%\itracker /S /Q
rmdir %TDIR%\dlcheckpoints /S /Q
rmdir %TDIR%\downloads /S /Q
del %TDIR%\routing*.*
del %TDIR%\abc.conf
del %TDIR%\*.pickle
REM SwarmPlugin
set TDIR="%USERPROFILE%\%APPDIR%\.SwarmPlugin"
del %TDIR%\torrent*.* /S /F /Q
REM rmdiriver us from Windows, *.* apparently does not include the following:
rmdir %TDIR%\torrent /S /Q
rmdir %TDIR%\torrent2 /S /Q
rmdir %TDIR%\torrentcache /S /Q
rmdir %TDIR%\torrentinfo /S /Q
rmdir %TDIR%\datacache /S /Q
rmdir %TDIR%\piececache /S /Q
rmdir %TDIR%\bsddb /S /Q
rmdir %TDIR%\subscriptions /S /Q
rmdir %TDIR%\icons /S /Q
rmdir %TDIR%\itracker /S /Q
rmdir %TDIR%\dlcheckpoints /S /Q
rmdir %TDIR%\downloads /S /Q
del %TDIR%\routing*.*
del %TDIR%\abc.conf
del %TDIR%\*.pickle