Hello everyone,
I am trying making a BAT file that will close a program and open the same program but a only its a different version...I have it working correctly but the only thing is wrong is that the CMD windowWILL NOT CLOSE AUTOMATICALLY...here is the script:
--------------------------------------------------------------------------
@echo off
:: end task
taskkill /im example.exe
::delete
IF EXIST "C:\Windows\System32\example.exe" del "C:\Windows\System32\example.exe"
end
--------------------------------------------------------------------------------
Thanks for the help in advance! Cheers!