Hey.
When I run a script, that tells to start firefox, firefox only opens in a new CMD window that pops up. Its the same with my games.
How to start firefox, in a batch file?
Search found 3 matches
- 19 Jul 2007 07:36
- Forum: DOS Batch Forum
- Topic: Help. I can't open firefox with in a bat!
- Replies: 3
- Views: 8580
- 18 Jul 2007 08:07
- Forum: DOS Batch Forum
- Topic: Starting files.
- Replies: 3
- Views: 10625
Powermean, If you have spaces in the filename or path then you will need to put the whole thing in quotes like this: start "C:\Program files\Mozilla Firefox\firefox.exe" Otherwise the command interpreter cut's of the filename at the space character. Hope this helps! Yes, thanks alot DosItHelp! But,...
- 17 Jul 2007 21:40
- Forum: DOS Batch Forum
- Topic: Starting files.
- Replies: 3
- Views: 10625
Starting files.
Hello. I'm pretty new to batch, and want to learn easy, funny stuff to do with batch files. First up, I read the "My First Batch File" tutorial. And now I tought I would execute my own batch file, so I wrote this: @echo off echo 'ay there! pause start C:\Program files\Mozilla Firefox\firefox.exe But...