utility for users to determine their own password age

  • Thread starter Thread starter Simon Church
  • Start date Start date
S

Simon Church

Hello,

is there an easy way for my users to determine the age of
their own passwords, without having to ask the help desk
for this? We are about to implement a new domain password
change policy. Some of our VPN users have non standard
machines, whcih means they will not receive any of the 15
day warnings. Therefore, I would like to give them a
simple script or free utiltiy so that they can run their
own checks.

Please advise.

Simon
 
You can roll your own. Simply put these lines into
a batch file, then create a shortcut to this batch file:

@echo off
echo.
echo Account details for %UserName%
echo =========================
net user %UserName% | find /i "expires"
echo.
pause.
 
Back
Top