我在我的脚本中使用PowerShell来检查各种键的状态,如NumLock和CapsLock。
powershell.exe -Command [Console]::CapsLock
powershell.exe -Command [Console]::NumberLock
但我发现无法通过PowerShell控制台命令检查ScrollLock的状态。你能告诉我为什么powershell.exe -Command [Console]::ScrollLock
不起作用,需要做什么?
您可以使用ScrollLock
本机Windows API中的GetKeyState()
function获取user32.dll
密钥状态:
Add-Type -MemberDefinition @'
[DllImport("user32.dll")]
public static extern short GetKeyState(int nVirtKey);
'@ -Name keyboardfuncs -Namespace user32
# 0x91 = 145, the virtual key code for the Scroll Lock key
# see http://www.foreui.com/articles/Key_Code_Table.htm
if([user32.keyboardfuncs]::GetKeyState(0x91) -eq 0){
# Scroll Lock is off
}
else {
# Scroll Lock is on
}