帮我用powershell写一个自动控制鼠标在桌面移动并点击的代码
时间: 2024-05-02 14:23:09 浏览: 177
使用 PowerShell 自动化图像识别与鼠标操作
可以使用以下PowerShell代码来控制鼠标在桌面上移动并单击:
```
Add-Type -AssemblyName System.Windows.Forms
# 获取当前的鼠标位置
$pos = [System.Windows.Forms.Cursor]::Position
# 移动鼠标到新的位置
[System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point(500, 500)
# 模拟鼠标单击
[System.Windows.Forms.SendKeys]::SendWait("{LEFTCLICK}")
# 恢复鼠标原来的位置
[System.Windows.Forms.Cursor]::Position = $pos
```
这段代码将鼠标移动到(500,500)的位置,然后模拟鼠标单击。最后将鼠标恢复到原来的位置。你可以根据自己的需要更改鼠标移动的位置和单击的按钮。
阅读全文