thorpedosg

Untitled

Jul 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @echo off
  2. title The Website Picker
  3. color F0
  4. goto home
  5.  
  6. :home
  7. echo Welcome to the website picker, %username%!
  8. echo Choose a site from the list below by typing the number for it.
  9. echo ------
  10. echo ------
  11. echo 1. Social Media
  12. echo 2. Educational
  13. echo 3. Shopping Sites
  14. echo 4. Entertainment
  15. echo 5. Search Engines
  16. echo 6.
  17. echo 7.
  18. echo 8.
  19. echo .
  20. echo If you would like more websites added, just ask me!
  21. set /p res=Website Number:
  22.  
  23. if %res%==1 goto socialmedia
  24. if %res%==2 goto educational
  25. if %res%==3 goto shopping
  26. if %res%==4 goto entertain
  27.  
  28. :socialmedia
  29. echo Welcome to the social media tab.
  30. echo Choose a site from the list below by typing the number for it.
  31. echo ------
  32. echo 0. BACK
  33. echo 1. YouTube
  34. echo 2. Reddit
  35. echo 3. Twitter
  36. echo 4. Facebook
  37. echo 5. Instagram
  38. echo 6. Pinterest
  39. set /p socialres=Website Number:
  40.  
  41. if %socialres%==0 goto home
  42. if %socialres%==1 start https://www.youtube.com
  43. if %socialres%==2 start https://www.reddit.com
  44. if %socialres%==3 start https://www.twitter.com
  45. if %socialres%==4 start https://www.facebook.com
  46. if %socialres%==5 start https://www.instagram.com
  47. if %socialres%==6 start https://www.pinterest.com
  48.  
  49. :educational
  50. echo Welcome to the educational tab.
  51. echo Choose a site from the list below by typing the number for it.
  52. echo ------
  53. echo 0. BACK
  54. echo 1. Wikipedia
  55. echo 2. Dictionary.com
  56. echo 3. Thesaurus.com
  57. echo 4. Wolfram Alpha
  58. set /p edures=Website Number:
  59.  
  60. if %edures%==0 goto home
  61. if %edures%==1 start https://www.wikipedia.org
  62. if %edures%==2 start http://www.dictionary.com/
  63. if %edures%==3 start http://www.thesaurus.com/
  64. if %edures%==4 start https://www.wolframalpha.com/
  65.  
  66. :shopping
  67. echo Welcome to the shopping tab.
  68. echo Choose a site from the list below by typing the number for it.
  69. echo ------
  70. echo 0. BACK
  71. echo 1. Amazon
  72. echo 2. eBay
  73. echo 3. Wish
  74. echo 4. Etsy
  75. set /p shopres=Website Number:
  76.  
  77. if %shopres%==0 goto home
  78. if %shopres%==1 start https://www.amazon.com
  79. if %shopres%==2 start https://www.ebay.com
  80. if %shopres%==3 start https://wish.com
  81. if %shopres%==4 start https://etsy.com
  82.  
  83. :entertain
  84. echo Welcome to the entertaining tab.
  85. echo Choose a site from the list below by typing the number for it.
  86. echo ------
  87. echo 0. BACK
  88. echo 1. YouTube
  89. echo 2. Netflix
  90. echo 3. Stan
  91. echo 4. Hulu
  92. echo 5. SoundCloud
  93. echo 6. Spotify
  94. echo 7.
  95. echo 8.
  96. set /p entertainres=Website Number:
  97.  
  98. if %entertainres%== 0 goto home
  99. if %entertainres%== 1 start https://www.youtube.com
  100. if %entertainres%== 2 start https://www.netflix.com
  101. if %entertainres%== 3 start https://www.stan.com.au
  102. if %entertainres%== 4 start https://www.hulu.com
  103. if %entertainres%== 5 start https://www.soundcloud.com
  104. if %entertainres%== 6 start https://www.spotify.com
Add Comment
Please, Sign In to add comment