First, ensure that Windows Server 2019 is up to date. In order to do that, use the Hyper-V terminal connection and perform the following steps:
- Open a PowerShell session, using the powershell command.
- Install the PSWindowsUpdate custom module for managing Windows updates, as follows:
Install-Module -Name PSWindowsUpdate
- Trigger Windows updates by running the following code (this process may take a bit of time to complete):
Get-WUInstall -AcceptAll -Install
The ...