Technical 

Open All Voting Websites With A .bat File!

Windows Only

Follow this Guide http://www.makeuseof.com/tag/write-simple-batch-bat-file/

Put this in the .bat File:
Code:
@echo off
FOR %%G IN (
http://bit.ly/2nIl8vZ
http://bit.ly/2nqbO2i
http://bit.ly/2nq7LTI
http://bit.ly/2nqmq1f
http://bit.ly/2nIb4mk
http://bit.ly/2mYQpuh
http://bit.ly/2mGIP5N
http://bit.ly/2nI7qJt
http://bit.ly/2mKFCTU
http://bit.ly/2n5j7vb
http://bit.ly/2mYU8bg
http://bit.ly/2nBBUA6
http://bit.ly/2mZ0N5y
http://bit.ly/2nUfeH6
http://bit.ly/2mGK7Oe
http://bit.ly/2nqjqBP
http://bit.ly/2mj9ydn
) DO (
cmd /c start %%G
timeout /t 3 /nobreak > NUL
)
pause

Enjoy!
 
Windows Only

Follow this Guide http://www.makeuseof.com/tag/write-simple-batch-bat-file/

Put this in the .bat File:
Code:
@echo off
FOR %%G IN (
http://bit.ly/2nIl8vZ
http://bit.ly/2nqbO2i
http://bit.ly/2nq7LTI
http://bit.ly/2nqmq1f
http://bit.ly/2nIb4mk
http://bit.ly/2mYQpuh
http://bit.ly/2mGIP5N
http://bit.ly/2nI7qJt
http://bit.ly/2mKFCTU
http://bit.ly/2n5j7vb
http://bit.ly/2mYU8bg
http://bit.ly/2nBBUA6
http://bit.ly/2mZ0N5y
http://bit.ly/2nUfeH6
http://bit.ly/2mGK7Oe
http://bit.ly/2nqjqBP
http://bit.ly/2mj9ydn
) DO (
cmd /c start %%G
timeout /t 3 /nobreak > NUL
)
pause

Enjoy!
 
the link only brings up a tutorial on how to take the code that jackson posted.. and make it the program