Sunday, February 8, 2015

Free Blog Page Views

You now can get thousands of pageviews on your blog in less than an hour.  If you read my last post I talked about how to use the sendkeys command in VBScript.  Well what you can do is make a VBS program that presses the F5 key over and over again on your blog.  The F5 key is used for refreshing so you could get so many pageviews.  Here are some variations of a code that would work.

Dim rShell : set rShell =  CreateObject("WScript.Shell")
DO
rShell.SendKeys "{F5}"
WScript.Sleep "500"
LOOP


or


Dim rShell : set rShell =  CreateObject("WScript.Shell")
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"
rShell.SendKeys "{F5}"
WScript.Sleep "500"


You can mess around with the WScript.Sleep to get it to the right speed for your computer so it doesn't go so fast that the refreshes don't count.

No comments:

Post a Comment