[SOLVED] Windows Server 2016 hasn't updated in a year

Unable to complete any upgrade maneuver, this PC installs two slow mechanical disks, I will switch everything to performance SSDs and try again and let you know, for now thank you very much!
 
SSDs are slow to arrive, so I retried to manually install the latest April cumulative update for Windows Server 2016 x64 (KB5036899), a 1.71 Gb msu file.
The “SoftwareDistribution” came in at over 9 Gb, it seemed to be proceeding then after a long time the automatic cancellation of the update started, so there is bound to be a problem.
I attach the CBS.log inherent this failed operation, the installation window closed automatically after the automatic cancellation.
Consider that SoftwareDistrubition I had emptied it before I started, so clean start, and in the CBS I see crazy problems, like:

DPX Extraction of file: update.ses failed because it is not present in the container (\\?\C:\Windows\SoftwareDistribution\Download\dc17ef8048924c249952b719f3d2e8ad\windows10.0-kb5037016-x64-express.cab).

And so many other errors "Error - Overlap: Duplicate ownership for directory...... ", I have no words.

CBS Trusted Installer successfully registered to be restarted for pre-shutdown
CBS Trusted Installer is shutting down because: SHUTDOWN_REASON_AUTOSTOP

Now I rebooted and it is performing something, I don't understand, maybe something updated.

1715452627398.png

I will update you when he is finished.
 

Attachments

Last edited:
Obviously after the reboot usual progression counter up to 100% and then the usual failed upgrade warning, and several automatic reboots to revert the system at the previous state.
Here the CBS.log.
 

Attachments

Hi,

Open an elevated command prompt, run the following command and attach Services.txt to your next post.
Code:
WMIC SERVICE GET caption, name, startmode, state > "%userprofile%\desktop\services.txt"
 
I am trying before I read your answer to upgrade in place with Windows Server 2019 to see if the update problem is resolved.
If it fails I will restore the VM and send you the list of services.
 
Okay, let me know the result.

P.s. is Apache (Tomcat) installed on this server, this because the HTTP service could be the issue of the rollback.
 
Obviously the upgrade to 2019 failed, stuck at 91 percent an eternity.
So I restored the VM with 2016 and this is what you asked for.
I don't see Apache installed as a service.
 

Attachments

Hi,

Open an elevated prompt and run the following commands and copy and paste the result in your next post.
Code:
sc config wuauserv start= demand
sc config DoSvc start= delayed-auto
sc start wuauserv
sc start DoSvc
 
Last edited:
Only the last command gave an error.


C:\Users\Administrator>sc config wuauserv start= demand
[SC] ChangeServiceConfig OPERAZIONI RIUSCITE

C:\Users\Administrator>sc config DoSvc start= delayed-auto
[SC] ChangeServiceConfig OPERAZIONI RIUSCITE

C:\Users\Administrator>sc start wuauserv

NOME_SERVIZIO: wuauserv
TIPO : 20 WIN32_SHARE_PROCESS
STATO : 2 START_PENDING
(NOT_STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
CODICE_USCITA_WIN32 : 0 (0x0)
CODICE_USCITA_SERVIZIO : 0 (0x0)
PUNTO_CONTROLLO : 0x0
INDICAZIONE_ATTESA : 0x7d0
PID : 640
FLAG :

C:\Users\Administrator>sc start DoSvc
[SC] StartService OPERAZIONI NON RIUSCITE 1083:

L'eseguibile che prevede l'esecuzione di questo servizio non implementa il servizio.
 
Please run the following commands in an elevated prompt and copy and paste the result in your next post.
Code:
sc query DoSvc
sc qc DoSvc
 
It won't start.

C:\Users\Administrator>sc query DoSvc

NOME_SERVIZIO: DoSvc
TIPO : 20 WIN32_SHARE_PROCESS
STATO : 1 STOPPED
CODICE_USCITA_WIN32 : 0 (0x0)
CODICE_USCITA_SERVIZIO : 0 (0x0)
PUNTO_CONTROLLO : 0x0
SUGGERIMENTO_ATTESA : 0x7d0

C:\Users\Administrator>sc qc DoSvc
[SC] QueryServiceConfig OPERAZIONI RIUSCITE

NOME_SERVIZIO: DoSvc
TIPO : 20 WIN32_SHARE_PROCESS
TIPO_AVVIO : 2 AUTO_START (DELAYED)
CONTROLLO_ERRORE : 1 NORMAL
NOME_PERCORSO_BINARIO : C:\Windows\system32\svchost.exe -k netsvcs
GRUPPO_ORDINE_CARICAMENTO :
TAG : 0
NOME_VISUALIZZATO : DoSvc
DIPENDENZE : rpcss
SERVICE_START_NAME : LocalSystem
 
Export registry key as hive file.
  • Open the Start menu of Windows and type CMD.
  • When you see Command Prompt on the list, select the option Run as administrator.
  • Copy and paste the following command into the command prompt and press enter.
Code:
reg save "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services" "%userprofile%\Desktop\Services.hiv"
  • Once done, a file will appear on your desktop, called Services.hiv.
  • ZIP this file and attach it to your next reply.
 
Okay, open gpedit.msc and check the following locations and post a screenshot of both settings if exists.
Code:
Computer Configuration > Administrative Templates > Windows Components > Delivery Optimization
Computer Configuration > Policies > Windows Settings > Security Settings > System Services > Delivery Optimization

Run also the following commands in an elevated prompt and copy and paste the result in your next post.
Code:
sc query http
sc qc http
 
I don't see anything about delivery optimization.

C:\Users\Administrator>sc query http

NOME_SERVIZIO: http
TIPO : 1 KERNEL_DRIVER
STATO : 4 RUNNING
(STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
CODICE_USCITA_WIN32 : 0 (0x0)
CODICE_USCITA_SERVIZIO : 0 (0x0)
PUNTO_CONTROLLO : 0x0
INDICAZIONE_ATTESA : 0x0

C:\Users\Administrator>sc qc http
[SC] QueryServiceConfig OPERAZIONI RIUSCITE

NOME_SERVIZIO: http
TIPO : 1 KERNEL_DRIVER
TIPO_AVVIO : 3 DEMAND_START
CONTROLLO_ERRORE : 1 NORMAL
NOME_PERCORSO_BINARIO : system32\drivers\HTTP.sys
GRUPPO_ORDINE_CARICAMENTO :
TAG : 0
NOME_VISUALIZZATO : Servizio HTTP
DIPENDENZE :
SERVICE_START_NAME :
 
Okay, please run the following command and let me know the result.
Code:
sc config http start= auto
 
Back
Top