Where can I find nsis error codes?

2.1k Views Asked by At

I'm building an nsis script and sometimes I print the error codes, but then I cant find anything on the web that maps my error id to a proper description on whats the error.

There isn't any error code listage for NSIS?

Thanks

1

There are 1 best solutions below

0
On

If we take the example you posted on the NSIS forum: ExecWait "net start Apache 2.2" $0 then $0 will contain the exit code of the net.exe process and you cannot really know for sure what they mean other than that 0 usually means success. Some applications use the Win32 error codes and you can look them up here. Net.exe is documented here.

If you want to control a service then there are better ways of doing that in NSIS...