plentyoftorrents











Location : Home » Software » Windows » uTorrent IP-Filter with AutoUpdater and Installation Instructions. Open Source.

tree of tranquility music el imaginarium dr parnassus spanish dont press the red button pitchfork media top 100 songs torrent ammazza vampiri crack do farming for rocket singh 2 movie whiteout 2009 hd rip true blood s2e12 alice in wonderland nds torrent

uTorrent IP-Filter with AutoUpdater and Installation Instructions. Open Source.

direct download[ Download options ] alternative direct download for uTorrent IP-Filter with AutoUpdater and Installation Instructions. Open Source. from usenet with usenext client 5x faster.
Usenet was created before the internet and consists of more than 60000 boards for discussions (newsgroups).
Opinions are exchanged in these boards.There is nothing you won't find there... or download torrent.
Before download check the report, the internal files and the comments of this torrent.

Your report is useful for the torrents's community
Torrent report :    Fake file (0)    Password (0)    Bad quality (0)    Virus (0)    Real torrent (0)


Download this torrent or use Magnet Link     Add to your bookmarks
uTorrent IP-Filter with AutoUpdater and Installation Instructions. Open Source..torrent
↓ Alternative Direct Download *FREE 5x FASTER*. Click here to download the usenext client.






Secure download hide your personal activity while downloading torrents with torrent privacy
To Download From Site You Will Need Bittorrent Software Installed.Get It Here: Visit BitRoll
Category : Software » Windows
Added : 42 weeks ago
Size : 21.33 MB
Seeds : 0
Peers : 1
Hash : f015afa1536e0a63f26243003ededcfca1c9d236
Tags : uTorrent Filter with AutoUpdater Installation Instructions Open Source




Useful links
Find torrents directly from your browser. Download the BTscene toolbar

We recommend you to check this torrent on torrentspam: Check by hash code




Torrent description

Description:



This IPFilter is a list of filtered IP addresses that are known for supporting anti p2p organizations. This list is



given out for free from sourceforge.net. I'm just providing the dat file in combination with the vbs file that will



automatically update it for you. These two files are the ONLY two files you need in combination with uTorrent.



The ipfilter.vbs file will update and notify you that update has completed. Here is the VBS source:









Included Files:




ipfilter.dat - This is the data file for all the blacklisted IP addresses.

ipfilter.vbs - This is simply a script to execute the updating process of the IP addresses.



You can add the "txt" extension to both of these files to verify the file contents and actions. Just be sure to



remove the txt extension before using them.

















Utorrent Installation Procedure:



Navigate to your default application data folder for uTorrent (WinXP is C:\Documents and



Settings\****\Application Data\uTorrent) and copy "ipfilter.dat" and "ipfilter.vbs" into this folder.



Now just decide how you would like to go about updating your dat file (which is why I've created the VBS file



for you.) Your options are:



1. Add the ipfilter.vbs file to your startup folder so that it will execute each reboot



2. Add the ipfilter.vbs file to a Windows Scheduled Task so that it launches as often as you would like.



3. Just leave a shortcut to ipfilter.vbs on your desktop so you can launch and update the ipfilter.dat file



manually.



4. Do something else that I couldn't have predicted here.



Next, you must enable the ipfilter in uTorrents advanced settings.

You can see a picture of how to do that here

http://img.photobucket.com/albums/v631/spinnn/utorrentipfilter.jpg





I could have just provided you with a batch file instead of a VBS file but I prefer being notified when the



download completes without that annoying MSDOS black box staying on my screen or stealing my focus.





Some paranoid people may want the source to this VBS file posted before they download and while I may not agree, I can passify. So, here it is:



-Text











'===DemoGetImageStream.vbs===

'

'Requires:

'

' - IE 5+ for "Microsoft.XMLHTTP"

' - ADO 2.5+ for "adodb.stream"

'

sSrcUrl = "http://easynews.dl.sourceforge.net/sourceforge/emulepawcio/"

sDestFolder = "C:\Documents and Settings\*\Application Data\uTorrent"

sImageFile = "ipfilter.dat"



set oHTTP = WScript.CreateObject("Microsoft.XMLHTTP")



oHTTP.open "GET", sSrcUrl & sImageFile, False

oHTTP.send



set oStream = createobject("adodb.stream")

Const adTypeBinary = 1

Const adSaveCreateOverWrite = 2

oStream.type = adTypeBinary

oStream.open

oStream.write oHTTP.responseBody

oStream.savetofile sDestFolder & sImageFile, adSaveCreateOverWrite



set oStream = nothing

set oHTTP = nothing



WScript.Echo "ipfilter update complete."