Windows 7:如何去除壁纸上的测试模式水印?

Windows 7:如何去除壁纸上的测试模式水印?

重启电脑后,我发现Windows 7的添加了水印墙纸在右下角。上面写着:

Test Mode
Windows 7
Build 7600

这是 Windows 7 的正版,我已经使用了一年多了。为什么现在会出现这个水印?我该如何去除它?

答案1

看起来您或任何程序已将 Windows 7 设置为测试签名模式。如果您需要安装未签名的驱动程序,通常会这样做。由于 Windows 7 不允许安装未签名的内核模式驱动器(允许安装未签名/不受信任的用户模式驱动程序),因此您需要启用“测试签名”模式才能安装它。

要验证您是否在测试签名模式下运行,请打开提升的命令提示符并输入:

bcd编辑工具

然后查看该Windows Boot Loader部分并检查testsigning参数。它可能看起来如下:

Windows Boot Loader
-------------------
identifier              {current}
device                  partition=C:
path                    \Windows\system32\winload.exe
description             Windows 7
locale                  en-US
inherit                 {bootloadersettings}
recoverysequence        {fa491940-8aab-11de-99e7-fd0bcc610d86}
recoveryenabled         Yes
testsigning             Yes
osdevice                partition=C:
systemroot              \Windows
resumeobject            {fa49193e-8aab-11de-99e7-fd0bcc610d86}
nx                      OptOut
debug                   No

要禁用测试签名模式,请在提升的命令提示符下键入以下命令:

bcdedit -set TESTSIGNING OFF

现在,测试签名行应该消失或显示为No

Windows Boot Loader
-------------------
identifier              {current}
device                  partition=C:
path                    \Windows\system32\winload.exe
description             Windows 7
locale                  en-US
inherit                 {bootloadersettings}
recoverysequence        {fa491940-8aab-11de-99e7-fd0bcc610d86}
recoveryenabled         Yes
testsigning             No
osdevice                partition=C:
systemroot              \Windows
resumeobject            {fa49193e-8aab-11de-99e7-fd0bcc610d86}
nx                      OptOut
debug                   No

警告:如果您最近安装了未签名的驱动程序或连接了仅带有未签名的驱动程序的设备,则禁用测试模式可能会损坏设备或使其无用,因为驱动程序将不再加载。

如果您不知道是什么原因导致测试模式被启用,强烈建议您运行防病毒和反 rootkit 工具,如 GMER。最近发现一个 rootkit 会悄悄启用测试模式,以便将未签名的驱动程序安装到 Windows x64 系统中(32 位版本的 Windows 不那么严格,允许在内核模式下加载具有无效签名的驱动程序)。

答案2

打开(读取:提升的)命令提示符并输入bcdedit

如果您启动的选项(可能只有一个)启用了“测试签名”或类似功能,请将其禁用。

bcdedit /set testsigning off

应该可以正常工作。

答案3

这里有一个微软发帖这给出了评论者提到的方法的确切语法bcdedit。您需要关闭“测试签名”模式。

相关内容