Bugün aynı soruyu sordum ve burada veya Google'da gördüğüm cevaplardan memnun kalmadım , bu yüzden IP adresim değiştiğinde bana bir Slack bildirimi göndermek için bir PowerShell betiği yazdım .
Bir e-posta almayı tercih ederseniz, Outlook e-postalarını destekleyen farklı bir sürüme bakmak için komut dosyasındaki bağlantıları tıklayabilirsiniz.
Umarım bu birine yardımcı olur ve oy alır. :-)
Aşağıdaki metni bir .ps1 dosyasına kaydedin. Kendi Slack webhook URL'nizle uygun şekilde düzenleyin. Kayıt etmek. "PowerShell ile Çalıştır" dosyasına sağ tıklayın.
Veya günlük olarak veya sık sık çalışacak şekilde planlayabilirsiniz.
#Script to compare current IP with old IP and sends Slack notification if different (and do nothing if there was no change).
#We can put this as a scheduled task to run daily.
#ScriptName: IP_change_detection_notification.ps1
$slackWebhookUrl = "XXXXXXXXXX" #put yours here
$ipDetectionUrl = "https://wtfismyip.com/text"
$IPAddFile = "C:\code\IP_change_detection_notification.dat" #absolute path to file that stores the old IP record
$slackOutputFile = "C:\code\IP_change_detection_notification_Slack.txt"
$optionalDebuggingFile = "C:\code\IP_change_detection_notification_debugging.txt"
$Request = Invoke-WebRequest $ipDetectionUrl
$IP_new = ($Request.Content.Trim())
Write-Host "Current IP address: [$IP_new]"
#Check if old IP record exists
If(Test-Path "$IPAddFile")
{
#Get old IP
$IP_old = Get-Content "$IPAddFile"
#Compare IPs
if(-not($IP_new -eq $IP_old))
{
Write-Host "Old IP address: [$IP_old]"
$msg = "Your WAN IP has changed to $IP_new (was $IP_old)!"
Write-Host "$msg"
$body = $("{""text"":""$msg""}")
Write-Host "$body"
Invoke-RestMethod -Uri $slackWebhookUrl -Method Post -ContentType 'application/json' -Body $body -OutFile $slackOutputFile
"Notification Sent"
#Overwrite and update new IP
$IP_new | Out-File $IPAddFile
}
else
{"No change, no notification"}
}
else
{
#Create new, as file not found
$IP_new | Out-File $IPAddFile
"File created"
}
$(get-date -f yyyy-MM-dd_HH_mm_ss) | Out-File $optionalDebuggingFile
#Read-Host -Prompt "Press Enter to exit" #Comment out this line if this script will be run by a cron job. Otherwise, uncomment it so that you can see the results of the script in the console.
#This script was adapted from https://gallery.technet.microsoft.com/scriptcenter/Detect-IP-address-change-aeb51118 by Satyajit
Görev Zamanlayıcı'nın çalışmasını sağlamak için:
PowerShell'i yönetici olarak çalıştırmam ve daha sonra çalıştırmam gerekiyordu Get-ExecutionPolicy
, bu da bana şu anki ExecutionPolicy'nin "Kısıtlı" olduğunu söyledi.
Sonra koştum Set-ExecutionPolicy RemoteSigned
(burada gösterildiği gibi, ama beni sinirlendiriyor: https://stackoverflow.com/a/26955050/470749 ).
Sonra temel bir Windows komut isteminden, aşağıdaki komutu birkaç kez çalıştırmayı denedim: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy ByPass -File "C:\code\IP_change_detection_notification.ps1"
(bir kez IP'yi saklamak ve ikinci kez değişip değişmediğini kontrol etmek için).
(Bunu çalışana kadar Görev Zamanlayıcı'yı kullanmaya çalışmayın.)
Sonra C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
program -ExecutionPolicy ByPass -File C:\code\IP_change_detection_notification.ps1
olarak ve Argümanlar olarak bir görev planladım .