为啥我电脑里的自动更新开启按扭是灰色的,不能选择开启的呀?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为啥我电脑里的自动更新开启按扭是灰色的,不能选择开启的呀?相关的知识,希望对你有一定的参考价值。
可能我哪里给设置过了,自动更新按钮不能再一次开启了,也无法关闭了,在属性,系统下的自动更新按钮是灰色的,不能进行选择操作啦,请问哪位高手帮我解决这个问题,具体怎么去做呀?否则电脑总是显示你的计算机存在在风险,就是因为没有开户这个自动更新按钮呀>?
首先确保自动更新的服务开启:检查方法:依次单击"开始"--运行--输入"services.msc"打开服务管理,双击"AutomaticUpdates",点"启动"按钮并将"启动类型"设为"自动".
其次,可能是注册表限制了自动更新,可以用组策略更改:
单击“开始”-运行--gpedit.msc,打开组策略,
依次选择“计算机配置”-管理模板-WINDOWS组件--WINDOWS UPDATE,双击右边窗口“配置自动更新属性”,选择“未配置”即可。
还不行的话,重新打开选择“已启用”试试 参考技术A @echo off
title 修复 Windows XP 在线更新故障
cls
color 2f
echo.
echo 修复 Windows XP 在线更新故障
echo.
echo
echo.
echo 本程序可修复多种原因引起的 Windows XP 在线升级故障(不包括激活问题)。
echo.
date /t
echo.
echo 请在操作前检查当前的系统日期是否与真实日期有严重误差。
echo 当前日期正确否?正确则按任意键继续修复,否则请先纠正!……
pause>nul
echo.
echo 开始设置系统更新的相关服务启动类型为自动……OK!
sc config CryptSvc start= auto>nul 2>nul
sc config RpcLocator start= auto>nul 2>nul
sc config BITS start= auto>nul 2>nul
sc config wuauserv start= auto>nul 2>nul
net start BITS>nul 2>nul
net start CryptSvc>nul 2>nul
net start RpcLocator>nul 2>nul
net start wuauserv>nul 2>nul
echo 开始清除注册表中可能不完整的升级注册信息……OK!
rem reg export "HKLM\SOFTWARE\Microsoft\Updates\Windows XP" %SystemDrive%\WinXP系统升级列表备份.reg>nul 2>nul
rem reg delete "HKLM\SOFTWARE\Microsoft\Updates\Windows XP" /f>nul 2>nul
rem reg add "HKLM\SOFTWARE\Microsoft\Updates\Windows XP\SP1">nul 2>nul
rem reg add "HKLM\SOFTWARE\Microsoft\Updates\Windows XP\SP2">nul 2>nul
rem reg add "HKLM\SOFTWARE\Microsoft\Updates\Windows XP\SP3">nul 2>nul
echo 开始修复Ineternet选项相关设置……OK!
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v CertificateRevocation /t REG_DWORD /f /d "0x00000000">nul 2>nul
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v SecureProtocols /t REG_DWORD /f /d "0x00000028">nul 2>nul
reg delete "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\IntelliForms" /f>nul 2>nul
echo 开始修复相关系统文件……OK!
copy /y %SystemRoot%\system32\dllcache\Cryptui.dll %systemroot%\system32>nul 2>nul
copy /y %SystemRoot%\system32\dllcache\Certcli.dll %systemroot%\system32>nul 2>nul
copy /y %SystemRoot%\system32\dllcache\Asycfilt.dll %systemroot%\system32>nul 2>nul
copy /y %SystemRoot%\system32\dllcache\Oleaut32.dll %systemroot%\system32>nul 2>nul
copy /y %SystemRoot%\system32\dllcache\Olepro32.dll %systemroot%\system32>nul 2>nul
copy /y %SystemRoot%\system32\dllcache\Stdole2.tlb %systemroot%\system32>nul 2>nul
echo 正在取消系统目录的隐藏属性……OK!
attrib -s -h %windir%>nul 2>nul
attrib -s -h %windir%\system32 >nul 2>nul
attrib -s -h %windir%\system32\catroot2>nul 2>nul
echo 修复相关系统文件注册……OK!
regsvr32 /u /s softpub.dll
regsvr32 /u /s wintrust.dll
regsvr32 /u /s initpki.dll
regsvr32 /u /s dssenh.dll
regsvr32 /u /s rsaenh.dll
regsvr32 /u /s gpkcsp.dll
regsvr32 /u /s sccbase.dll
regsvr32 /u /s slbcsp.dll
regsvr32 /u /s mssip32.dll
regsvr32 /u /s cryptdlg.dll
regsvr32 /s softpub.dll
regsvr32 /s wintrust.dll
regsvr32 /s initpki.dll
regsvr32 /s dssenh.dll
regsvr32 /s rsaenh.dll
regsvr32 /s gpkcsp.dll
regsvr32 /s sccbase.dll
regsvr32 /s slbcsp.dll
regsvr32 /s mssip32.dll
regsvr32 /s cryptdlg.dll
Rem 修复 IE
rem rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 %windir%\Inf\ie.inf
echo.
echo 关闭相关服务并清除可能损坏的升级数据和记录……OK!
echo ================================================================
echo 注意:如果您手工修改了浏览器的缓存位置,请先手工清除浏览器缓存!
echo ================================================================
echo 任意键继续……
pause>nul
net stop CryptSvc>nul 2>nul
net stop RpcSs>nul 2>nul
del /f /s /q %systemroot%\system32\CatRoot2\>nul 2>nul
ren %systemroot%\system32\catroot2\Edb.log *.tst >nul 2>nul
net start cryptsvc>nul 2>nul
del /f /s /q "%USERPROFILE%\Local Settings\Temporary Internet Files\Content.IE5">nul 2>nul
del /f /s /q "%ProgramFiles%\Windowsupdate">nul 2>nul
echo.
echo 清除可能错误的升级记录……OK!
if exist %SystemRoot%\System32\catroot2bad\nul del /f /s /q SystemRoot%\system32\catroot2bad >nul 2>nul
if exist %SystemRoot%\System32\Catroot2\nul ren SystemRoot%\system32\catroot2 catroot2bad >nul 2>nul
del /F /S /Q %SystemRoot%\SoftwareDistribution\*.* >nul 2>nul
echo 禁用可能错误的HOSTS本地解析数据库……OK!
if exist %SystemRoot%\SYSTEM32\DRIVERS\etc\hosts ren %SystemRoot%\SYSTEM32\DRIVERS\etc\hosts hosts_bak>nul 2>nul
echo 修正WinUpdate更新提示“IEXPLORE错误”……OK!
regsvr32 /u /s wuv3is.dll
del "%ProgramFiles%\WindowsUpdate\wuv3is.dll">nul 2>nul
echo 正在重启相关服务……OK!
net start CryptSvc>nul 2>nul
net start RpcSs>nul 2>nul
echo 修复注册表相关条目……OK!
reg add "HKEY_LOCAL_MACHINE\Software\Microsoft\Non-Driver Signing" /v Policy /t REG_BINARY /d 00 /f>nul
cls>nul
color 1f
echo.
echo.
echo ================================================================
echo 修复完成!如果仍不成功,请重新启动计算机后再试图升级!
echo 任意键退出并立即试图在线更新……
echo ================================================================
pause>nul
"%ProgramFiles%\Internet Explorer\IEXPLORE.EXE" http://windowsupdate.microsoft.com/
以上内容用记事本保存为"Windows XP 在线更新故障.com"双击执行就行了!
为啥我VS2008里的devexpress控件是灰色的不能拖,在VS2010里面却可以用?
参考技术A 是用官方的安装程序吗?试一下开始菜单\Developer Express v2011 vol 2\Components\Tools里的ToolboxCreator,重新注册工具箱
以上是关于为啥我电脑里的自动更新开启按扭是灰色的,不能选择开启的呀?的主要内容,如果未能解决你的问题,请参考以下文章
电脑飞行模式怎么关闭,飞行模式灰色默认开启,WLAN选项消失。
为啥我VS2008里的devexpress控件是灰色的不能拖,在VS2010里面却可以用?