RSS

Tag Archives: reset password

Reset DVR admin password

If you forget the password of DVR, (in my case it was a xmeye DVR – boot splash image = HD iDVR) there is a way to reset it using a super password.

Open DVR and enter wrong password until you get the error “User locked” then download the following app from google play store : CCTV Password Hack.

  • Open the app and select “DVR/NVR password reset”
  • Then select your DVR brand (in my case: xmeye).
  • scroll down, there are two options one is 8 digit code and the other is date method. choose the date method
  • Enter the captcha code
  • Enter the current date shown in DVR, then click generate code.
  • Use the code as admin password.
  • DVR will automatically restart and all user profiles will be cleared.
  • Open with default password (blank)
  • Configure profiles as you need.

Above file is an ISO file. Inside the ISO there is a RAR file. Password for RAR file is : 123

 
Leave a comment

Posted by on November 26, 2020 in Windows

 

Tags: , , , , , ,

Reset Windows 2012R2 local administrator password

Boot from Microsoft Windows Server 2012R2 DVD/ISO.
From the Windows Setup menu, click “Next”.
Select “Repair your computer”.
Click on “Troubleshoot”.
Under Advanced options, click “Command Prompt”.
At the command prompt, run the following commands:

c:
cd Windows\System32
ren Utilman.exe Utilman.exe.old
copy cmd.exe Utilman.exe

Close the command prompt, remove DVD/ISO and then reboot the system.
The server should now boot and present the logon screen.
Press Windows Key + U.
At the prompt you can change the password, by typing the following command:

net user administrator Password123

This will set the password for the Administrator user to be Password123 (case sensitive).

Now repeat the DVD/ISO boot steps and open command prompt above and run the following:

c:
cd Windows\System32
del Utilman.exe
ren Utilman.exe.old Utilman.exe

Done!

 
Leave a comment

Posted by on October 22, 2017 in Windows

 

Tags: , ,

Reset a Windows 10 password with CMD

requirement = installation Disk of any windows 7,8,8.1,10

boot into the boot disk. instead of install we will select repair.

then go to trouble shoot options. search for cmd

when you find it. launch it. by default cmd will open to a directory name x:> we will need to change that to the drive where windows is installed. to do this do the following
type in    c:
this will get us into C drive. type in dir to list all the content. if the list doesn’t show the items of Windows partition. you are not in the right drive. change the drive, D: or E: do this until you find the drive.

now we will move to the the system32 folder cd windows\system32 when we get here. rename the osk.exe file to osk.old. to do this run the follwing command.

rename osk.exe osk.old

now rename cmd.exe to osk.exe
same as above
rename cmd.exe osk.exe

As per design when we are on the login screen of windows there is a on screen keyboard (osk.exe) available to us. by following the above steps we have just replaced that keyboard with command prompt.

now restart and boot into the system (not the boot disk). when we are on the login screen with the user account to which we forgot the password.

open the accessibility option and click on on screen keyboard. which will launch cmd.exe

to list all users of the system :

net user

when we know the actual username of the account we want to change password.

net user [USERNAME] *

[USERNAME] refer to the account whose password we are trying to change.

if you are planning to change password and enable the built in administrator
net user administrator /active:yes
is a compulsory step.

after running the above command a new password prompt is shown. assign a new password for the account. close the cmd. and use the new pass to login.

after this don’t forget to change everything as they were.

to do this; boot into the os-disk and undo all the changes.

rename osk.exe cmd.exe
rename osk.old osk.exe

deactivate the built in administrator if you no longer need it.

thats all!

 
2 Comments

Posted by on September 28, 2017 in Windows

 

Tags: , , , , ,