寫(xiě)一個(gè)批處理文件。新建一個(gè)文本文件,把文件后綴名txt改為bat,然后編輯文件把以下內(nèi)容拷貝進(jìn)去。執(zhí)行文件,訪(fǎng)問(wèn)量就唰唰唰上漲!
@echo off
rem 首先找到IE瀏覽器的執(zhí)行路徑
cd
C:
cd Program Files\Internet Explorer
rem 循環(huán)100000次
for /l %%i in (1,1,100000) do (
rem 打開(kāi)網(wǎng)頁(yè)并最小化窗口(不影響你當(dāng)前工作)
start /min iexplore "http://blog.sina.com.cn/s/blog_591c7a8f0102yc5p.html"
rem 延時(shí)3s
choice /t 3 /d y /n >nul
rem 關(guān)閉網(wǎng)頁(yè)
taskkill /F /IM iexplore.exe
)