Jun 20 2022 12:46 PM
I'm having some issues with VMs no longer starting. This started May 11th 2022.
The last updates that I see installed around that timeframe are KB5001384 and the May 10 KB5013941.
Tried to uninstall both to no avail. The server has been patched to the latest update since.
Server is running on a Dell R630.
Server is domain joined.
VM services are started but when trying to launch the VM I am getting a generic error stating that the VM(s) failed to start. VMs were shutdown gracefully (there are 4 currently, 3 windows, 1 linux server).
Errors in the logs that I am seeing:
- Microsoft-Windows-Hyper-V-VMMS Event 15130
- Microsoft-Windows-Hyper-V-Worker Event 3062
Tried running DISM.exe /Online /Cleanup-Image /Restorehealth and SFC /scannow but still not allowing me to start them.
Using Multiplexor switch and I'm able to view/edit the Vswitch w/o issues.
Services for Hyper-V are present and running.
I did try removing the Hyper-V role (grayed our in server manager) and getting an error via PowerShell: The referenced assembly could not be found. Error: 0x80073701
I'm at a complete loss right now and if I had sufficient storage to migrate and rebuild the server I certainly would consider it...
Any suggestions would be welcome.
Jun 20 2022 11:22 PM - edited Jun 20 2022 11:38 PM
Not being able to replicate the errors, I ran a search and hit the article below, which in turn jogged my memory that I have had to re-create virtual switches in the past to resolve unexpected issues at times.
I'd recommend creating a new virtual switch(es) with the same configuration as the current and try moving one of the impacted guests across to it. That provides you an easy, non-destructive way back to the old one should it be required.
Windows 2012 R2 Hyper-V event id's 20144 and 15130 (microsoft.com)
Edited:
Since I'm in guessing mode based on prior experience, I may as well quickly add this extra point.
When I've moved virtual machines from one host to another during hypervisor replacements, I've had to, on occasion, remove and re-create just the NIC(s) within the guest. I didn't look into it since it was a quick fix but I expect this probably addressed a bad GUID reference or something similar.
Cheers,
Lain
Jun 23 2022 07:55 AM
@LainRobertson No luck here.
I removed 2 NICs from the NIC team (all 4 NICs were added).
Created a new virtual switch, reassigned the NIC on the VM and tried starting it.
Same errors. 3062 for the V-Worker and 15130 for V-WMMS.
I also did recreate the vSwitch using the Multiplexor Driver as it was previously configured...
Still not go.
Last thing I tried was set the NIC of one of the VM to "Not Connected" and attempted to start... same error.
Jun 23 2022 04:21 PM
Yeah, fair enough.
As an aside, setting the NIC to disconnected won't do anything. You'd want to remove the NIC from the configuration and create a new one.
That's how I've resolved issued when using a plain old copy process to migrate guests from an old Hyper-V host to a new.
Again, it may not help in your case, but that's what I was referring to, not simply disconnecting the existing NIC.
For testing purposes, you could even try creating a new internal switch and hooking up a guest to that. If nothing else, that would serve to confirm there's nothing wrong with your multiplexor switch (i.e. if you still get the same error on the internal switch.)
Cheers,
Lain
Oct 04 2022 06:02 AM
Hello samw5875,
The error 0x80073701 is ERROR_SXS_ASSEMBLY_MISSING, meaning some system files are missing, causing the Windows update installation failure. The 0x80073701 error appears due to missing system files. System files get corrupted or deleted due to various reasons.
However, you can follow the steps mentioned below to troubleshoot Hyper-V VMs no longer start issues,
Run Windows Built-in Troubleshooter:
The Error 0x80073701 can be solved using the built-in Windows Update Troubleshooter,
The Update troubleshooter should provide fixes and apply them automatically.
Flush the SoftwareDistribution Folder:
net stop wuauserv
Execute a System File Checker (SFC) Scan:
It replaces the corrupt, missing files and downloads them, causing a 0x80073701 error.
SFC /Scannow
Execute DISM scan:
DISM is a command-line tool to fix corrupt system files,
DISM /Online /Cleanup-image /StartComponentCleanup
DISM /Online /Cleanup-Image /ScanHealth
DISM /Online /Cleanup-Image /RestoreHealth
Reset Windows Update Components:
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
After restarting Windows update components, you must check whether the issue persists.
I hope the above fixes help you to resolve the Hyper-V VMs no longer start on Server 2019 with error code 0x80073701 without facing any problem.
-----------------------
Regards,
Austin M
Oct 04 2022 12:56 PM
Jul 27 2023 05:46 AM
Jul 27 2023 06:11 AM
nothing that worked. Vms on that box weren't critical so the next step was going to export them to another host but haven't gone around this.
I tried tons of stuff including remove NICs, DSIM reports, reinstall roles nothing seemed to work 😞