Si tenemos nuestra infraestructura soportada por actualizaciones distribuidas por WSUS y necesitamos activar una caracteristica opcional tenemos que seguir estos pasos para poder hacerlo.
Detenemos los servicios de windows update
1 2 3 4 5 6 7 8 9 10 |
# net stop bits # net stop wuauserv # net stop appidsvc # net stop cryptsvc # ren C:\Windows\SoftwareDistribution SoftwareDistribution.old # ren C:\Windows\System32\catroot2 catroot2.old # net start bits # net start wuauserv # net start appidsvc # net start cryptsvc |
1 2 3 4 5 6 7 |
# regedit # HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU # UseWUServer -> 0 # net stop wuauserv && net start wuauserv from cmd |