Possible workarounds: 1. Kill identified process Ids from task manager - either manually or script based 2. Add a custom %AW_HOME%\exec\USER_KILLJOBS.bat script to parse process ids and kill tasks, send notifications, etc. Below is additional information on USER_KILLJOBS The USER_KILLJOBS script is called by KILLJOBS (executed when a task killed). The KILLJOBS script passes the Main process ID as the first parameter to the USER_KILLJOBS script. Below is a simple example of how to take the first parameter and kill all pids; however, this would need to be modified to your business needs. @echo on echo "In User Kill Jobs" >>%SQLOPER_HOME%\log\kill.%jobid%.log set spawn_pid=%1 echo "killing pid %spawn_pid%" >>%SQLOPER_HOME%\log\kill.%jobid%.log taskkill /f /t /pid %spawn_pid% echo "exiting user kill" >>%SQLOPER_HOME%\log\kill.%jobid%.log
Resolved:
Applications Manager 9.3.1 - Pending Release (Fall 2019)