去除Msconfig的开机提示
大家都知道,只要修改过msconfig文件,下次开机时就会出现烦人的提示。
大家可以使用这个VBS脚本来去除提示
‘xp_nomsconfig.vbs – Stos the Selective Startup warning
‘Copyright 2002 – Doug Knox
‘downloaded from http://www.dougknox.comOn Error Resume Next
Err.ClearSet 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://harde.org/blog/wp-content/uploads/2008/10/xp_nomsconfig.vbs