Answers have been given on using powershell to control Windows settings (such as speaker volume control) using the following method:
$obj = new-object -com wscript.shell
$obj.SendKeys([char]173)
However I cannot find any information on where those numbers (e.g. 173 above, or 174/175 in the link) are coming from how they are defined and what other number definitions are & can do.
Can you direct me to a listing of where those numbers are given as defined actions? For example how would I know what 172 would do? or 200? etc?
Thanks, Lawrence