Changes between Version 4 and Version 5 of FAQ_nuggets
- Timestamp:
- May 18, 2011, 2:42:49 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FAQ_nuggets
v4 v5 21 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 22 23 {{{ 23 24 HKEY_LOCAL_MACHINES\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters 25 }}} 24 26 25 27 called DisablePasswordChange, which should be of type REG_DWORD and have a value of 1. … … 27 29 This can be done from the Windows command line with this command: 28 30 31 {{{ 29 32 reg add HKLM\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters /v DisablePasswordChange /t REG_DWORD /d 1 /f 33 }}} 30 34 31 35