Click here to Skip to main content
15,887,027 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
"The program '[10272] iisexpress.exe' has exited with code 0 (0x0).
with 0(zero) errors

What I have tried:

online help but not fix the problem.
Posted
Updated 18-Feb-20 2:31am
v2
Comments
OriginalGriff 18-Feb-20 4:18am    
This is not a good question - we cannot work out from that little what you are trying to do.
Remember that we can't see your screen, access your HDD, or read your mind - we only get exactly what you type to work with. We have no access to your code at all!

Use the "Improve question" widget to edit your question and provide better information.
Richard MacCutchan 18-Feb-20 4:39am    
What do you think zero errors means?

That's not a problem.

"Exited with code 0" just means the process terminated successfully with no errors.
 
Share this answer
 
Quote:
How do I fix this "the program '[10272] iisexpress.exe' has exited with code 0 (0x0)."?

You don't, because there is nothing to fix: with 0(zero) errors
Code is something like:
C#
int main() {
    // do something
    ...
    return 0; // the 'exit code' 0 comes from here
}
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900