PS D:\cabinControlSpace\011601.honda_hc4.0_cabincontrol> powershell -command "& {[System.Windows.Forms.SendKeys]::SendWait('{SCROLLLOCK}'); Start-Sleep -Milliseconds 100; [System.Windows.Forms.SendKeys]::SendWait('{SCROLLLOCK}');}" 找不到类型 [System.Windows.Forms.SendKeys]。 所在位置 行:1 字符: 4 + & {[System.Windows.Forms.SendKeys]::SendWait('{SCROLLLOCK}'); Start-S ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidOperation: (System.Windows.Forms.SendKeys:TypeName) [],RuntimeException + FullyQualifiedErrorId : TypeNotFound 找不到类型 [System.Windows.Forms.SendKeys]。 所在位置 行:1 字符: 94 + ... tart-Sleep -Milliseconds 100; [System.Windows.Forms.SendKeys]::SendWa ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidOperation: (System.Windows.Forms.SendKeys:TypeName) [],RuntimeException + FullyQualifiedErrorId : TypeNotFound
时间: 2023-09-24 07:13:09 浏览: 172
很抱歉,看起来你的操作系统并不支持使用powershell命令中的[System.Windows.Forms.SendKeys]类。这个类是用于发送按键事件的,如果它没有被找到,你将无法实现模拟鼠标滚轮滑动的功能。
你可以尝试使用其他语言或工具来实现相同的功能,例如AutoHotkey或VBScript。如果你使用的是Windows 10,你可以考虑使用Windows.UI.Input.Preview.Injection命名空间中的API来模拟鼠标滚轮滑动。
阅读全文