Tagged Questions

This refers to the process where a computer's power state is systematically (and preferably gracefully) changed to a powered-off state. In this state, it can be unplugged without loss of data or damage to the hardware.

learn more… | top users | synonyms

36
votes
13answers
38k views

How to shutdown the computer from C#

What's the best way to shutdown the computer from a C# program? I've found a few methods that work - I'll post them below - but none of them are very elegant. I'm looking for something that's simpler ...
19
votes
5answers
390 views

Force application close on system shutdown

I have a Windows Forms application that when the Main Window is closing, it displays a basic dialog box, confirming the action. If the user decides to cancel the application exit is cancelled. ...
16
votes
3answers
3k views

How to simulate windows shutdown while debugging?

I have an issue with my application when windows shuts down - my app isn't exiting nicely, resulting in the End Task window being displayed. How can I use the debugger to see what's going on? e.g. is ...
16
votes
6answers
10k views

Shutting down a computer using Java

Is there a way to shutdown a computer using a built-in Java method?
15
votes
6answers
7k views

How to exit a WPF app programmatically?

In the few years I've been using C# (WINFORMS), I've never used WPF. But now I love WPF, but I don't know how the hell I am supposed to exit my application when the user clicks on the Exit menu item ...
15
votes
3answers
13k views

How can I run a Perl script as a system daemon in linux?

What's a simple way to get a Perl script to run as a daemon in linux? Currently, this is on CentOS. I'd want it to start up with the system and shutdown with the system, so some /etc/rc.d/init.d ...
12
votes
4answers
7k views

Possible to abort shutdown on Linux? [closed]

I'm familiar with and use shutdown in Linux, and typically just do > shutdown -h now But is there a way to stop shutdown from happening, say if I aim to shutdown 10 minutes from now and then in ...
10
votes
7answers
7k views

Close a WP7 application programatically? [closed]

Possible Duplicate: Windows Phone 7 close application How do I programatically close a WP7 application?
10
votes
4answers
5k views

close vs shutdown socket?

In C, I understood that if we close a socket means the socket will be destroyed and can be re-used later. How about shutdown? The description said it close half of a duplex connection to that socket. ...
10
votes
5answers
6k views

How to get shutdown hook to execute on a process launched from Eclipse

I have a shutdown hook in my application (created using Runtime.getRuntime().addShutdownHook). However if I launch the application from within Eclipse, when it is shut-down the shutdown hook doesn't ...
10
votes
10answers
12k views

How do I Shutdown - Restart - Logoff Windows via bat file

I've been using Remote Desktop to get into a workstation but I'm not able to use the shutdown/restart function in the Start menu while doing this. I've put a few really helpful options in the ...
9
votes
3answers
410 views

How to send Shutdown command to process through CMD Prompt on Windows

I'm currently working as software developer and I'm using bunch of tools, so I need to close them all when finished with the work. So what I have done I have created batch file with the tskill command ...
9
votes
2answers
2k views

How to detect whether Windows is shutting down or restarting

I know that when Windows is shutting down, it sends a WM_QUERYENDSESSION message to each application. This makes it easy to detect when Windows is shutting down. However, is it possible to know if the ...
9
votes
2answers
1k views

How to abort shutdown in Windows (XP|Vista) programatically?

I want to be able to detect and abort OS shutdown from my application, preferably by using the Windows API. I know that it is possible to do this manually using the command shutdown -a In the worst ...
8
votes
7answers
2k views

Send windows message to a Windows Service

Is there any tool to send (mimic) a windows message like 'WM_ENDSESSION' to a windows service? OR How can I send a windows message to a process using C#? (I know only C#) EDIT: Purpose: Basically ...
7
votes
5answers
83 views

When Shutdown Hooks Break Bad

If I add a shutdown hook to my Java program's runtime like so: public class MyShutdownHook implements Runnable { @Override public void run() { // Stuff I want executed anytime ...
7
votes
2answers
226 views

How to know whether a shutdown is currently in progress?

In Tomcat, when the server is being shut down, it tries to set all static variables in classes it knows of to null. By touching these classes, their static initializers are run, which can result in an ...
7
votes
3answers
2k views

How to shutdown Derby In Memory Database Properly

I'm using derby as an embedded database. Furthermore, I'm using it's in memory database option for my unit tests. What I can't figure out is how to properly shut down (A quick look at the code) the ...
7
votes
4answers
3k views

How do I get rid of Java child processes when my Java app exits/crashes?

I launch a child process in Java as follows: final String[] cmd = {"<childProcessName>"}; Process process = Runtime.getRuntime().exec(cmd); It now runs in the background. All good and fine. ...
6
votes
4answers
4k views

shutdown hook for java web application

I need to save some data preferrably when the java web application is stopped, or when tomcat is stopped. how can this be done? Edit: any drawback if I use the jvm shutdown hook?
6
votes
8answers
6k views

Best Way to Gracefully Shutdown a Java Command Line Program

I'm interested in different approaches to gracefully shutting down a Java command line program. Sending a kill signal is not an option. I can think of a few different approaches. Open a port an ...
5
votes
4answers
199 views

How to determine that a PHP script is in termination phase?

Is there any function / global variable in PHP that returns the current state of the script (something like runnning, terminating)? Or is the only way to set this state by making use of ...
5
votes
4answers
171 views

Is it bad for a java application to shutdown while a separate thread is sleeping?

For example if i have a java command line program that spawns a new thread (thread #2) to do some polling, and then sleep for 5 minutes. while the main thread (thread #1) of the program is running and ...
5
votes
4answers
175 views

How do you close an application when some WaitHandle is in the middle of a call to WaitOne?

Is there a standard way to close out an application "cleanly" while some WaitHandle objects may be in the state of a current blocking call to WaitOne? For example, there may be a background thread ...
5
votes
3answers
3k views

How can I get the Windows last reboot reason

I'd like to know what is the Windows API function (if any exists) that provides information about the last Windows reboot source. There are three main possible causes: The computer crashed on a blue ...
5
votes
3answers
1k views

Best way to shutdown an OSGi Container (specifically equinox)

I'm looking for a best practice on shutting down an OSGi container. Currently we are using a small launcher app which calls EclipseStarter.startup() and installs some core bundles. After that the ...
5
votes
6answers
773 views

How do I shutdown the computer?

How to shutdown my computer using C#?
5
votes
3answers
441 views

Ascertaining a shutdown is closing my application

Is it possible in .NET to ascertain whether my application is closing due to Windows being given a shutdown command (as opposed to any old application closing) in order to either write out some ...
4
votes
2answers
53 views

Register all interface instances to some global container

I need to shutdown alot of differently implemented threads which only have some Shutdown interface in common. I don't want to pass some global collection through the entire code and add newly created ...
4
votes
2answers
124 views

Any cases Where close() is preferred to shutdown()?

I am a developer on an open source project and I have been having some problems with the server thinking it has answered a socket completely (meaning it has either sent a reply or closed it's end in ...
4
votes
5answers
135 views

How do I keep a python HTTP Server up forever?

I wrote a simple HTTP server in python to manage a database hosted on a server via a web UI. It is perfectly functional and works as intended. However it has one huge problem, it won't stay put. It ...
4
votes
3answers
151 views

Controlled application shut-down strategy

Our (Windows native C++) app is composed of threaded objects and managers. It is pretty well written, with a design that sees Manager objects controlling the lifecycle of their minions. Various ...
4
votes
3answers
2k views

Shutdown Windows with Java

Is it possible to shutdown Windows programmatically with Java? Cheers
4
votes
3answers
421 views

How to bring a system out of standby programatically?

Is there a way to do it in c# or vb.net? I have to bring a system out of standby and play a notification sound if it is in standby mode, at specific time intervals. Is this possible?
4
votes
4answers
1k views

Determine exit status within the java shutdown hook thread

I would like to determine the exit status of the process during the shutdown hook runtime. I want to have a logic which is based on the status code (0 or nonzero) (ex: if zero do nothing else ...
4
votes
3answers
443 views

VB6 application won't shutdown when .net form open. Instead it displays message “Cannot Quit”

I have a VB6 application that uses several components written in .net. The application must shutdown gracefully when windows is shut down. The problem is that if the .net part of the code is ...
4
votes
5answers
1k views

Prompt user to save when closing app

I'm writing what boils down to a document editor. When the application is closing, I need to prompt the user to save changes. This is easy enough. My question is when is it appropriate to not prompt ...
4
votes
4answers
923 views

Temporarily prevent linux from shutting down

I have a backup script that runs in the background daily on my linux (Fedora 9) computer. If the computer is shut down while the backup is in progress the backup may be damaged so I would like to ...
3
votes
3answers
178 views

How to kill a child process spawned by Java when tomcat is shutdown

I have written a service for JIRA(a web application runs in tomcat) which runs periodically(say 1 hour). Basically, the service executes a system command thru runtime.exec(command) and parses the ...
3
votes
5answers
194 views

Shutdown Hook c++

is there some way to run code on termination, no matter what kind termination (abnormal,normal,uncaught exception etc.)? I know its actually possible in Java, but is it even possible in C++? Im ...
3
votes
1answer
170 views

How to shutdown machine from ASP.NET

I have a machine running Windows Home Server v1 (WHS is based on Windows Server 2003 and is runningh IIS6) and on here I have a restful webservice running which I build in C# VS2008 (dotnet 3.5). ...
3
votes
1answer
140 views

C program that can recieve shutdown/terminate requests from linux/upstart/ubuntu

I have a coded a program in C for linux. At the moment I am using ubuntu upstart to run as a background service. I want to be able to have the program gracefully shutdown when commanded instead of ...
3
votes
3answers
3k views

Run a batch file on Windows 7 shutdown before closing programs (preferrably on power button press)

I have a Windows 7 box with multiple VMWare Player machines that are started on boot. I use WMWare VIX and a batch file to shutdown the virtual machines like so: "C:\path\to\VMWare VIX\vmrun.exe" ...
3
votes
1answer
529 views

notify View(Models) of closing the program

So I got my prism/mvvm/mef program running nicely along, the user is entering data in the application, then closes the application (or shuts down the computer). How can I get my View(Model) notified ...
3
votes
1answer
100 views

PHP shutdown: Can't write files?

I'm using a Log class to store messages during execution, and then it is supposed to write these messages to a file on shutdown (with register_shutdown_function). But for some reason, I'm always ...
3
votes
2answers
110 views

Stop a Asyncronous TCP Application Properly

Hi i have a disconnect button click event in my SERVER application as follows.Before it dc, it will alert other clients by sending a "/exit" command.After that it will shutdown its connection. ...
3
votes
2answers
379 views

What does the JBoss 5 shutdown do?

At a high level, what does JBoss 5's shutdown do? What might go wrong if I just kill the java process instead of gracefully shutting down JBoss? A graceful JBoss 5 shutdown takes about 6 minutes for ...
3
votes
1answer
1k views

Prevent Windows 7 Shutdown

I know that shutdown -a will abort a Windows shutdown, but I need to know if there is anything any where I can check for to see if a shutdown is in progress. Ideally, I'd like a small program like ...
3
votes
3answers
264 views

The OS doesn't shutdown, but my application does

I have an application which when I close the Windows, it exits gracefully and quickly (checked also in Task Manager and Process Explorer - the process isn't there anymore) but the OS doesn't. It seems ...
3
votes
6answers
2k views

How to Safely Force Shutdown of Mac

What I want I'm developing a little app to force me to only work at certain times of day - I need something to force me to stop working in the evenings so I can be more effective in the day. The ...

1 2 3 4 5