You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="machine_name">The name of a target computer. Can be null or empty to specify local machine.</param>
1940
+
/// <param name="name">The name of the service.</param>
1941
+
/// <param name="enabled">If true, the service is started after other auto-start services are started plus a short delay. Otherwise, the service is started during system boot.</param>
1942
+
/// <param name="throw_on_error">True to throw on error.</param>
/// <param name="machine_name">The name of a target computer. Can be null or empty to specify local machine.</param>
1975
+
/// <param name="name">The name of the service.</param>
1976
+
/// <param name="actions">Actions to be performed on service failure.
1977
+
/// <br/>If this value is null, <paramref name="reset_period"/> is ignored.
1978
+
/// <br/> If this value is empty, the reset period and array of failure actions are deleted.</param>
1979
+
/// <param name="reset_period">The time after which to reset the failure count to zero if there are no failures, in seconds. Specify -1 to indicate that this value should never be reset.</param>
1980
+
/// <param name="recover_command">The command line of the process for the CreateProcess function to execute in response to the command run service controller action.
1981
+
/// <br/> This process runs under the same account as the service.
1982
+
/// <br/> If this value is null, the command is unchanged.
1983
+
/// <br/> If the value is an empty string (""), the command is deleted and no program is run when the service fails.</param>
1984
+
/// <param name="reboot_msg">The message to be broadcast to server users before rebooting in response to the reboot action service controller action.
1985
+
/// <br/> If this value is null, the reboot message is unchanged.
1986
+
/// <br/> If the value is an empty string (""), the reboot message is deleted and no message is broadcast.
1987
+
/// <br/> This member can specify a localized string using the following format: <c>@[path]dllname,-strID</c>
1988
+
/// <br/> The string with identifier <c>strID</c> is loaded from <c>dllname</c>; <c>path</c> is optional.</param>
1989
+
/// <param name="throw_on_error">True to throw on error.</param>
0 commit comments