我是新手,我編寫了一個批處理程序,當我啓動這個程序時,嘗試使蒸汽,起源,疊加和Battle.net運行。但是它只會啓動他們的CMD,我認爲我做錯了什麼。下面是我的程序:如何在沒有打開cmd的情況下打開steam/etc?
@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
你確定要四次啓動完全相同的命令行嗎? – aschipfl