Forum Discussion
JDR2500
7 months agoFrequent Contributor
Using VB Script check if the process is running and if so kill it:
app_name = "Your process name here"
If Sys.WaitProcess(app_name , 2000, 1).Exists Then
Set p = Sys.Process(app_name )
p.Terminate
End If
Put it in a loop if you think you may have more than one instance running and you can kill them all. After creating the script you could call it easily enough from a keyword test.
Related Content
- 4 years ago
- 10 years ago
- 4 years ago
Recent Discussions
- 6 days ago
- 6 days ago
- 10 days ago