vista磁盘使用100%_如何在Windows 7或Vista中创建和使用密码重置磁盘

vista磁盘使用100%

vista磁盘使用100%

Forgetting your password can be an extremely frustrating situation, and we’ve already shared how to reset your password with the Ultimate Boot CD as well as the System Rescue CD, but you can prevent the situation entirely by creating a password reset disk.

忘记密码可能是一个非常令人沮丧的情况,我们已经与Ultimate Boot CD和System Rescue CD共享了如何重设密码的方法,但是您可以通过创建密码重设盘来完全避免这种情况。

The Password Reset Disk is essentially a small file that can be used to reset your password, even if you have changed your password since creating the reset disk. This can be extremely valuable for preventing any embarrassing situations.

密码重设盘本质上是一个小文件,即使您在创建重设盘后更改了密码,也可以用来重设密码。 这对于防止任何尴尬的情况非常有价值。

Naturally, you should store this in a very safe place, since it can be easily used by anybody to reset the password and gain access to your account.

自然,您应该将其存储在非常安全的地方,因为任何人都可以轻松地使用它来重置密码并获得对您帐户的访问权限。

image

Of course, Windows has supported the use of a Password Reset Disk for a while, but Windows Vista makes it really simple to use since you can use a USB Flash drive to store the reset file instead of a floppy.

当然,Windows一段时间以来一直支持使用密码重设盘,但是Windows Vista使其使用起来非常简单,因为您可以使用USB闪存驱动器来存储重设文件而不是软盘。

Creating the Password Reset Disk

创建密码重置磁盘

Open up User Accounts by clicking on your User icon in the start menu, and then select the link for “Create a password reset disk” over on the upper left-hand side.

通过单击开始菜单中的用户图标打开用户帐户,然后在左上角选择“创建密码重置磁盘”链接。

image

You’ll be greeted with a wizard that gives you basic information about how it works… just click Next.

您将看到一个向导,该向导向您提供有关其工作原理的基本信息……只需单击“下一步”。

image

Now you can select the removable drive to create the password key on:

现在,您可以选择可移动驱动器以在以下位置创建密码密钥:

image

You’ll be asked for your current password, which we’ll hope you haven’t forgotten.

系统将要求您输入当前密码,希望您不要忘记该密码。

image

And that’s all there is to it… just remember to save this disk in a safe place.

这就是全部内容,只是要记住将此磁盘保存在安全的地方。

image

If you actually look at the drive, you’ll see a file named userkey.psw that contains your reset key, and you could backup the file to another location if you wanted to.

如果您实际查看驱动器,则会看到一个名为userkey.psw的文件,其中包含您的重置密钥,并且您可以将文件备份到另一个位置。

image

Logically, you could then copy this file to another USB drive and use it to reset the password.

从逻辑上讲,您可以将该文件复制到另一个USB驱动器,然后使用它来重置密码。

Resetting Your Password

重设密码

Once you have a password reset disk, you can use it easily the next time you forget your password… once you’ve typed the wrong password Vista will show a “Reset password” link below the login box.

一旦有了密码重设盘,下次忘记密码时就可以轻松使用它。一旦输入错误的密码,Vista将在登录框下方显示“重设密码”链接。

image

You’ll want to make sure you already have the USB flash drive inserted at this point, or else you’ll get an error message:

您需要确保此时已经插入USB闪存驱动器,否则会收到错误消息:

image

If you do already have the disk inserted, you should get this wizard screen instead.

如果您确实已经插入了磁盘,则应该获得此向导屏幕。

image

You’ll want to pick the right disk if you have more than one…

如果您有多个磁盘,则需要选择正确的磁盘…

image

And then type in a new password and a hint for the password.

然后输入新密码和密码提示。

image

That’s all there is to it.

这里的所有都是它的。

image

Note that you don’t need to create a new password reset disk after using it to change your password.

请注意,使用它更改密码后,无需创建新的密码重置磁盘。

翻译自: https://www.howtogeek.com/howto/windows-vista/how-to-create-and-use-a-password-reset-disk-in-windows-vista/

vista磁盘使用100%

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/278816.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Nginx服务状态的监控

一、安装Nginx 使用源码编译安装,包括具体的编译参数信息。 正式开始前,编译环境gcc g 开发库之类的需要提前装好。 安装make: yum -y install gcc automake autoconf libtool make 安装g: yum install gcc gcc-c 一般我们都需要先装pcre, zl…

计算机二级高级应用这么难,计算机二级考试越来越难的实锤!真实数据告诉你到底难在哪里?...

今年3月考试成绩暂时未公布(预计在5月中旬发布),通过率暂时无法得知。但是根据考后后台反馈情况,今年通过率可能再创新低。不管你是不是有感知,计算机二级通过率的确在逐年降低。近3年难度越来越大每次考试结束后后台评论最多的就是“今年的考…

windows 系统监视器_使用Windows 7中的可靠性监视器对计算机问题进行故障排除

windows 系统监视器Windows Vista introduced us to the Reliability and Performance Monitor utility to help keep track of hardware and software crashes. It’s now a stand alone utility in Windows 7 and we will take a look at how to access and use it. Windows …

4-8 string

1、常用的string模块 1 import string2 3 # 26个小写字母4 print(string.ascii_lowercase) 5 # abcdefghijklmnopqrstuvwxyz6 7 # 26个大写字母8 print(string.ascii_uppercase) 9 # ABCDEFGHIJKLMNOPQRSTUVWXYZ 10 11 # 10个数字 12 print(string.digits) # 0123456789 1…

powerpoint预览_如何安排PowerPoint幻灯片的时间以进行更有效的演示

powerpoint预览Delivering a presentation is not just about giving good slides, it is also about making sure that our presentation finishes by the time our audience wants to have their tea break—so practicing how long to speak for each slide is essential fo…

【小程序踩坑系列5】小程序内多重调用原生promise,无返回,无报错,代码卡住...

作者: 蒋欢 问题: 在部分IOS机型上,小程序内使用原生promise实现异步,在嵌套四层后,Promise的resolve和reject均无返回。 环境: 用户机型:iPhone 7 系统版本:IOS 10.3.3 微信版本:6.…

计算机仿真技术的大学,大学计算机仿真技术结课论文

计算机仿真技术是电子与信息专业中重要的专业学科。下面是学习啦小编为大家整理的大学计算机仿真技术结课论文,供大家参考。大学计算机仿真技术结课论文篇一《 复杂系统计算机仿真研究 》现代社会发展中,复杂系统所涉及的领域包括军事、医疗、政治、工程…

统计nginx日志里访问次数最多的前十个IP

awk {print $1} /var/log/nginx/access.log | sort | uniq -c | sort -nr -k1 | head -n 10 转载于:https://www.cnblogs.com/new-journey/p/10038056.html

thread线程栈size及局部变量最大可分配size【转】

转自:http://blog.csdn.net/sunny04/article/details/46805261 版权声明:本文为博主原创文章,未经博主允许不得转载。 进程是操作系统的最小资源管理单元, 线程是操作系统最小的执行单元。 一个进程可以有多个线程, 也…

在Windows XP中对系统文件(页面文件和注册表)进行碎片整理

In the pursuit for performance, making sure your drive isn’t fragmented is a regular task. The problem is that Windows XP doesn’t allow certain system files to be defragmented without commercial software. What about free solutions? 在追求性能时&#xff…

计算机存有多少游戏,8G和16G的计算机内存之间有很大区别吗?玩游戏需要多少内存?...

大家好,我是Compatible Computer Home的小牛.计算机内存是除CPU外最重要的组件之一. 运行大型软件和多任务处理时,计算机内存量直接影响计算机的流畅性. 许多玩家不知道什么时候第一次购买计算机. 小牛会在今天与您讨论要购买多少内存来购买计算机.首先&…

ubuntu 配置mycat

https://blog.csdn.net/leisure_life/article/details/78611594 这篇博主写的非常好,我找了很久 都解决不了,最后按照他的步骤解决了问题。 其中有几个问题, 运行mycat的时候总是失败,ps不到在运行, 使用sudo ./mycat…

计算机程序设计vb课后题,《VB程序设计》课后题答案

《VB程序设计》课后题答案第二章一、问答题1.叙述建立一个完整的应用程序的过程。答:界面设计编写事件过程代码 运行、调试 保存文件2.当建立好一个简单的应用程序后,假定该工程仅有一个窗体模块。问该工程涉及到几个文件要保存?若要保存该工…

用SmarterFox替换Internet Explorer的“加速器”

If you’ve had to use Internet Explorer 8, you’ll have noticed a couple of things. It’s getting much easier to use due to its growing number of similarities to Firefox, and it uses a clever feature called the “Accelerator” to try and give it a leg up o…

Win7下搭建外网环境的SVN服务器

最近想跟一帮朋友做点东西,由于几个朋友都身处异地,要想实现版本控制,只能自己搭建一个小的服务器,通过互联网环境来实现版本控制了。本来也在网上找了好多资料,但是总是缺少一些必要的信息,导致最后连接不…

如何在VMware Player中设置和安装Windows Home Server“ Vail”

The new Windows Home Server Beta is available to the public for testing, and you might not have an extra machine to install it on. Here we take a look at using the free VMware Player to install it so you can test it out. 新的Windows Home Server Beta可供公众…

第四章作业

1. 贪心算法: 理解:所谓“贪心”,即在每一步的求解中求得问题的最优解,成为当前局部问题的最优解。但与动态规划问题不同的地方在于,动态规划会根据整体最优解的情况与之前的解作比较,并选取整体最优解&…

三年级计算机击键要领教案,闽教版信息技术三上《下行键操作》教案

闽教版信息技术三上《下行键操作》教案教学目标[知识目标]:了解和掌握下行键的键位分布。[技能目标]:正确掌握下行键击键的姿势和指法。[情感目标]:培养学生养成正确的键盘操作习惯。[重点和难点]重点:了解下行键的手指分工 。难点…

tabnavigator_使用TabNavigator在Firefox中享受桌面Alt-Tab样式导航

tabnavigatorDo you use Alt-Tab window switching for your Windows desktop and find yourself wishing for that same functionality in Firefox? Now you can enjoy all that switching goodness in your browser with TabNavigator. 您是否在Windows桌面上使用Alt-Tab窗口…

解决vue单页路由跳转后scrollTop的问题

作为vue的初级使用者,在开发过程中遇到的坑太多了。在看页面的时候发现了页面滚动的问题,当一个页面滚动了,点击页面上的路由调到下一个页面时,跳转后的页面也是滚动的,滚动条并不是在页面的顶部 在我们写路由的时候做…