you can modify it to grab lists that you want.
This is the code inside the update MS-Batch file,(right click and edit it will open with notepad) You can modify it to download the nipfilter or the pipfilter.dat.gz
CODE
@echo off
wget -N "http://www.bluetack.co.uk/config/nipfilter.dat.gz"
7za.exe x "nipfilter.dat.gz"
del "%APPDATA%\uTorrent\ipfilter.dat"
copy "nipfilter.dat" "%APPDATA%\uTorrent\ipfilter.dat"
del "nipfilter.dat"
****************************************************
This is a quick mod, but I think it will work, be sure to look at our Blocklists FAQ before using the pipfilter.dat.gz to see what lists are all in it, It is all lists.
CODE
@echo off
wget -N "http://www.bluetack.co.uk/config/pipfilter.dat.gz"
7za.exe x "pipfilter.dat.gz"
del "%APPDATA%\uTorrent\ipfilter.dat"
copy "pipfilter.dat" "%APPDATA%\uTorrent\ipfilter.dat"
del "pipfilter.dat"
--------------------