gpt4 book ai didi

powershell - 打开或关闭滚动锁定

转载 作者:行者123 更新时间:2023-12-03 10:04:03 24 4
gpt4 key购买 nike

我在脚本中使用 PowerShell 来检查各种键(如 NumLock 和 CapsLock)的状态。

powershell.exe -Command [Console]::CapsLock
powershell.exe -Command [Console]::NumberLock

但是我发现没有办法通过 PowerShell 控制台命令检查 ScrollLock 的状态。你们能告诉我为什么 powershell.exe -Command [Console]::ScrollLock 不起作用以及需要做什么吗?

最佳答案

您可以使用 ScrollLock functionGetKeyState() native Windows API 获取 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
}

关于powershell - 打开或关闭滚动锁定,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51446852/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com