How to Quickly Switch Between Tethering and Home Connections - eBay Suspended & PayPal Limited Forums
eBay Suspension & PayPal Limited Forums  
Join Today
Register Subscribe
     

Registration is fast, simple and absolutely free so please, join our community today!


Go Back   Home > Stealth Topics > eBay Tracking

eBay Tracking General discussions on eBay tracking, account linking, IP address, user accounts and more.

Reply
 
Thread Tools
  #1  
Old 04-01-2015
Junior Member
 
Join Date: Mar 2015
Posts: 117
Thanks: 15
Thanked 10 Times in 6 Posts
Activity: 0%
Longevity: 52%
iTrader: (0)
Lightbulb How to Quickly Switch Between Tethering and Home Connections

Here's a simple way to quickly switch between your home cable/dsl connection and your tethering connection. Just make a batch file for toggling the appropriate connections. Make sure you ENABLE ADMINISTRATOR MODE by right-clicking the icon -> Shortcut Tab -> Advanced button at bottom -> Check Run as Administrator. Then make a folder with shortcuts, and add that folder to your taskbar via right clicking the taskbar -> toolbars -> new toolbar then find the folder. Add icons to the shortcuts and you're good to go.

I've pasted the code below. Just REPLACE network_to_enable and network_to_disable with the names of your network. You can find the names of your network under Network and Sharing Center -> Change Adapter Settings. It's the text in black above and to the right of the icon.

As a bonus, for enabling tethering, I created code to kill any bandwidth-intensive programs such as uTorrent. Feel free to modify this and add your own programs. The batch file will also open whatismyip.com so you can id and log your IP address. Again, replace the network_to_enable and network_to_disable with the names of your networks.

Hope this helps someone!

Batch File 1 - Enable Cable/DSL Connection:
Code:
@echo off
set network_to_enable=Ethernet
set network_to_disable=iPhone

 netsh interface set interface name="%network_to_enable%" admin=enabled
 netsh interface set interface name="%network_to_disable%" admin=disabled
Batch File 2:
Code:
@echo off
taskkill /f /im "uTorrent.exe"

set network_to_enable=iPhone
set network_to_disable=Ethernet

 netsh interface set interface name="%network_to_enable%" admin=enabled
 netsh interface set interface name="%network_to_disable%" admin=disabled
 
 timeout 5
 
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" " http://www.whatismyip.com/"
Reply With Quote
The complete step-by-step guide to get back to selling today!

Reply




Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Hey, new to this forum looking to build business connections fahim5001 Introductions 4 07-24-2014 12:19 PM
Broadband + Dial up connections on the same computer Lheonard eBay Tracking 3 06-05-2012 10:47 AM
T1 Internet Connections... Donna IP Address 0 05-29-2010 06:30 PM
eBay / Paypal - Old PC, Modem - Connections matty-ebay eBay Tracking 6 02-20-2008 07:21 PM
PayPal making connections b/w accounts keceli eBay Suspensions 2 12-06-2007 12:05 AM


Aspkin Group

All times are GMT -5. The time now is 09:30 PM.


Stop the guessing games and learn how you can quickly and easily get back on eBay today!
Read the best selling step-by-step eBay Suspension guide eBay Stealth!
Amazon Suspension? Read Amazon Ghost to get back on Amazon!
vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Ad Management by RedTyger
no new posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58