Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
(I don't know what code you're running or where you got the batch file).
Consider finding the line in the batch file and put the word start in front of the whole thing. This causes a fire and forget startup as far as processing the batch file is concerned and the command prompt window won't stick around.
the batch file came from this
https://support.steampowered.com/kb_article.php?ref=5114-MSCJ-8182
my concern is, is there any other way to close the command prompt without exiting steam?
I found the batch file and the line in the batch file (as I expected):
"C:\program files\steam\steam.exe" -login %SteamLogin% %SteamPassword%
Change it to:
start "C:\program files\steam\steam.exe" -login %SteamLogin% %SteamPassword%
When the batch file is processed the start command should launch steam and then move to the next line. The start command is designed to launch instead of wait for the command to finish (by manually exiting steam in this case).
Therefore like I said the command prompt window won't stick around because the batch file can get to the next statements while steam is starting up.