onShutdown.ps1 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. # onShutdown.ps1
  2. #
  3. # for Windows 10
  4. # - sends an MQTT message on Shutdown and a different one on Restart
  5. # - intended to switch off a Tasmota plug, delayed, after shutdown, but NOT on restart
  6. #
  7. # Prerequisites:
  8. # - download Mosquitto Windows x64 installer
  9. # - extract and copy mosquitto_pub.exe, mosquitto.dll, libssl-1_1-x64.dll and libcrypto-1_1-x64.dll to
  10. # c:\Tools\mosquitto (or anywhere and change $mosquittoPubPath accordingly)
  11. #
  12. # This script checks if there is a Event 1074 (source: User32) in the System Event Log, that is
  13. # less than 15 seconds old.
  14. # If so, it checks the content of this event, which contains the info if we are about to
  15. # "power off" or "restart".
  16. #
  17. # The script must be set as shutdown script via Windows Group Policy (local GPO)
  18. # Setup: Start -> Run -> gpedit.msc
  19. # -> Computer Configuration -> Windows Settings -> Scripts (Startup/Shutdown) -> Shutdown
  20. # -> there, go to tab "PowerShell Scripts" and simply browse for this script.
  21. # Group Policy service seems to handle the PS Execution-Policy,
  22. # so that it does not have to be set to unrestricted system-wide.
  23. # I saved the script to C:\scripts\onShutdown.ps1
  24. #
  25. # Starting it via Task Scheduler on Event 1074 unfortunately does not work, as the script
  26. # is getting killed before it actually has done anything most times.
  27. # Via Group Policy, the shutdown will be delayed until the script has finished its work.
  28. $logFile = "C:\LOG\onShutdown_PS.log"
  29. $mosquittoPubPath = "c:\Tools\mosquitto\mosquitto_pub.exe"
  30. $mqttHost = "mqtt.lan"
  31. #$mqttUser = "username"
  32. #$mqttPwd = "password"
  33. # Topic to send status info to (SHUTDOWN or RESTART)
  34. $mqttStatTopic = "MediaPC/ShutdownEvent"
  35. # Topic/Payload on Shutdown (i.E. send an Event to a Tasmota device)
  36. $mqttTopicOnShutdown = "cmnd/TasmotaMediaPC/event"
  37. $mqttPayloadOnShutdown = "delayedOff"
  38. # Topic/Payload on Restart (i.E. send an Event to a Tasmota device)
  39. #$mqttTopicOnRestart = ""
  40. #$mqttPayloadOnRestart = ""
  41. ###########
  42. $scriptPath = split-path -parent $MyInvocation.MyCommand.Definition
  43. $mosquittoPubUserPassword = ""
  44. if($mqttUser -and $mqttPwd -and $mqttUser -ne "" -and $mqttPwd -ne "") {
  45. $mosquittoPubUserPassword = "-u $mqttUser -P $mqttPwd "
  46. }
  47. $logDate = "{0:yyyy-MM-dd HH:mm:ss}" -f (Get-Date)
  48. if($logFile) { Write-Output $logDate >> $logFile }
  49. Get-WinEvent -FilterHashtable @{logname='System'; id=1074} -MaxEvents 1 | ForEach-Object {
  50. $ts_event = [datetime]$_.TimeCreated
  51. $ts_delta = (New-TimeSpan -Start $ts_event).TotalSeconds
  52. $ts_str = $ts_delta.ToString("#")
  53. $command = $_.Properties[4].Value
  54. if($logFile) { Write-Output " last shutdown-event was '$command', $ts_str s ago" >> $logFile }
  55. if($ts_delta -lt 15) {
  56. if($logFile) { Write-Output " ==> OK, publish MQTT messages." >> $logFile }
  57. if($command -eq "power off") {
  58. $cmdLine = "$mosquittoPubPath -h $mqttHost $mosquittoPubUserPassword-t $mqttStatTopic -m SHUTDOWN"
  59. Invoke-Expression $cmdLine
  60. if($mqttTopicOnShutdown -and $mqttTopicOnShutdown -ne "") {
  61. $cmdLine = "$mosquittoPubPath -h $mqttHost $mosquittoPubUserPassword-t $mqttTopicOnShutdown -m $mqttPayloadOnShutdown"
  62. Invoke-Expression $cmdLine
  63. }
  64. }
  65. elseif($command -eq "restart") {
  66. $cmdLine = "$mosquittoPubPath -h $mqttHost $mosquittoPubUserPassword-t $mqttStatTopic -m RESTART"
  67. Invoke-Expression $cmdLine
  68. if($mqttTopicOnRestart -and $mqttTopicOnRestart -ne "") {
  69. $cmdLine = "$mosquittoPubPath -h $mqttHost $mosquittoPubUserPassword-t $mqttTopicOnRestart -m $mqttPayloadOnRestart"
  70. Invoke-Expression $cmdLine
  71. }
  72. }
  73. }
  74. else {
  75. if($logFile) { Write-Output " ==> too old. Nothing to do." >> $logFile }
  76. }
  77. }