2008年7月6日

精简迅雷的脚本

Author: Hagen.GoO 转载请联系作者
MSN_contact: wantm009@hotmail.com
Keyword: 迅雷,Xunlei,迅雷去广告,迅雷精简版
Quote:



  迅雷的下载速率确实不错,但过多的广告,不仅消耗了很多系统资源,也常常把 Temp 目录塞得满满的。因此收集了网上的一些资料,通过简单命令批处理 DIY 了一个迅雷去广告版。
  把以下内容复制到记事本,另存为 .cmd 或 .bat 文件,让后把该文件复制到迅雷的安装目录运行即可。




@ECHO OFF

ECHO.
ECHO.
ECHO **********************************************************
ECHO *** 开始精简迅雷……
ECHO **********************************************************
ECHO.
ECHO.

IF NOT EXIST Thunder.exe. (
ECHO.
ECHO **********************************************************
ECHO * 请把本批处理命令文件存放到迅雷的安装再运行;
ECHO * 迅雷的默认安装目录是 C:\Program Files\Thunder Network\Thunder
ECHO **********************************************************
ECHO.
PAUSE
EXIT
)

ECHO.
ECHO *********************************
ECHO *** 停止迅雷进程
ECHO *********************************
ECHO.
TSKILL Thunder

ECHO.
ECHO *********************************
ECHO *** 删除“迅雷社区” 组件
ECHO *********************************
ECHO.
RMDIR /S /Q .\Components\Community
DEL .\Languages\zh_cn\Community.ini
DEL .\Languages\zh_cn\Community.xml
DEL .\Languages\zh_tw\Community.ini
DEL .\Languages\zh_tw\Community.xml

ECHO.
ECHO *********************************
ECHO *** 删除 “迅雷播放器” 组件
ECHO *********************************
ECHO.
REGSVR32 /U /S .\Components\DownAndPlay\DapCtrl.dll
REGSVR32 /U /S .\Components\DownAndPlay\DapPlayer.dll
REGSVR32 /U /S .\Components\DownAndPlay\DownAndPlay.dll
REGSVR32 /U /S .\Components\DownAndPlay\tsf.dll
REGSVR32 /U /S .\Components\DownAndPlay\tsf_Now.dll
RMDIR /S /Q .\Components\DownAndPlay

ECHO.
ECHO *********************************
ECHO *** 删除“迅雷资讯”组件
ECHO *********************************
ECHO.
REGSVR32 /U /S .\Components\InMedia\iEmbed17.dll
REGSVR32 /U /S .\Components\InMedia\iEmbedShell.dll
REGSVR32 /U /S .\Components\InMedia\MediaAddin17.dll
REGSVR32 /U /S .\Components\InMedia\peerid.dll
RMDIR /S /Q .\Components\InMedia
DEL .\Languages\zh_cn\InMedia.ini
DEL .\Languages\zh_tw\InMedia.ini

ECHO.
ECHO *********************************
ECHO *** 删除“迅雷看看”组件
ECHO *********************************
ECHO.
REGSVR32 /U /S .\Components\KanKan\Xdrm.dll
REGSVR32 /U /S .\Components\KanKan\XmvSource.dll
REGSVR32 /U /S .\Components\KanKan\XPlayer.dll
RMDIR /S /Q .\Components\KanKan
RMDIR /S /Q .\Plugins\KanKanTop

ECHO.
ECHO *********************************
ECHO *** 删除“迅雷雷区”组件
ECHO *********************************
ECHO.
REGSVR32 /U /S .\Components\P4PClient\P4PClient.dll
RMDIR /S /Q .\Components\P4PClient
DEL .\Languages\zh_cn\P4PClient.ini
DEL .\Languages\zh_tw\P4PClient.ini

ECHO.
ECHO *********************************
ECHO *** 删除“迅雷狗狗搜索”组件
ECHO *********************************
ECHO.
RMDIR /S /Q .\Components\Search
DEL .\Languages\zh_cn\XLSearch.ini
DEL .\Languages\zh_tw\XLSearch.ini

ECHO.
ECHO *********************************
ECHO *** 删除“迅雷热门推荐Tips”组件
ECHO *********************************
ECHO.
REGSVR32 /U /S .\Components\Tips\TipsClient.dll
RMDIR /S /Q .\Components\Tips

ECHO.
ECHO *********************************
ECHO *** 删除“迅雷用户体验”组件
ECHO *********************************
ECHO.
RMDIR /S /Q .\Components\UserExperience

ECHO.
ECHO *********************************
ECHO *** 删除“迅雷狗狗影视排行”组件
ECHO *********************************
ECHO.
RMDIR /S /Q .\Plugins\GouGouTop
DEL.\Languages\zh_cn\GouGouTop.ini
DEL.\Languages\zh_tw\GouGouTop.ini

ECHO.
ECHO *********************************
ECHO *** 删除“迅雷VPShell”组件
ECHO *********************************
ECHO.
RMDIR /S /Q .\Components\VPShell

ECHO.
ECHO *********************************
ECHO *** 删除“迅雷装机必备软件”组件
ECHO *********************************
ECHO.
RMDIR /S /Q .\Components\XLSoftBase

ECHO.
ECHO *********************************
ECHO *** 去掉迅雷顶部横幅 Banner 链接和广告
ECHO *********************************
ECHO.
DEL /Q .\Program\Ad\*.swf
RENAME .\Program\Ad\new.gif default_new.swf
RENAME .\Program\Ad\main.gif default_main.swf

ECHO.
ECHO *********************************
ECHO *** 去掉迅雷自动升级功能
ECHO *********************************
ECHO.
IF NOT EXIST .\Program\Update. MKDIR .\Program\Update
DEL /Q .\Program\Update\*.*
DEL .\Program\LiveUpdate.dll
DEL .\Program\UpdateShell.dll

ECHO.
ECHO *********************************
ECHO *** 设置目录权限,禁止迅雷下载广告
ECHO *** 请按“Y” 确认!
ECHO *********************************
ECHO.
CACLS .\Program\Ad /T /C /G EVERYONE:R

ECHO.
ECHO *********************************
ECHO *** 设置目录权限,禁止迅雷下载更新
ECHO *** 请按“Y” 确认!
ECHO *********************************
ECHO.
CACLS .\Program\Update /T /C /G EVERYONE:R


ECHO.
ECHO.
ECHO.
ECHO **********************************************************
ECHO * 去除迅雷右侧资源窗口,方法如下:
ECHO * 在记事本打开的 UserConfig.ini 文件中查找到 [Splitter_1] 字段
ECHO * 下数14行,把 Pane1_Hide=0 修改为 Pane1_Hide=1
ECHO **********************************************************
NOTEPAD.EXE .\Profiles\UserConfig.ini

ECHO.
ECHO.
ECHO.
ECHO **********************************************************
ECHO * 去除迅雷广告设置,方法如下:
ECHO * 在记事本打开的 gui.cfg 文件中把
ECHO * ADServer=
ECHO * PVServer=
ECHO * ADCountingServer=
ECHO * HomePage=
ECHO * 等四个条目中,“=”号后面的内容删除, ##请务必保留“=”
ECHO **********************************************************
NOTEPAD.EXE .\Program\gui.cfg

ECHO.
ECHO.
ECHO **********************************************************
ECHO *** 迅雷精简完毕
ECHO **********************************************************
ECHO.
ECHO.

PAUSE
EXIT




2 条评论:

匿名 说...

There exists as well an ample adverse in amid mens or womens academic footwear. There absolutely are some almost credible distinctions for archetype huge heels against flats or bargain heel loafers, sorts of architecture articles and allocation considerations. Ladies appearance up accepting a tad little abundant bigger at and maybe added accessible to abode up accepting alone a tiny ache so which you can arise their best.In current time, espadrilles are considered an easy pack and versatile summer footwear for the males of all ages. Espadrilles come in multiple varieties, but the ones below are the finest on the moment.[url=http://www.cheaptomsbuy.com]Cheap Toms sale[/url] Private companies are profit based and this in turn attracts investors from all sectors. More social entrepreneurship funds are required to make the social investment community as strong as the mainstream investment community. Partnering with private companies will also help social entrepreneurs learn more about running business the smarter way. TOMS Company decided to provide shoes because the founder of the company realized the fact that many children come in the contact of harmful diseases which are transmitted through the soil.It was observed that some children who cant even afford a pair of shoes do not attend schools because its a part of their uniform.So, it was a little initiative from this company to help these needy children and contribute to their health. [url=http://www.cheaptomssite.com]Cheap Toms[/url] A fully completed return/exchange form MUST be included with all returns. Failure to do so may result in processing times up to 30 days from time of receipt. [url=http://www.tomsfans.com]Cheap Toms Sale[/url] As we all know, Toms shoes are very popular all the world. Some people like their comfortable feeling, some people like their unique style, and any other people like their word One for One. No matter why people like Toms shoes, it is true that the shoes bring people so much benefit. At the same time, either women or men, either young or old, people always find their love Toms shoes.
Relate Artcile

[url=http://miyakojima.ne.jp/blog/kurashi/index.php?itemid=179+++++++++++++++++++++++++++++++Result:+no+post+sending+forms+are+found;]buynice toms men shoes for cheap price[/url]
[url=http://www.planitup.net/#comment-32839]offercomfortable toms women shoes for cheap price[/url]

匿名 说...

Car lumbar support refers to the act of protecting a person抯 back while he is seated in a car. The devices that offer such support and protection are designed to correct poor posture that often result in lower back pain. Instead of sitting in a slumped position, you can now use lumbar support devices to sit up straight, even in a car. This will not only give you good posture, but also a host of other health benefits.
Final Tips:
Accidentally Bobbi met a chemist and they formulated ten lip sticks that were brown based. These lipsticks might be blended to create a becoming coloring for almost any individual's lips. This became the beginning for her company.
Design That Address and Eliminates Pinch Points
[url=http://www.icemachineschina.com]dvd car player[/url]People usually like to spend their leisure time in accordance with their choice. One of the most common pass times listening to music. Thanks to technological advances, can now listen to their favorite music while driving. Stereo system has made this dream come true.
This product is powered by a lightweight Lithium Ion battery and is rechargeable with any Blackberry Travel Charger, Blackberry Power Station or any USB Cable or Automotive Charger. Features packed in the Blackberry HS-655 makes traveling light and easy.
Four-Post Car Lift Anti-Sway Blocks
DO consider upgrading your lift’s capacity for extended versatility.
Because the various car lifting solution designs can be extremely different from each other, it makes sense that some safety features are specific to only one kind of car lift. Two-post car lifts employ swing arm assemblies that allow the operator to change the arm configuration to suit a wide range of vehicles. It is important that swing arm lifts employ restraint devices to prevent arms from shifting or dislodging after a car or truck is already mounted and raised. Higher-quality two-post car lifts will feature this safety critical element; typically a gear mechanism that automatically secures the arms into place whenever the lift begins to rise. The automatic gear arm restraints will only disengage again when the lift is in a safe, lowered state.
The need for lumbar support in cars has definitely increased in direct proportion to the amount of time people spend riding in a car. This need has also been highlighted by the fact that more and more people are now experiencing lower back ailments and suffering from poor posture. For this reason, many people are now looking for car seats that are specifically designed for lumbar support. Manufacturers have also felt this need and increased the number of lumbar support products for use in cars.