You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tell application "System Events" set procs to every process whose visible is true set info to {} repeat with i from 1 to count of procs set procList to {} set proc to item i of procs try copy unix id of proc to the end of procList copy name of proc to the end of procList copy creator type of proc to the end of procList set fvar to file of proc set p to (POSIX path of fvar) copy p to the end of procList copy bundle identifier of proc to the end of procList copy architecture of proc to the end of procList copy procList to end of info end try end repeat return infoend tell