0
votes
2answers
60 views

How can I catch this “This application has requested the Runtime to terminate it in an unusual way” error in my C program?

I have a C CLI program that crashes and generates this error in Windows 7: This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team ...
0
votes
0answers
17 views

'File path' use causing program exit in Python 3

I have downloaded a set of html files and saved the file paths which I saved them to in a .txt file. It has each path on a new line. I wanted to look at the first file in the list and then itterate ...
0
votes
1answer
60 views

bat does not return right exit status

I have two bat files. callexcode.cmd calls excode.cmd which just makes a call to file 'saurabh' which does not exist. When I want to get the error code printed in the caller (in this case ...
-4
votes
1answer
24 views

Is it okay to have exit button in a program? [closed]

I am doing a system and I added an exit button for user to close the system when it is not using instead of clicking the "X" in the window. And my lecturer tell me that the exit button is not required ...
1
vote
1answer
206 views

Java Application hangs on Windows Shutdown

I have this whole code. My Application hangs up after the windows is force shutdown then cancel. application running... >> windows force shutdown >> cancel >> back to windows ...
1
vote
0answers
93 views

php on windows exit causes response to abort

So here's the story Apache + php + Yii framework on windows In some cases, for example redirect, the framework is calling exit($status) where $status = 0 and it works fine on the linux server, yet ...
1
vote
0answers
316 views

How can I have a python script safely exit itself?

Heres the scenario I have a password that must be entered if entered wrong the script will not proceed and just exit itself? But how can I tell the script to safely exit itself? I tried sys.exit() ...
0
votes
2answers
124 views

Returning to a menu after an external application is done or cancelled

I am writing up an interface that references several external Utilities and Anti Virus applications. In this case, I have one menu that has options for things like Malwarebytes, CCleaner, Windirstat, ...
0
votes
2answers
188 views

How do I get the exit code via %errorlevel% , its not working anymore with assembly program

I want to get the exit code of my tutorial assembly program ( using masm32 and link). It was working fine, I would type echo %errorlevel% and it would display my exit code that I typed in after invoke ...
0
votes
2answers
134 views

MessageBox prevents exiting from application

Our application loads 3rd party DLLs that sometimes pops MessageBoxes. We've notices that sometimes we can't just use exit(0) when there's an open MessageBox. How can we still force an exist in such ...
0
votes
1answer
279 views

Calling TerminateThread on a Windows thread when app exits

First off, let me start by saying that I understand all the perils of calling TerminateThread from outside a thread, instead of signaling the thread to quit by itself & wait for that to happen. ...
2
votes
3answers
227 views

C++ error cleanup question

If I have a function I call when there is an error in my app, and I call ExitProcess in that function to exit. Do I need to find a way to have it call things like WSACleanup() and ReleaseMutex and ...
2
votes
2answers
991 views

Exit code of thread in Windows C++

Suppose I have created multiple threads. Now I am waiting for multiple object as well using : WaitOnMultipleObject(...); Now if I want to know the status of all the thread's return code. How to do ...
16
votes
4answers
2k views

Gracefully Exit Explorer (Programmatically)

How do you gracefully close Explorer programmatically? By that I mean, how do you invoke this function programmatically: Edit: Typo in the picture, it should say "Ctrl-Shift-Right-Click" instead ...
8
votes
5answers
347 views

Terminate application AND call the destructors of local objects

I have some objects on the stack in main function: int main(...) { CFoo foo; CBar bar; } Also, I have a function, that keeps track of errors in my application: void Err(std::string msg) { ...
1
vote
2answers
94 views

Is there a way to set windows to leave console windows open?

Is there some way to get it to stop closing as soon as the code finishes so I can actually read the error messages in termination scripts? I know that various commands in different languages can be ...
2
votes
2answers
319 views

why tcl expect exit unexpectly?

On Windows, I tested a tcl expect script as followed: package require Expect spawn "cmd.exe" expect ">" send "echo hello world\r" But the output printed "F:\Workspace\>", then it exited. Of ...
4
votes
1answer
3k views

Exit batch script from inside a function

I have a problem with my batch file. It builds several programs automatically by doing something like this: set some compilation flags run 'gmake all' call the "check error level" function and if ...
2
votes
3answers
151 views

How do I know the .exe that loaded my dll is about to exit?

I have a dll which is actually a com service that is registered and then being loaded by another .exe process. I would like when the user exit from the .exe to execute some resource closing steps from ...