[파워쉘]텔레그램 푸시
# Script/Powershell2018. 8. 21. 09:48[파워쉘]텔레그램 푸시

아래 내용 test.ps1로 저장 $token = "#########################" $chatId = "################" $message = $args Invoke-RestMethod -Uri "https://api.telegram.org/bot$token/sendMessage?text=$message&chat_id=$chatId" 실행 powershell -executionpolicy bypass test.ps1 테스트~~~

image