ChatterBank3 mins ago
Laptop help
8 Answers
Ive forgot my password for my laptop,does anyone know how i can get into my laptop via another way so i can change password. Its running Vista
Thanks
Thanks
Answers
There are various free downloads on this site - but I'm not sure how reliable they are
http:// www.brothers of...ty/pass word_recover y/
I have used this one in the past and it worked fine without causing any other problems
ht tp://www.rec overwin...wo rd.com/purch ase.htm
http://
I have used this one in the past and it worked fine without causing any other problems
ht
18:36 Sat 14th May 2011
There are various free downloads on this site - but I'm not sure how reliable they are
http://www.brothersof...ty/password_recovery/
I have used this one in the past and it worked fine without causing any other problems
http://www.recoverwin...word.com/purchase.htm
http://www.brothersof...ty/password_recovery/
I have used this one in the past and it worked fine without causing any other problems
http://www.recoverwin...word.com/purchase.htm
Try reasearching and using the Net User command or if your to lazy but more trustful use the batch job below. Just Copy/Paste into notepad and save as a .bat.
ECHO OFF
COLOR 0A
TITLE PASSWORD CHANGER
CHDIR\
:A
SET /p N=Account name:
SET /p M=New password:
ECHO This is completely irreversible.
ECHO Are you sure you wish to continue? [Yes/No]
SET /p A=
IF /I A == YES GOTO B
IF /I A == NO EXIT
ECHO ERROR
PAUSE
EXIT
:B
NET USER
ECHO Done.
PAUSE
ECHO Do you want to change another password? [Yes/No]
SET /p B=
IF /I== YES GOTO A
IF /I== NO EXIT
ECHO ERROR
PAUSE
EXIT
ECHO OFF
COLOR 0A
TITLE PASSWORD CHANGER
CHDIR\
:A
SET /p N=Account name:
SET /p M=New password:
ECHO This is completely irreversible.
ECHO Are you sure you wish to continue? [Yes/No]
SET /p A=
IF /I A == YES GOTO B
IF /I A == NO EXIT
ECHO ERROR
PAUSE
EXIT
:B
NET USER
ECHO Done.
PAUSE
ECHO Do you want to change another password? [Yes/No]
SET /p B=
IF /I== YES GOTO A
IF /I== NO EXIT
ECHO ERROR
PAUSE
EXIT
-- answer removed --