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
When Steam makes that sound, it means you have to either close out the prompt or agree to whatever it's telling you to do.
Sorry, bro. You CAN remove that idiotic sound.
To remove that sound just rename the file C:\Program Files (x86)\Steam\resource\warning.wav or delete it.
However... Steam checks its files on each startup and will replace it with the original one. This slows down the bootup of steam and you have to do it again.
I wrote two short batchfiles to remedy this situation.
You need two batch files, Steam.bat and Steam2.bat. When you start Steam.bat a copy of the original wav file is created and after steam is started it gets removed. After closing Steam the wav file will be restored again so you don't have to wait for the lenghty steam process on each start.
Steam.bat
copy "C:\Program Files (x86)\Steam\resource\warning.wav" "C:\Program Files (x86)\Steam\resource\warning.bak"
start "" /MIN "C:\Program Files (x86)\Steam\Steam2.bat"
:loop
tasklist /FI "IMAGENAME eq SteamService.exe" 2>NUL | find /I /N "SteamService.exe">NUL
if "%ERRORLEVEL%"=="0" goto delwav
goto loop
:delwav
del "C:\Program Files (x86)\Steam\resource\warning.wav"
exit
Steam2.bat
call "C:\Program Files (x86)\Steam\Steam.exe"
copy "C:\Program Files (x86)\Steam\resource\warning.bak" "C:\Program Files (x86)\Steam\resource\warning.wav"
exit
I put Steam2.bat where my Steam.exe is and Steam.bat on the desktop.
it's quick and dirty.