- A service application that changes the admin password regularly
- Posted by benzida badreddine \(yahoo account\) on April 15th, 2008
Hello;
Does any one know if there is a software that if I install it as a service,
it will change the administrator password everyday for example at 00:00 with
a generated password using the computer name and the date and maybe other
parameters;
I've tried to program one using delphi, too hard for me
with VB, it is harder.
- Posted by Anteaus on April 18th, 2008
Changing the password is easiest accomplished with:
net user Administrator {new password}
Note that this must be run under an account which has Admin or System
priveleges.
To do this programmatically, take a look at AutoIt.
http://autoitscript.com
"benzida badreddine (yahoo account)" wrote:
- Posted by Kam on May 7th, 2008
I'm not an expert at this, but here are 2 lines that a consultant provided as
part of a script that generates a unique name for a log file:
set unique=%date:~,-8%-%date:~+3,-5%-%date:~+6%
set passwd=%unique%-%computername%
See what value you get for %unique% each time you run it.
"Anteaus" wrote: