Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Batch echo sound
Name: AK12 Date: October 17, 2008 at 07:17:15 Pacific OS: Windows XP Pro SP3 CPU/Ram: T7200 @ 2.0GHz , 2.5 Product: DELL Precision M90
Comment:
Hi
As the title says I would like to incorporate some sounds in a batch.
I know it can be done, but not how. I already read this post , http://www.computing.net/answers/pr... But it isn't what I want to do or would be a plan B solution...
I think we can use the BIOS speaker, and play different frequencies or something like that.
Summary: Hi Guys, i would like to use a batch file to echo a choice menu for my dir d:\ so that it will be listed as 1) folder1 (name of folder) 2) folder2 and depending on the numbers of file, the number of ...
Summary: Hi M2 and mitchell311, To explain why the *correct* ultimate version is what I posted run the following sample batch @Echo Off Echo FileName is %* For %%A in (%*) Do (Echo n=%%~nA x=%%~xA) assumed the...
Summary: Here's a batch: @echo off for /f %%i in (myfile.txt) do ( set line=%%i call :parser) goto :eof :parser set parsed1=%line:~0,9% set parsed2=%line:~9,33% echo %parsed1% %parsed2% >>newfile.txt ...