How can I list running processes on all domain computers
-
Ok,
How can I quickly scan my domain (or a subset of it) for a list of running executables?Users being users leave applications running overnight that I want to push out updates for.
-
I assume you want this for Windows? I'm guessing a neat PS script would do the trick. Loop through the hostnames and return the process list.
-
@Reid-Cooper said:
I assume you want this for Windows? I'm guessing a neat PS script would do the trick. Loop through the hostnames and return the process list.
Yeah, something like that is probably where I need to go.
For the server, I can simply use "net files" for things running on a share.(most things). But there are a couple exe on local PC.
-
What about a for loop and PsList?
-
Holy necro-post! Four years ago!
-
Cleaning up some spam posts and including this suggestion that was on the site but hidden in spam so that we won't miss the spam:
Get-ADComputer -Filter {OperatingSystem -Like “Windows 10*”} | ForEach-Object {Get-WmiObject -Class Win32_Process -Computer $_.Name}