Announcement

Collapse
No announcement yet.

BLShutdown: also kill HS3Sentry.exe?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Blade
    replied
    It is in the HS3 updater under the Utilities section

    Leave a comment:


  • KurtLutterman
    replied
    Sorry I missed your reply until now. I don't see BLShutdown on http://www.bladeplugins.com/Downloads.asp or the HS downloader at all.

    Leave a comment:


  • Blade
    replied
    Try out 1.0.5 in the beta section and let me know
    I added a new option to terminate HS sentry on shutdown

    Leave a comment:


  • spknapp
    replied
    I'd like to know why doesn't HomeSeer do it anymore?

    Leave a comment:


  • Blade
    replied
    Originally posted by KurtLutterman View Post
    I love BLShutdown that it does an orderly shutdown of HS (saving device values and last change status, etc.). I use this when Windows is updated and needs to reboot. Feature Request: Please have it also kill HS3Sentry.exe so HS does not restart before the PC is rebooted with the Windows update.
    Can you add a feature request for this on my web site

    Leave a comment:


  • sparkman
    replied
    As an option, you could do it in the shutdown script. That way it also kills it when you manually shut down HS. This is what I have as my shutdown script:

    Code:
    Imports System.Diagnostics
    
    ' Add commands to this script, but since the
    ' system is shutting down, they must complete quickly.
    '
    Sub Main(Parm As Object)
    
        hs.WriteLog("Shutdown", "HS-Shutdown.vb script is now running")
        hs.TriggerEvent("HomeSeer Shutdown")
        Process.GetProcessesByName("HS3Sentry")(0).Kill()
    
        hs.WriteLog("Shutdown", "HS-Shutdown.vb script commands have been completed")
    
    End Sub

    Leave a comment:


  • KurtLutterman
    started a topic BLShutdown: also kill HS3Sentry.exe?

    BLShutdown: also kill HS3Sentry.exe?

    I love BLShutdown that it does an orderly shutdown of HS (saving device values and last change status, etc.). I use this when Windows is updated and needs to reboot. Feature Request: Please have it also kill HS3Sentry.exe so HS does not restart before the PC is rebooted with the Windows update.
Working...
X