删除笔记本电脑密码

删除笔记本电脑密码

可能重复:
Windows:如何重置管理员密码?

我有一台笔记本电脑,它的密码是通过指纹扫描仪输入的,密码是我弟弟的指纹,他已经出国了。我想登录笔记本电脑,但登录不了。那么我该怎么做才能解决这个问题呢?

答案1

您可以尝试下载奥弗克拉克并将其刻录到 CD/DVD 上。从中启动,它将获取机器上的 Windows 密码。

基本上,这将采用 NTLM 哈希并根据彩虹表运行它们以尝试获取密码。

但是,如果您只能通过指纹登录,则这将不起作用。

答案2

这些信息取自于studyhat.blogspot.co.uk可能有帮助。

使用 linux livecd 重置 windows 密码

  1. 将 livecd 放入 cd/dvd 驱动器并从 livecd 启动您的 Windows 机器。(我们将要使用的应用程序是chntpw。在此示例中,我们将使用 fedora/ubuntu livecd。)
  2. 启动后,打开终端并检查名为 的工具chntpw。如果没有,你可以使用以下命令安装它:

    $ yum 安装 chntpw

    • 如果你正在使用 ubuntu live cd:

    $ sudo apt-get 安装 chntpw

  3. 工具准备就绪后,挂载 Windows 分区。使用“fdisk -lu”检查应挂载哪个分区。要挂载 /dev/sda1(假设您的 Windows 分区位于 /dev/sda1 上),请使用以下命令:

    $ su mount /dev/sda1 /mnt

  4. 在 Windows 分区上找到 SAM 文件。通常它位于 Windows/System32/config。在 SAM 文件上运行 chntpw。

    $ cd /mnt/Windows/System32/config

  5. 列出 SAM 记录中的所有用户

    $ chntpw -l SAM

  6. 以交互方式编辑用户凭证

    $ chntpw -i SAM

  7. 按照 chntpw 的向导清除管理员或您想要访问的任何用户的密码。

  8. 保存更改并重启机器。管理员和您已清除密码的用户无需密码即可访问 Windows。请确保取出 LiveCD,否则机器将启动 LiveCD 而不是 Windows。

chntpw help:  

chntpw version 0.99.6 080526 (sixtyfour), (c) Petter N Hagen
chntpw: change password of a user in a NT/2k/XP/2k3/Vista SAM
file, or invoke registry editor.

chntpw [OPTIONS] [systemfile] [securityfile] [otherreghive] [...]
 -h    This message
 -u    Username to change, Administrator is default
 -l    list all users in SAM file
 -i    Interactive. List users (as -l) then ask for username to change
 -e    Registry editor. Now with full write support!
 -d    Enter buffer debugger instead (hex editor),
 -t    Trace. Show hexdump of structs/segments. (deprecated debug function)
 -v    Be a little more verbose (for debuging)
 -L    Write names of changed files to /tmp/changed
 -N    No allocation mode. Only (old style) same length overwrites possible

相关内容