Disable system beeps in VMWare Workstation
Written by Christian on March 18, 2008 – 9:09 pm
After installing Windows Server 2008 (Longhorn) on a Virtual Machine, a system beep kept annoying me. The beep occurred with every system event.
There are two possibilities: turn it off for one session, or turn it off for good.
To turn it off for only one session, do the following:
- Click Start
- Click Run
- In the run box type
net stop beep
To turn off the beep permanently, do the following:
- Click Start
- Click Run
- In the run box type
sc config beep start= disabled (please note the space after the = !!)
To change the status of the beep again, type any of the following in the run box:
- sc config beep start= boot (for loading device driver by the boot loader)
- sc config beep start= system (for loading device driver by the kernel initialization)
- sc config beep start= auto (for starting service automatically at startup. Even when no one logs on)
- sc config beep start= demand (for starting service manually (default, when no start parameter is specified))
- sc config beep start= disabled (completely disables the service)
- sc config beep start= delayed-auto (for starting service after other “auto” services are started)
People who read this article, also read:
- Disable Data Execution Prevention in XP
- Windows Command Line Auto Completion
- SYSTEM process takes high CPU on server in VMWARE
Posted in VMWare |
October 22nd, 2008 at 7:31 pm
That didn’t work on my VM, I still get the beep. The command above states “success” but the beep won’t stop.
I’ve gone so far as removeing the beep from device manager (which worked on Win 2003) but haven’t had any success.
Any suggestions?
Thanks!
October 22nd, 2008 at 7:37 pm
Hi Chris,
what’s the OS you’re using? Vista, Windows 2008 or XP?