Yo uso Windows 7 SP1 x64 Ultimate. veo en Control Panel\All Control Panel Items\Windows Update
:
No quiero que se instale ninguna actualización de Windows. ¿Cómo puedo evitar que Windows Update instale actualizaciones al reiniciar?
Desde entonces he desactivado la actualización de Windows:
y lo cmd.exe
he ejecutado wusa /uninstall /kb:<kbnumber>
para cada actualización de Windows que se instaló recientemente. ¿Es suficiente? (Aún no he reiniciado la computadora)
Salida de Por qué reiniciar:
Salida deWMI VBScript escrito por Tom Mills
El script es el siguiente (guardarlo como un .vbs
archivo):
'---------------------------------------------------------------------
'Name: CheckPendingFileRenameOperations
'Programmer: Tom Mills/Microsoft Corp.
'Date: 8/14/2008
'Purpose: Checks registry key for pending file rename operations
'Notes: None
'---------------------------------------------------------------------
CONST HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
strFileOps = ""
Set objReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\"&_
strComputer & "\root\default:StdRegProv")
strKeyPath = "SYSTEM\CurrentControlSet\Control\Session Manager"
strValueName = "PendingFileRenameOperations"
Return = objReg.GetMultiStringValue(HKEY_LOCAL_MACHINE,strKeyPath,_
strValueName,arrValues)
If (Return = 0) And (Err.Number = 0) Then
For Each strValue In arrValues
strFileOps = strFileOps & chr(13) & strValue
Next
WScript.Echo "Pending File Rename Operations Found: " & strFileOps
Else
If Err.Number = 0 Then
Wscript.Echo "No Pending File Operations Found"
Else
Wscript.Echo "Check Pending File Operations failed. Error = " & Err.Number
End If
End If