How to beep using PC speaker?

Arseni Mourzenko picture Arseni Mourzenko · Oct 9, 2012 · Viewed 19.3k times · Source

I want to make a beep sound using PC speaker in C#. When using the following code:

[DllImport("kernel32.dll", EntryPoint = "Beep", SetLastError = true,
ExactSpelling = true)]
public static extern bool Beep(uint frequency, uint duration);

static void Main()
{
    while (true)
    {
        Beep(1000, 500);
        Thread.Sleep(2000);
    }
}

instead of beeping through the PC speaker, it simply outputs a sound of a given frequency and duration to the default sound device (as a headset for example). The same thing happens when using Console.Beep().

Why?

Notes:

  • The PC speaker is on. When I start the PC, it beeps.

  • The OS is Windows 8.

Answer

Matthew Watson picture Matthew Watson · Oct 9, 2012

From Windows 7 onwards, you can no longer easily make sound via the internal speaker.

For Windows 7, we resolved the issue completely – we moved all the functionality that used to be contained in Beep.Sys into the user mode system sounds agent – now when you call the Beep() API instead of manipulating the 8254 chip the call is re-routed into a user mode agent which actually plays the sounds.

[…]

There were also some unexpected consequences. The biggest was that people started noticing when applications called Beep(). They had placed their PCs far enough away (or there was enough ambient noise) that they had never noticed when their PC was beeping at them until the sounds started coming out their speakers.

See here for details:

https://docs.microsoft.com/en-us/archive/blogs/larryosterman/whats-up-with-the-beep-driver-in-windows-7