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:42:49 AM (15 years ago)
- Author:
-
Fred T. Hamster
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
|
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 | |