写一个批处理文件。新建一个文本文件,把文件后缀名txt改为bat,然后编辑文件把以下内容拷贝进去。执行文件,访问量就唰唰唰上涨!
@echo off
rem 首先找到IE浏览器的执行路径
cd
C:
cd Program Files\Internet Explorer
rem 循环100000次
for /l %%i in (1,1,100000) do (
rem 打开网页并最小化窗口(不影响你当前工作)
start /min iexplore "http://blog.sina.com.cn/s/blog_591c7a8f0102yc5p.html"
rem 延时3s
choice /t 3 /d y /n >nul
rem 关闭网页
taskkill /F /IM iexplore.exe
)