Tagged Questions

5
votes
5answers
1k views

Files being used by a unix process

The fuser command lets me know which processes are using a file or directory. I'm looking for command that does the opposite: lets me know which files are being used by a process …
2
votes
2answers
476 views

How to get the process ID of the current Excel, throught VBA, without relying on finding the window by the caption?

How can I get the process ID of the current Excel instance, that my VBA code is running in, without asking for it by the name in the caption... which causes a problem when I have t …
1
vote
6answers
413 views

How can I list all processes running in Windows?

Hello world. I would like to find a way to loop through all the active processes and do diagnostics checks on them (mem usage, cpu time etc) kinda similar to the task manager. T …