去除Msconfig的开机提示

作者: harde 分类: 计算机 发布时间: 2008-10-06 23:13

大家都知道,只要修改过msconfig文件,下次开机时就会出现烦人的提示。

大家可以使用这个VBS脚本来去除提示

‘xp_nomsconfig.vbs – Stos the Selective Startup warning
‘Copyright 2002 – Doug Knox
‘downloaded from http://www.dougknox.com

On Error Resume Next
Err.Clear

Set WshShell = WScript.CreateObject(“WScript.Shell”)
WshShell.RegDelete “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\MSConfig”

If Err.Number <> 0 then
MsgBox “You may need Administrator permissions to run this script” & vbcr & “or the registry entry does not exist.”,4096,”Error!”
Else
MsgBox “The registry entry has been removed.”, 4096,”Done!”
End If
Set WshShell = Nothing 

如果不会写VBS

可以下载这个脚本

脚本来自http://www.dougknox.com

http://harde.org/blog/wp-content/uploads/2008/10/xp_nomsconfig.vbs

⬆️⬆️⬆️不要钱、不用登录、没有广告⬆️⬆️⬆️


如果文章对您有帮助,请至少点下⬆️⬆️⬆️上面⬆️⬆️⬆️的赞,您的鼓励是对我创作的最大支持。
如果没能帮到您,那么很遗憾,如果方便的话,还请在评论区告诉我为什么,谢谢。

⬇️⬇️⬇️下面这个要钱⬇️⬇️⬇️

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注