当我手动启动它们时,我有 2 个脚本在工作。
将鼠标光标移出屏幕:
[system.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | out-null
[System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point(1999,100)
如果打开带有标题 HUD 的 chrome 浏览器,请将其置于信息亭模式:
[void] [System.Reflection.Assembly]::LoadWithPartialName("'Microsoft.VisualBasic")
[Microsoft.VisualBasic.Interaction]::AppActivate("Hud - Google Chrome")
[void] [System.Reflection.Assembly]::LoadWithPartialName("'System.Windows.Forms")
[System.Windows.Forms.SendKeys]::SendWait("{F11}")
如果我将它们放在 Windows 7 上的计划任务中,它们将不起作用。
如果我启动一个调用脚本文件的批处理文件,它们就会起作用
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -noninteractive -command "&C:\Users\Miniuser\Documents\chromeHUD.ps1"
但如果我在计划任务中启动批处理文件,则不会。
似乎在计划任务中我无法访问我的 UI 元素。
有任何想法吗?