Question:
Is there a way to suppress the TSS7003W USE OF ACCESSORID EXPIRES ON mm/dd/yy message?
In other words, is there a way to set the new password definition to not warn about the password expiration?
Answer:
To achieve this, code WARN=00 in the CA Top Secret control option NEWPW().
For example, if NEWPW() is currently set as follows:
NEWPW(MIN=8,WARN=03,MINDAYS=01,NR=1,ID,RS,FA,FN)
you can modify it like it follows:
TSS MODI NEWPW(MIN=04,MAX=008,WARN=00,MINDAYS=01,MC)
This will take immediate effect. The TSS MODIFY command is only valid until the next recycle of CA Top Secret. To make the change permanent, change the NEWPW control option setting in the CA Top Secret parameter file as follows:
NEWPW(MIN=04,MAX=008,WARN=00,MINDAYS=01,MC)
Additional Information:
Refer to the CA Top Secret Control Options Guide for details regarding the NEWPW() control option.