Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to write a batch file that updates a DLL that is in use by a running process, a regular application.

To do this, the plan is to stop the process, copy the DLL to the required location, then restart the process.

I know I can try to kill a process with taskkill. How can I make sure the process has fallen over and died, after I shoot it?

share|improve this question

1 Answer

up vote 2 down vote accepted

Here's what I used. It's a subroutine in a batch file.

set tasklist=%windir%\System32\tasklist.exe
set taskkill=%windir%\System32\taskkill.exe
set wasStopped=0

-------------------------------------------------------
:STOPPROC
set procFound=0
set notFound_result=ERROR:
      set procName=%1
for /f "usebackq" %%A in (`%taskkill% /IM %procName%`) do (
    if NOT %%A==%notFound_result% (set procFound=1)
)
if %procFound%==0 (
  echo The process was not running.
  goto :EOF
)
set wasStopped=1
set ignore_result=INFO:
:CHECKDEAD
"%windir%\system32\timeout.exe" 3 /NOBREAK
for /f "usebackq" %%A in (`%tasklist% /nh /fi "imagename eq %procName%"`) do (
    if not %%A==%ignore_result% (goto :CHECKDEAD)
)
goto :EOF
-------------------------------------------------------

To use it from within a batch file, do like this:

  call :STOPPROC notepad.exe
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.