utility for users to determine their own password age

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
 
P

Pegasus \(MVP\)

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top