Forum Discussion

subbu_valliappa's avatar
subbu_valliappa
Contributor
11 years ago

"Access is denied" issue in scripting

We have this script to terminate a process if it still exists: //terminate process if it still exists p := Sys.WaitProcess('propx32'); if p.Exists then   begin     p.Terminate(); ...