Last active
August 30, 2024 14:08
-
-
Save alimbada/cc782c98ab85ab16781489db9bbdf56c to your computer and use it in GitHub Desktop.
Send commands for switching HDMI input to TV when WMI events are triggered by KVM switch (connect/disconnect)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Register-WmiEvent -Query "SELECT * FROM __InstanceCreationEvent WITHIN 1 WHERE TargetInstance ISA 'win32_PNPEntity' AND TargetInstance.DeviceID like 'USB\\VID_045B&PID_0209%'" -SourceIdentifier KVMConnected -Action { lgtv --name MyTV --ssl setInput HDMI_4 } | |
Register-WmiEvent -Query "SELECT * FROM __InstanceDeletionEvent WITHIN 1 WHERE TargetInstance ISA 'win32_PNPEntity' AND TargetInstance.DeviceID like 'USB\\VID_045B&PID_0209%'" -SourceIdentifier KVMDisonnected -Action { lgtv --name MyTV --ssl setInput HDMI_3 } |
⚠This only works for as long as the console it is run from remains open, which is not ideal
There are ways to make the event subscription permanent
Further reading:
https://learn-powershell.net/2013/08/14/powershell-and-events-permanent-wmi-event-subscriptions/
https://learn.microsoft.com/en-us/windows/win32/wmisdk/commandlineeventconsumer
Simple AutoHotkey solution to run this script without needing to have a visible console window open: https://gist.github.com/alimbada/e5b43bb5df2a472fbc8bf7e24a7139d3
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you know the name of your device you can obtain the DeviceID can be obtained by running:
$_.Caption
may be used instead of$_.Name
You can also get all USB devices with InstanceIDs (which seem to be identical to DeviceID?) by running: