Advertisement
Guest User

Untitled

a guest
May 20th, 2014
525
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. For those of you wanting to run Virtual Router Plus as an autostart Task, follow this guide. This guide assumes you haven't already downloaded Virtual Router Plus.
  2. 1. Download the Necessary Programs.
  3. 1a. Virtual Router Plus. https://virtualrouter.codeplex.com/
  4. 1b. AutoIt. http://www.autoitscript.com/site/autoit/downloads/ (Click Download AutoIt button)
  5. 2. Install the Necessary Programs. I highly recommend you hit decline on all prompt on Virtual Router Plus.
  6. 3. After Installing both Virtual Router Plus and AutoIt, right click on your desktop and create a new Autoit V3 Script. You may need to hit F5.
  7. 4. Right click on "New AutoIt v3 Script.au3" and select Edit.
  8. 5. Copy and Paste this into AutoIt.
  9.  
  10. ;start
  11. #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
  12. #AutoIt3Wrapper_UseUpx=y
  13. #AutoIt3Wrapper_UseX64=n
  14. #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
  15. Opt("mousecoordmode", 2)
  16. ShellExecute("C:\Program Files (x86)\Runxia Electronics\Virtual Router Plus\VirtualRouterPlus.exe")
  17. WinWait("Virtual Router Plus")
  18. WinActivate("Virtual Router Plus")
  19. ControlClick("Virtual Router Plus", "", "[NAME:startButton]", "LEFT", 1, 146, 13)
  20. ;end
  21.  
  22. 6. Click Tools then Build. Wait until it builds the program and Exit AutoIt.
  23. 7. On your Desktop, Rename and Move the file "New AutoIt v3 Script.exe" into an appropriate location and name.
  24. 8. Open Control Panel > Administrative Tools > Task Scheduler.
  25. 9. Create a Basic Task. Give it a name and Set Trigger to When the Computer Starts and Action to Start a Program.
  26. 10. Click Browse. Navigate to the exe file we built earlier. Finish creating the Task and you are done.
  27.  
  28. Notes: You may need to set a delay or have it wait until a connection has been obtained. Use Google to figure that out.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement