Operating System - OpenVMS
1753757 Members
4909 Online
108799 Solutions
New Discussion юеВ

resetting VMS password history for an individual

 
SOLVED
Go to solution
owen clarke
Occasional Advisor

resetting VMS password history for an individual

Hi All - our password history on system is set to 8. Is there anyway to decrease password history for an individual without setting no
expiry in uaf?
3 REPLIES 3
Hein van den Heuvel
Honored Contributor
Solution

Re: resetting VMS password history for an individual


Here is what I do on occasion, to trash the history of a single user (mostly myself):

$OPEN/READ/WRITE/SHARE=WRITE file SYS$SYSTEM:VMS$PASSWORD_HISTORY.DATA
$READ/DELE/KEY="username" file record
$SHOW SYMB record ! Just to be sure
$WRITE/SYMB file record ! If you regret it
$CLOSE file


fwiw,
Hein.
Allan Bowman
Respected Contributor

Re: resetting VMS password history for an individual

If you want to completely disable the password history for the individual user, use Authorize to set the flag DISPWDHIS for that user. This will disable the checking of the password history while still allowing a password expiration.

Allan in Atlanta
owen clarke
Occasional Advisor

Re: resetting VMS password history for an individual

question answered - thanks!