This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Mouse Jiggle ====== <code powershell> Add-Type -AssemblyName System.Windows.Forms while ($true) { $pos = [System.Windows.Forms.Cursor]::Position [System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point(($pos.X + 1), $pos.Y) Start-Sleep -Milliseconds 500 [System.Windows.Forms.Cursor]::Position = $pos Start-Sleep -Seconds 60 } </code>