今日も同じ質問があり、ここやGoogleでの回答に満足できなかったため、IPアドレスが変更されるたびにSlack通知を送信するPowerShellスクリプトを作成しました。
メールを受け取りたい場合は、スクリプトのリンクをクリックして、Outlookメールをサポートする別のバージョンを確認できます。
これが誰かを助け、投票を獲得することを願っています。:-)
次のテキストを.ps1ファイルに保存します。独自のSlack Webhook URLで適切に編集します。セーブ。「PowerShellで実行」するファイルを右クリックします。
または、毎日または頻繁に実行するようにスケジュールすることもできます。
#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
タスクスケジューラを機能させるには:
管理者としてPowerShellを実行してからを実行する必要Get-ExecutionPolicy
があり、現在のExecutionPolicyが「制限されている」と通知されました。
それから私は走りましたSet-ExecutionPolicy RemoteSigned
(ここに示されているように、それは私を緊張させます:https : //stackoverflow.com/a/26955050/470749)。
次に、基本的なWindowsコマンドプロンプトから、次のコマンドを数回実行してみましたC:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy ByPass -File "C:\code\IP_change_detection_notification.ps1"
(IPを保存するためにもう一度、変更があったかどうかを確認するためにもう一度)。
(それが機能するようになるまで、わざわざタスクスケジューラを使用しようとしないでください。)
次にC:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
、プログラムと-ExecutionPolicy ByPass -File C:\code\IP_change_detection_notification.ps1
引数としてタスクをスケジュールしました。