[BAT] Opening Multiple Files Using BAT

IntactDev

Member
Nov 22, 2012
399
71
So, here is what now have:

Code:
@echo off
 
start “XAMPP” “C:\xampp\xampp-control.exe”
start “Sublime” “C:\Program Files (x86)\Sublime Text 2\sublime_text.exe”
start “Chrome” “C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"

This returns errors; anyone know why?
 

IntactDev

Member
Nov 22, 2012
399
71
I used to do bat...You just need the file location I think and its
start C:\\Fuck.exe
Nope..
517075e912077.jpg
 

Macemore

Circumcised pineapples
Aug 26, 2011
1,681
819
What's the specific error? add pause at the end to find out

So, here is what now have:

Code:
@echo off
 
start “XAMPP” “C:\xampp\xampp-control.exe”
start “Sublime” “C:\Program Files (x86)\Sublime Text 2\sublime_text.exe”
start “Chrome” “C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"

This returns errors; anyone know why?
First, never install under 32 bit, you should feel bad for that.
Second, throw out the name it's useless


start "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
 

NSA

sudo apt-get thefuckout.tar.gz
Dec 9, 2011
715
86
Here.

off

start "XAMPP" "C:\xampp\xampp-control.exe"
start "Sublime" "C:\Program Files (x86)\Sublime Text 2\sublime_text.exe"
start "Chrome" "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
 

IntactDev

Member
Nov 22, 2012
399
71
Thread can be closed; solution:

Code:
@echo off
 
start "" "C:\Program Files (x86)\Sublime Text 2\sublime_text.exe"
start "" "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
start C:\xampp\xampp-control.exe
 

Macemore

Circumcised pineapples
Aug 26, 2011
1,681
819
Here.

off

start "XAMPP" "C:\xampp\xampp-control.exe"
start "Sublime" "C:\Program Files (x86)\Sublime Text 2\sublime_text.exe"
start "Chrome" "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
Nice you can copy n paste
Thread can be closed; solution:

Code:
@echo off
 
start "" "C:\Program Files (x86)\Sublime Text 2\sublime_text.exe"
start "" "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
start C:\xampp\xampp-control.exe
Why do you have the first set of quotes? it's unnecessary
 

NSA

sudo apt-get thefuckout.tar.gz
Dec 9, 2011
715
86
Nice you can copy n paste

Why do you have the first set of quotes? it's unnecessary
Actually, Macemore, there are two types of quotes.
The ones I copied from his, Windows couldn't read, which is why they were appearing as 'o's or whatever.
Replace them with "" it'll work.

Mate.
 

IntactDev

Member
Nov 22, 2012
399
71
Actually, Macemore, there are two types of quotes.
The ones I copied from his, Windows couldn't read, which is why they were appearing as 'o's or whatever.
Replace them with "" it'll work.

Mate.
Thanks for clarifying that, as swore that I just took your code :(
 

Users who are viewing this thread

Top