= FAQ Nuggets = This is a collection of questions that occasionally have plagued us, some of them repeatedly. Hopefully some of these things will be useful for you, developer or not. == Stop the Beeps == Some Windows operating systems still insist on using the speaker inside the computer case to make horrid sounding beeps. This can drive oneself and one's office mates quite mad. Silence is golden. The steps are quite simple. They work on Windows XP at least. * Go to ''Control Panel'', choose ''System'', then ''Hardware'', and finally the ''Device Manager''. * Choose ''Show hidden devices'' under the section ''Non- Plug & Player drivers'' * Right click on ''Beep'' and disable it. This should cure it! Here's an article on how to disable the beeps which might have been our source material for the above steps... [http://www.itworld.com/nl/win_admin_tips/02012002 Stop the Beeps] == How to Keep Virtual Machines in a Windows Domain == VMWare and HyperV virtual machines will often lose their membership in a Windows Domain (not to be confused with an Internet Domain) for a complex variety of reasons. One of these reasons is the automatic password change procedure followed between the windows domain client and the domain server. In this process, the domain client (your PC or VM) renegotiates a new secret password with the domain server, which they both "remember" for future interactions. Disabling the password changing process is an important partial remedy to the lost domain membership problem. By disabling the automatic password change, the chances for your VM to be dropped from the domain are greatly reduced. The hidden password in question is a shared secret between the domain server and your machine. It is already protected as well as Windows can protect any password, and thus it seems relatively safe to stop updating this password for test machines that are continually reverted. This change is only needed on the client side, not on the domain controller. The domain password change feature is disabled by adding a value in the registry key at: {{{ HKEY_LOCAL_MACHINES\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters }}} called {{{DisablePasswordChange}}} which should be of type {{{REG_DWORD}}} and have a value of 1. This can be done from the Windows command line with this command: {{{ reg add HKLM\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters /v DisablePasswordChange /t REG_DWORD /d 1 /f }}}