4d61726b / VirtualKD-Redux

VirtualKD-Redux - A revival and modernization of VirtualKD
GNU Lesser General Public License v2.1
777 stars 136 forks source link

Does not recognize virtual machines #64

Closed UIWP0 closed 2 months ago

UIWP0 commented 2 months ago

Describe the bug Local OS machine is Windows 10, using VirtualKD-Redux-2024.0 + Vmware16 Pro -16.2.4 build-20089737 to debug Windows 10 VMs, but VirtualKD-Redux doesn't recognize any of the VMs opened

To Reproduce Steps to reproduce the behavior:

Expected behavior

Screenshots image

Configuration (please complete the following information):

Additional context :=(

4d61726b commented 2 months ago

When this happens, can you run the following Powershell as Administrator and then attach the processes.log that it generates to this issue ticket?

Get-Process | ForEach-Object {
    $wmiProcess = Get-WmiObject Win32_Process -Filter "ProcessId = $($_.Id)"
    $user = $wmiProcess.GetOwner().User
    $commandLine = $wmiProcess.CommandLine
    Write-Output "$user`t`t:`t$commandLine"
} | Out-File -FilePath "processes.log"
4d61726b commented 2 months ago

Closing due to no response to the request. I'm going to assume it was something on your host that was blocking vmmon from enumerating processes.