ChangeLog.txt 6.0 KB

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