Open a web page with a batch file
Solved
linkinnad
-
ates -
ates -
Hello,
I would like to know how to open a web page (using a url) with a batch file.
Thank you!! :D
<config>Windows 7 /
I would like to know how to open a web page (using a url) with a batch file.
Thank you!! :D
<config>Windows 7 /
5 réponses
linkinnad
and for Chrome, how do you do it?
Hello,
You can do something simpler for the default browser:
You can do something simpler for the default browser:
cmd /C start http://www.google.com</code>
I tried it on Vista and it works, so I think 7 won't have any problems with it.
Hi, I'm going to keep asking a few small questions too.
I want to start a link with Tor that is on the desktop, so I'm doing this
start C:\Users\Sosso\Desktop\Tor\firefox (since that's what it's called)
and
The system cannot find the file C:\Users\Sosso\Desktop\Tor\firefox.
It's portable Tor and I doubt that's the issue. If someone could enlighten me, that would be great. Thanks to those who read this and to those who help me.
I want to start a link with Tor that is on the desktop, so I'm doing this
start C:\Users\Sosso\Desktop\Tor\firefox (since that's what it's called)
and
The system cannot find the file C:\Users\Sosso\Desktop\Tor\firefox.
It's portable Tor and I doubt that's the issue. If someone could enlighten me, that would be great. Thanks to those who read this and to those who help me.
Still me, just a quick question, I'm making a loop but it's not working. cmd.exe closes but doesn't relaunch.
@echo off
:loop
title ---[ Youtube ]---
color 04
start C:\Users\Sosso\Desktop\Tor\Browser\firefox.exe https://www.youtube.com/watch??????????
timeout /t 25
C:\Windows\System32\taskkill.exe /f /im firefox.exe
timeout /t 2
C:\Windows\System32\taskkill.exe /f /im cmd.exe
pause
goto loop
@echo off
:loop
title ---[ Youtube ]---
color 04
start C:\Users\Sosso\Desktop\Tor\Browser\firefox.exe https://www.youtube.com/watch??????????
timeout /t 25
C:\Windows\System32\taskkill.exe /f /im firefox.exe
timeout /t 2
C:\Windows\System32\taskkill.exe /f /im cmd.exe
pause
goto loop