@@ -, +, @@ [winexe/winexe.c:120:on_ctrl_pipe_error()] ERROR: Failed to install service winexesvc - NT code 0x00000424 --- source/svcinstall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/source/svcinstall.c +++ a/source/svcinstall.c @@ -30,7 +30,7 @@ #define SERVICE_DEMAND_START (0x00000003) #define SERVICE_ERROR_NORMAL (0x00000001) #define SERVICE_CONTROL_STOP (0x00000001) -#define NT_STATUS_SERVICE_DOES_NOT_EXIST NT_STATUS(0xc0000424) +#define NT_STATUS_SERVICE_DOES_NOT_EXIST NT_STATUS(0x00000424) #define NT_ERR(status, lvl, args...) if (!NT_STATUS_IS_OK(status)) { DEBUG(lvl,("ERROR: " args)); DEBUG(lvl,(". %s.\n", nt_errstr(status))); return status; } #define NT_RES(status, werr) (NT_STATUS_IS_OK(status) ? werror_to_ntstatus(werr) : status) --