• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Important: Using taskkill to kill a process?

astroview

Golden Member
I'm using Taskkill in a Windows XP batch file to kill outlook.exe and backup its files.

Is this safe to do or not guys?


syntax:
"taskkill /IM outlook.exe"


 
Does it force kill it, or does it send it a quit message and let Outlook exit gracefully? If it force kills it, you will eventually corrupt your pst file.
 
When I used it this was outputted:

SUCCESS: The process "OUTLOOK.EXE" with PID 1784 has been terminated.

Not sure if thats good or not.
 
well you might make the batch file back up the pst file first, then kill outlook, just in case the killing part corrupts it.. unless it wont let you copy the pst file while outlook is running
 
That's the problem, Windows won't let you read open files (which is really stupid) so you can't copy it while Outlook is open.
 
Back
Top