XP 上的 Powershell 鼠标移动脚本

XP 上的 Powershell 鼠标移动脚本
Add-Type -AssemblyName System.Windows.Forms

[System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point(500,100)

上述代码应该将鼠标移动到特定位置 (500,100),但是使用 Windows PowerShell 2.0 和 Windows XP SP3,它不起作用。

我也尝试使用这个 powershell 脚本,它应该可以随机移动鼠标。光标没有移动,但光标的形状移动了。 https://raw.githubusercontent.com/MrPowerScripts/PowerScripts/master/Fun/MouseShaker.ps1

相关内容