![[파워쉘]윈도우 시간동기화 실패시 텔레그램 푸시](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FBojY4%2FbtrCfmzbpji%2FkYkgtzRc5HKSP9YNGKo11K%2Fimg.png)
# Script/Powershell2020. 3. 16. 10:24[파워쉘]윈도우 시간동기화 실패시 텔레그램 푸시
$hostname = hostname $events=Get-WinEvent -FilterHashtable @ -MaxEvents 1 [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 $token = "#####################" $chatId = "#####################" $message = $events.message Invoke-RestMethod -Uri "https://api.telegram.org/bot$token/sendMessage?text=$message&chat_id=$chatId"