Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8654783
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T14:52:14+00:00 2026-06-12T14:52:14+00:00

I need to gracefully terminate (either via .bat or .vbs) a specific app in

  • 0

I need to gracefully terminate (either via .bat or .vbs) a specific app in order to safely overwrite a (read-only) file in its directory and then delete all files in one of its sub-directories.

I had something like this in mind:

@echo off
taskkill /t /im App.exe
ping -n 5 127.0.0.1 > nul
xcopy /y /r "C:\Some path\My File.ext" "C:\App path"
Del /f /q "C:\App path\App sub-directory\*.*"

Rather than waiting a fixed amount of time (5 seconds in the above example) I would like the 2 last commands to be executed only when the taskkill is complete (i.e. the app is closed after eventual prompts have been resolved by the user).

Is there a way to do that?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T14:52:16+00:00Added an answer on June 12, 2026 at 2:52 pm

    In batch you could do it like this:

    @echo off
    
    setlocal EnableDelayedExpansion
    
    for /f "tokens=2" %%p in ('tasklist /fi "imagename eq App.exe" /fo list ^| find "PID:"') do set pid=%%p
    
    taskkill /t /pid %pid%
    
    :wait
    ping -n 2 127.0.0.1 >nul
    tasklist /fi "pid eq %pid%" /fo list | find "PID:"
    if %errorlevel% equ 0 goto wait
    
    xcopy /y /r "C:\Some path\My File.ext" "C:\App path"
    del /f /q "C:\App path\App sub-directory\*.*"
    
    endlocal
    

    I’d prefer VBScript for this, though.

    Set wmi = GetObject("winmgmts://./root/cimv2")
    Set sh  = CreateObject("WScript.Shell")
    query = "SELECT * FROM Win32_Process WHERE Name = 'App.exe'"
    
    For Each p In wmi.ExecQuery(query)
      ' p.Terminate would forcibly terminate the process (like "taskkill /t /f")
      sh.Run "taskkill /t /pid " & p.ProcessId, 0, False
    Next
    
    Do While wmi.ExecQuery(query).Count > 0
      WScript.Sleep 100
    Loop
    
    Set fso = CreateObject("Scripting.FileSystemObject")
    If fso.FileExists("C:\App path\My File.ext") Then
      fso.DeleteFile "C:\App path\My File.ext", True
    End If
    fso.CopyFile "C:\Some path\My File.ext", "C:\App path\", True
    fso.DeleteFile "C:\App path\App sub-directory\*.*", True
    

    Instead of deleting the destination file, you could also remove the read-only flag:

    Set f = fso.GetFile("C:\App path\My File.ext")
    f.Attributes = f.Attributes And Not 1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Need to apply a filter to a file like this: TUPAC_0006:1:1:2554:2356#0/1 0 * 0
Need some help... I have jasperserver 4.1 installed on my ubuntu. It runs via
I have an application that processes file transfers. In some instances, I need to
I need to be able to gracefully stop a consumer (worker) who works in
I need to terminate the running threads to shutdown application. After executing common application
I need to gracefully shutdown mongod.exe that is started with System.Diagnostics.Process in RoleEntryPoint.OnStop() method.
I need to read from NetworkStream which would send data randomly and the size
I am running some java apps and I need to shutdown/close all apps gracefully
We need the ability to gracefully resize any photo/image to an exact width/height without
I need to make sure that user can run only one instance of my

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.