hello,
i want to create a bat file that starts Brave browser directly in Tor windows
some script ideas that i had:
my first idea was to put -tor in the end of the path like this, but it does not work:
@echo off
start “C:\Program Files (x86)\BraveSoftware\Brave-Browser\Application\brave.exe” -tor
another script that i have try, and also not works:
@echo off
SETLOCAL
SET BROWSER=brave.exe
SET WAIT_TIME=2
START %BROWSER% -new-tab “write the website here”
@ping 127.0.0.1 -n %WAIT_TIME% -w 1000 > nul
START %BROWSER% -new-private-window-with-Tor “”
but it does only open Brave in a normal window
My Operating system is Windows 10 if it matters
can please someone help me with finish this script?
i would be very thankful