Changes between Version 3 and Version 4 of FAQ_nuggets


Ignore:
Timestamp:
May 18, 2011, 2:41:50 AM (14 years ago)
Author:
Fred T. Hamster
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FAQ_nuggets

    v3 v4  
    66
    77== Stop the Beeps ==
     8
    89Some Windows operating systems still insist on using the speaker in the case to make horrid sounding beeps.
    910
     
    1112
    1213[http://www.itworld.com/nl/win_admin_tips/02012002 Stop the Beeps]
     14
     15== How to Keep VMWare Virtual Machines in a Windows Domain ==
     16
     17VMWare machines will often lose their membership in a Windows Domain (not to be confused with an Internet Domain) for a complex variety of reasons.
     18
     19There seems to be no outright cure except for carefully and regularly snapshotting the machine, and never reverting to a very old snapshot.  Sometimes this really isn't possible.
     20
     21One partial remedy is to disable the password change activity in Windows to reduce the chances of your VM being dropped from the domain.  This is done by adding a value in the registry key:
     22
     23  HKEY_LOCAL_MACHINES\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters
     24
     25called DisablePasswordChange, which should be of type REG_DWORD and have a value of 1.
     26
     27This can be done from the Windows command line with this command:
     28
     29   reg add HKLM\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters /v DisablePasswordChange /t REG_DWORD /d 1 /f
     30
     31
     32
     33
     34