Operator ability to adjust system volume
Recently upgraded to 800XA v6 with new operator screens and soundbars. previously the operators had the ability to adjust the volume of alarms through the keyboard volume (human interface device service) due to different levels of background traffic/noise on different shifts. This facility has been lost but I can't find and group policy/workspace config blocking the HID service or volume control.
Voted best answer
You could use a script within 800xA
Volume up:
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.SendKeys(chr(&hAF))
Volume down:
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.SendKeys(chr(&hAE))
Add new comment