modified script

This commit is contained in:
Brian Warren 2025-07-15 15:54:10 -05:00
parent 2564826c6d
commit 94ee62e61d

View File

@ -1,26 +1,24 @@
@echo off
setlocal
@REM StationManager (graceful)
taskkill /im stationmanager.exe
@REM Wait for StationManager finish trying to stop the processes before force-killing everything.
set WaitToClosePeriod=10
ping -n %WaitToClosePeriod% 127.0.0.1 >nul
ping -n 11 127.0.0.1 >NUL
@REM Aero
taskkill /fi "IMAGENAME EQ aero*" /f
@REM AirportApps
taskkill /fi "IMAGENAME EQ airportapps*" /f
@REM APM
@REM Airport Portal
taskkill /fi "IMAGENAME EQ airportportalapm*" /f
@REM Gate Reader
taskkill /fi "IMAGENAME EQ gatereader*" /f
@REM PRS
@REM Jet
taskkill /fi "IMAGENAME EQ jet*" /f
@REM Passport Reader
taskkill /fi "IMAGENAME EQ passportreadercommonuse*" /f
@REM QSS
@ -51,5 +49,3 @@ taskkill /im goual.exe /f
@REM Station Manager (forced)
taskkill /im stationmanager.exe /f
endlocal