close
Warning:
Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.
- Timestamp:
-
May 18, 2011, 2:41:50 AM (15 years ago)
- Author:
-
Fred T. Hamster
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
|
v3
|
v4
|
|
| 6 | 6 | |
| 7 | 7 | == Stop the Beeps == |
| | 8 | |
| 8 | 9 | Some Windows operating systems still insist on using the speaker in the case to make horrid sounding beeps. |
| 9 | 10 | |
| … |
… |
|
| 11 | 12 | |
| 12 | 13 | [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 | |
| | 17 | VMWare 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 | |
| | 19 | There 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 | |
| | 21 | One 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 | |
| | 25 | called DisablePasswordChange, which should be of type REG_DWORD and have a value of 1. |
| | 26 | |
| | 27 | This 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 | |