To exit from a VMWare console window on my XP system, I need to:
- Press both Shift keys
- Press Cntrl-Alt
Does anyone know how I can do this in Autohotkey? Thanks, Bill
|
To exit from a VMWare console window on my XP system, I need to:
Does anyone know how I can do this in Autohotkey? Thanks, Bill | |||
|
feedback
|
|
Try this in your AHK script:
| |||||||
feedback
|
|
VMWare is most likely installing its own keyboard hook which takes precedence over AHK's. The same problem occurs when running a Remote Desktop client. The solution is to check whether the target window is active every so often and reinstall AHK's hook if it is. The hook can be reinstalled by suspending and then unsuspending AHK. Here's my script for Remote Desktop that should be easily customizable for VMWare:
| |||
|
feedback
|
|
Russell's answer gets you a large chunk of the way there using RDP as an example. It's a little harder to detect that you're in vsphere/vmware console but can be done with the below. I've commented the changes/additions
I use this to allow play/pause media keys to work in both rdp/vsphere
| |||
|
feedback
|