Forum Discussion

rushikesh's avatar
rushikesh
Contributor
8 years ago

How to avoid error in log when code to check process.Exists is executed.

Hi,   I am running below code   function KillProcess(App) { // Checks whether the process is closed if (Sys.Process(App).Exists) // Terminates the process { process.Terminate(); } }   ...