Team OS : Your Only Destination To Custom OS !!

Welcome to TeamOS Community, Register or Login to the Community to Download Torrents, Get Access to Shoutbox, Post Replies, Use Search Engine and many more features. Register Today!

Tips & Tricks Saving your TeamOS torrents

Chuck

🤴 Super Admin
Downloaded
300.6 GB
Uploaded
2.9 TB
Ratio
9.89
Seedbonus
587,448
Upload Count
24 (26)
Member for 5 years
Sometimes you may want to save your TeamOS .torrent files. You might want to do this before installing a new OS or to seed from another machine.

This script will copy .torrent files that use the TeamOS tracker to a new folder. It is useful if you only want TeamOS files and not files for other trackers. I have tested it with uTorrent and qbittorrent.

Copy the code below into a plain text file and save it with a .bat extension. Any file name will do.

Code:
@echo off
set UserName=Charlie
set destination= c:\Users\%UserName%\TeamOsTorrents
set list=%destination%\TeamOsTorrents.txt
echo Save TeamOS torrents for user %UserName% to %destination%
pause
rem if not exist %destination%\ (md %destination%) else (del %list% )
if not exist %destination%\ (md %destination%) else (del %destination% /q )
if ERRORLEVEL 1 (
echo. Did you put the correct Windows user name in the script?
pause
exit /b 1
)
findstr /S /I /M "teamos" c:\Users\%UserName%\AppData\Local\*.torrent > %list%
findstr /S /I /M "teamos" c:\Users\%UserName%\AppData\Roaming\uTorrent\*.torrent >> %list%
FOR /f  %%f IN (%destination%\TeamOsTorrents.txt) DO (copy %%f  %destination% /y /v > nul)
echo All TeamOS torrents found for %UserName% have been copied to %destination% .
echo A list of the copied torrents can be found in TeamOsTorrents.txt.
pause

Change the "set UserName=Charlie" line. Replace "Charlie" with your own Windows user name.
Run the batch file. "Open" it or double click it.

You will find the copies of your .torrent files in a new folder here C:\Users\YourUserName\TeamOsTorrents
You will also find a list of the copied files in TeamOsTorrents.txt.

To update the copy folder just run the batch file again. New files will be added and redundant copies will be removed.
 
Last edited:

MniawY

Former STAFF™ ⭐️
Uploader
Power User
Member
Downloaded
156.4 GB
Uploaded
51 TB
Ratio
333.87
Seedbonus
1,328,835
Upload Count
104 (102)
Member for 7 years
What a Wonderful Script, Thanks Sir @Charlie_Grimes :h:
 

mobi0001

The Power Is Yours!!!
Uploader
Power User
✅ Verified Member
Member
Downloaded
62.3 GB
Uploaded
11.3 TB
Ratio
186
Seedbonus
949
Upload Count
88 (103)
Member for 3 years
Nice. String search and copy. Good one mate. :cool:
 

pinkfloyder

pinkfloyder
✅ Verified Member
Member
Downloaded
370.8 GB
Uploaded
1.1 TB
Ratio
2.98
Seedbonus
1,574
Upload Count
0 (0)
Member for 10 years
Super super post Charlie_Grimes, many many thanks!!
 

Chuck

🤴 Super Admin
Downloaded
300.6 GB
Uploaded
2.9 TB
Ratio
9.89
Seedbonus
587,448
Upload Count
24 (26)
Member for 5 years
I thought that this would be particularly useful to the TeamOS members who seem to change their OS more often than they change their underwear. ;)
 

Agus Ski

Member
Downloaded
41.2 GB
Uploaded
500 GB
Ratio
12.14
Seedbonus
342,999
Upload Count
0 (0)
Member for 5 years
Thank you. It saves me a lot of time.
 

Yash Dedhia

Power User
✅ Verified Member
Member
Downloaded
139.4 GB
Uploaded
679.5 GB
Ratio
4.87
Seedbonus
262
Upload Count
0 (0)
Member for 9 years
this is amazing.. bookmarked please mark this as an imp tutorial.. its great❤️
 

iwanjeh

✅ Verified Member
Member
Downloaded
407.1 GB
Uploaded
2 TB
Ratio
4.98
Seedbonus
1,447,061
Upload Count
0 (0)
Member for 8 years
is this just copy .torrent files or with files downloaded with ? eg. iso files or something else :)
 

Alessia_Amelia

Power User
✅ Verified Member
Member
Downloaded
1.7 TB
Uploaded
50 TB
Ratio
29.4
Seedbonus
370,561
Upload Count
0 (0)
Member for 6 years
This may sound like the newbie question it is, but we've made a directory folder C:\Users\username\Documents\Torrent Downloads and C:\Users\username\Documents\Torrent Files on our laptop using uTorrent
for our torrents we download from here. we can use these directories to copy and save to an external HHD for when we clean install an OS correct? We usually do this but haven't reinstalled an OS for a while. Just VM's.
Want to make sure. Again, sorry for the probably obvious answer to this. This script will solve this, thanks @Charlie_Grimes.
 

Chuck

🤴 Super Admin
Downloaded
300.6 GB
Uploaded
2.9 TB
Ratio
9.89
Seedbonus
587,448
Upload Count
24 (26)
Member for 5 years
is this just copy .torrent files or with files downloaded with ? eg. iso files or something else :)
Just the .torrent files. Not the whole download.
 

iwanjeh

✅ Verified Member
Member
Downloaded
407.1 GB
Uploaded
2 TB
Ratio
4.98
Seedbonus
1,447,061
Upload Count
0 (0)
Member for 8 years
Just the .torrent files. Not the whole download.
owh oke copy that, lets find another ext harddisk lol :D
 

Chuck

🤴 Super Admin
Downloaded
300.6 GB
Uploaded
2.9 TB
Ratio
9.89
Seedbonus
587,448
Upload Count
24 (26)
Member for 5 years
This may sound like the newbie question it is, but we've made a directory folder C:\Users\username\Documents\Torrent Downloads and C:\Users\username\Documents\Torrent Files on our laptop using uTorrent
for our torrents we download from here. we can use these directories to copy and save to an external HHD for when we clean install an OS correct? We usually do this but haven't reinstalled an OS for a while. Just VM's.
Want to make sure. Again, sorry for the probably obvious answer to this. This script will solve this, thanks @Charlie_Grimes.
Yes, that's sounds like a workable plan and one that doesn't need a script like mine.
I originally wrote this for someone with a very large number of torrents who wanted to keep just the TeamOS ones.
If you ever wanted to separate your TeamOS .torrent files from those of other sites, then the script could be modified to do the job.
Is that what you wanted to know?
 

Alessia_Amelia

Power User
✅ Verified Member
Member
Downloaded
1.7 TB
Uploaded
50 TB
Ratio
29.4
Seedbonus
370,561
Upload Count
0 (0)
Member for 6 years
Yes, sorry wasn't clear, exactly what we need, thank you very kindly. :)
 

Nirjher1

✅ Verified Member
Member
Downloaded
30.1 GB
Uploaded
381 TB
Ratio
12946.01
Seedbonus
91,817
Upload Count
0 (0)
Member for 3 years
Very nice & useful Bat Script. :h: You can also add the .bat file for newbies sake.
 

RedDove

⭐ VIP
Power User
✅ Verified Member
Member
Downloaded
118.2 GB
Uploaded
40.9 TB
Ratio
354.45
Seedbonus
1,786,296
Upload Count
0 (0)
Member for 9 years
I thought that this would be particularly useful to the TeamOS members who seem to change their OS more often than they change their underwear. ;)
:wondering: Hey, not nice, I look like that description. :p;)
Thanks Charlie Grimes, I am going to try that. :)
 

1ntr0v3rt3ch

✅ Verified Member
Member
Downloaded
499 GB
Uploaded
148.8 TB
Ratio
305.41
Seedbonus
3,000,026
Upload Count
0 (0)
Member for 4 years
Sometimes you may want to save your TeamOS .torrent files. You might want to do this before installing a new OS or to seed from another machine.
@Charlie_Grimes seeding it to another machine will not affect the ratio as long as it is the same file downloaded in another PC? meaning there is a unique ID used in that torrent file? thanks!
 

sujatha1983

✅ Verified Member
Member
Downloaded
384.7 GB
Uploaded
844.8 GB
Ratio
2.2
Seedbonus
223
Upload Count
0 (0)
Member for 5 years
Wooooooooooow great share bro thank you verry much.
 

Chuck

🤴 Super Admin
Downloaded
300.6 GB
Uploaded
2.9 TB
Ratio
9.89
Seedbonus
587,448
Upload Count
24 (26)
Member for 5 years
@Charlie_Grimes seeding it to another machine will not affect the ratio as long as it is the same file downloaded in another PC? meaning there is a unique ID used in that torrent file? thanks!
It is OK to seed from different machines because your personal ID is embedded in the .torrent file
 

lapser

Member
Downloaded
31.2 GB
Uploaded
146 GB
Ratio
4.68
Seedbonus
34,123
Upload Count
0 (0)
Member for 4 years
Thank you. It saves me a lot of time.
 

Mr Grimbahir

🔰 OS Forge Master - May he rest in peace 🔰
⚡OS Master
Uploader
Power User
Windows Modifier
✅ Verified Member
Downloaded
108.9 GB
Uploaded
18.7 TB
Ratio
175.96
Seedbonus
69,433
Upload Count
52 (76)
Member for 4 years
Useful script. You have done great providing it. thanks so much.
 
Top