保存为test.bat
使用ansi编码- #&cls&@cd /d "%~dp0"&powershell -c "Get-Content '%~0' | Out-String | Invoke-Expression" &pause&exit
-
- #文本文件
- $txt = 'qq.txt'
- #每次执行间隔时间(毫秒)
- $ms = 1000
-
- Get-Content $txt | foreach {
- $_
- curl ('http://jfasdff.com:5700/send_private_msg?user_id=' + $_ + '&message=请做好签到工作!')
- Start-Sleep -Milliseconds $ms
- }
复制代码
|