The command will tell you if VBS is disabled. If the command says VBS is enabled, disable it in order to use the computer as a GO-Global Host.
Open PowerShell as an administrator on the affected Windows computer and paste the following command:
if(((Get-CimInstance -ClassName Win32_DeviceGuard -Namespace root\Microsoft\Windows\DeviceGuard).VirtualizationBasedSecurityStatus) -eq 0){Write-Host "VBS is disabled" -ForegroundColor Green}else{Write-Host "VBS is enabled" -ForegroundColor Red}
PS C:\> if(((Get-CimInstance -ClassName Win32_DeviceGuard -Namespace root\Microsoft\Windows\DeviceGuard).VirtualizationBasedSecurityStatus) -eq 0){Write-Host "VBS is disabled" -ForegroundColor Green}else{Write-Host "VBS is enabled" -ForegroundColor Red}
VBS is disabled