1

I'm wondering whether it's now possible to cause the physical PC speaker to beep in Windows 10. There are existing questions on this but their answers appear to be out-of-date; none of the methods mentioned cause a physical PC speaker to actually beep, but instead an artificial beep sound is generated from the sound card.

Is it now literally impossible to beep the physical PC speaker or is there still some esoteric way?

Jez
  • 3,028

1 Answers1

2

There are several method for causing a beep. I will describe below some DIY methods.

Method 1

Create a .bat file with the command echo ^G (meaning echo followed by CtrlG). Run it to make a beep.

Method 2

  • Run the Command Prompt (CMD)

  • Position to a folder

  • Enter the following command :

    copy con beep.txt
    

    Type the following : CtrlG, CtrlZ, Enter

  • To do a beep, use the command :

    Type beep.txt
    

Method 3

Use PowerShell Console.Beep Method :

powershell "[console]::beep(500,300)"
harrymc
  • 498,455