I am new to coding and I wrote a batch program to try to make steam, origin, uplay and Battle.net run when I launch this program. However it only launches their CMDs and I think I have done something wrong. Here is my program:
@echo off
echo starting steam.exe ...
start "C:\Program Files (x86)\Steam\Steam.exe"
timeout 2
echo starting battle.net.exe ...
start "C:\Program Files (x86)\Steam\Steam.exe"
timeout 2
echo starting origin.exe ...
start "C:\Program Files (x86)\Steam\Steam.exe"
timeout 2
echo starting uplay.exe ...
start "C:\Program Files (x86)\Steam\Steam.exe"
pause
try with :
If put in quotes the first argument is the title so you can put empty quotes as a first argument.