By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!>I want to turn off the beep and set the options *BeepFreq* and *BeepLength*
>to Zero
>
> But it does beep by some commands: *type ShrAlias.exe* (just as exsample)
>
> Is there a way to fully deaktivate the beep without deaktivate the windows
> beep.sys in device manager?
Jack wrote:
|| I want to turn off the beep and set the options *BeepFreq* and
|| *BeepLength* to Zero
||
|| But it does beep by some commands: *type ShrAlias.exe* (just as
|| exsample)
||
|| Is there a way to fully deaktivate the beep without deaktivate the
|| windows beep.sys in device manager?
When you send the character BEL (keyboard: control-G, ASCII: 7) to standard
output, as e.g. the TYPE command does, by design of the character code set
it imitates the ringing of a bell on the internal speaker of all PCs,
starting with the original IBM PC. This cannot be turned off without
disconnecting the wires to the speaker, and has no relationship to the BEEP
command.
BTW, the TYPE command is intended only to send a text file to STDOUT, not a
binary one such as ShrAlias.exe. Using TYPE to display any text file that
does not include a BEL character will not cause beeps.
--
HTH, Steve