他是每天选不同的组,我猜测是用的一种自动测试软件?
:
他是每天选不同的组,我猜测是用的一种自动测试软件?
:
他是每天选不同的组,我猜测是用的一种自动测试软件?
:
:
; Wait for 5 seconds to open Microsoft Teams
Sleep(5000)
While True ; Loop indefinitely
; Type the text you want to erase
Send("Hello, this is a test message.")
; Erase the text by sending the backspace key in a loop
While StringLen(ClipGet()) > 0
Send("{BACKSPACE}")
WEnd
; Wait for 10 seconds before typing the text again
Sleep(10000)
WEnd
Add-Type -AssemblyName System.Windows.Forms
while ($true)
{
$Pos = [System.Windows.Forms.Cursor]::Position
$x = ($pos.X % 100) + 1
$y = ($pos.Y % 100) + 1
[System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point($x, $y)
Start-Sleep -Seconds [int](Get-Random -Maximum 200)
}