Category Archives: ExitCode

Windows Installer Error Codes [ExitCode]

Following are the common Error Codes OR Exit Codes generated while running the Windows installer using msiexec command. Value Description Error Code 0 Action completed successfully. ERROR_SUCCESS 13 The data is invalid. ERROR_INVALID_DATA 87 One of the parameters was invalid. ERROR_INVALID_PARAMETER 120 This function is not available for this platform…. Read more »

Console App returing ExitCode

      No Comments on Console App returing ExitCode

Console app exit code: int code = 2;Environment.Exit( code );OR Environment.ExitCode = code; enum ExitCode : int { Success = 0, InvalidLogin = 1, InvalidFilename = 2, UnknownError = 10} int Main(string[] args) { return (int)ExitCode.Success;} Refer this link for more info on ExitCodes:http://msdn.microsoft.com/en-us/library/system.environment.exitcode.aspx Optional: Calling from MSBUILD and Looking… Read more »