Reputation: 1
I'm trying to get a batch file to open tor, but i have the browser bundle and its not technically software, so I don't know how to launch it with a batch file.
Any suggestions?
Upvotes: -1
Views: 3492
Reputation: 1
Use
start "" "C:\Users\%USERNAME%\Desktop\SHORTCUT.lnk" "site1" "site2"
For example:
start "" "C:\Users\%USERNAME%\Desktop\SHORTCUT.lnk" "google.com" "duckduckgo.com"
The suggested answer is slightly wrong (it ends with an extra doublequote)
Upvotes: 0
Reputation: 145
I put a shortcut to Tor on my desktop, and ran it.
Create a shortcut to Tor, and within a batch file, enter this:
start "" "C:\Users\%USERNAME%\Desktop\SHORTCUT.lnk" "site1" "site2" "
Just replace SHORTCUTNAME with the name of the shortcut, and site1 and site2 with the sites you want.
Upvotes: 1
Reputation: 413
Inside the unzipped bundle is "App/tor" -- that is the tor binary. However, it would be more helpful to know why you want to launch tor separately.
Upvotes: 0
Reputation: 1
Well I know how to run the internet command in a batch file, but don't know how to run a customised selection.
Try downloading firefox(web browser)(it's great) and then downloading the add on Fox tab. It lets you select a website from your own pre made bundle when you open a new tab.
Sorry for not being able to answer the question.
Upvotes: 0
Reputation: 86
You can use the PUSHD command to enter in the browser folder and then the START command to execute the program.
I hope that I have helped.
Upvotes: 0