ChangeLog.txt 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. Changes since 2.10
  2. -----------------
  3. * Support AppEnvironment for compatibility with srvany.
  4. Changes since 2.9
  5. -----------------
  6. * Fixed failure to compile messages.mc in paths containing spaces.
  7. * Fixed edge case with CreateProcess().
  8. Correctly handle the case where the application executable is under
  9. a path which contains space and an executable sharing the initial
  10. part of that path (up to a space) exists.
  11. Changes since 2.8
  12. -----------------
  13. * Fixed failure to run on Windows versions prior to Vista.
  14. Changes since 2.7
  15. -----------------
  16. * Read Application, AppDirectory and AppParameters before each restart so
  17. a change to any one doesn't require restarting NSSM itself.
  18. * Fixed messages not being sent to the event log correctly in some
  19. cases.
  20. * Try to handle (strictly incorrect) quotes in AppDirectory.
  21. Windows directories aren't allowed to contain quotes so CreateProcess()
  22. will fail if the AppDirectory is quoted. Note that it succeeds even if
  23. Application itself is quoted as the application plus parameters are
  24. interpreted as a command line.
  25. * Fixed failed to write full arguments to AppParameters when
  26. installing a service.
  27. * Throttle restarts.
  28. Back off from restarting the application immediately if it starts
  29. successfully but exits too soon. The default value of "too soon" is
  30. 1500 milliseconds. This can be configured by adding a DWORD value
  31. AppThrottle to the registry.
  32. Handle resume messages from the service console to restart the
  33. application immediately even if it is throttled.
  34. * Try to kill the process tree gracefully.
  35. Before calling TerminateProcess() on all processes assocatiated with
  36. the monitored application, enumerate all windows and threads and
  37. post appropriate messages to them. If the application bothers to
  38. listen for such messages it has a chance to shut itself down gracefully.
  39. Changes since 2.6
  40. -----------------
  41. * Handle missing registry values.
  42. Warn if AppParameters is missing. Warn if AppDirectory is missing or
  43. unset and choose a fallback directory.
  44. First try to find the parent directory of the application. If that
  45. fails, eg because the application path is just "notepad" or something,
  46. start in the Windows directory.
  47. * Kill process tree when stopping service.
  48. Ensure that all child processes of the monitored application are
  49. killed when the service stops by recursing through all running
  50. processes and terminating those whose parent is the application
  51. or one of its descendents.
  52. Changes since 2.5
  53. -----------------
  54. * Removed incorrect ExpandEnvironmentStrings() error.
  55. A log_event() call was inadvertently left in the code causing an error
  56. to be set to the eventlog saying that ExpandEnvironmentStrings() had
  57. failed when it had actually succeeded.
  58. Changes since 2.4
  59. -----------------
  60. * Allow use of REG_EXPAND_SZ values in the registry.
  61. * Don't suicide on exit status 0 by default.
  62. Suiciding when the application exits 0 will cause recovery actions to be
  63. taken. Usually this is inappropriate. Only suicide if there is an
  64. explicit AppExit value for 0 in the registry.
  65. Technically such behaviour could be abused to do something like run a
  66. script after successful completion of a service but in most cases a
  67. suicide is undesirable when no actual failure occurred.
  68. * Don't hang if startup parameters couldn't be determined.
  69. Instead, signal that the service entered the STOPPED state.
  70. Set START_PENDING state prior to actual startup.
  71. Changes since 2.3
  72. -----------------
  73. * Ensure systems recovery actions can happen.
  74. In Windows versions earlier than Vista the service manager would only
  75. consider a service failed (and hence eligible for recovery action) if
  76. the service exited without setting its state to SERVICE_STOPPED, even if
  77. it signalled an error exit code.
  78. In Vista and later the service manager can be configured to treat a
  79. graceful shutdown with error code as a failure but this is not the
  80. default behaviour.
  81. Try to configure the service manager to use the new behaviour when
  82. starting the service so users who set AppExit to Exit can use recovery
  83. actions as expected.
  84. Also recognise the new AppExit option Suicide for use on pre-Vista
  85. systems. When AppExit is Suicide don't stop the service but exit
  86. inelegantly, which should be seen as a failure.
  87. Changes since 2.2
  88. -----------------
  89. * Send properly formatted messages to the event log.
  90. * Fixed truncation of very long path lengths in the registry.
  91. Changes since 2.1
  92. -----------------
  93. * Decide how to handle application exit.
  94. When the service exits with exit code n look in
  95. HKLM\SYSTEM\CurrentControlSet\Services\<service>\Parameters\AppExit\<n>,
  96. falling back to the unnamed value if no such code is listed. Parse the
  97. (string) value of this entry as follows:
  98. Restart: Start the application again (NSSM default).
  99. Ignore: Do nothing (srvany default).
  100. Exit: Stop the service.
  101. Changes since 2.0
  102. -----------------
  103. * Added support for building a 64-bit executable.
  104. * Added project files for newer versions of Visual Studio.