ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    How can I list running processes on all domain computers

    IT Discussion
    discovery users leaving crap
    3
    6
    1.5k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • JaredBuschJ
      JaredBusch
      last edited by

      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.

      1 Reply Last reply Reply Quote 1
      • Reid CooperR
        Reid Cooper
        last edited by

        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.

        JaredBuschJ 1 Reply Last reply Reply Quote 0
        • JaredBuschJ
          JaredBusch @Reid Cooper
          last edited by

          @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.

          1 Reply Last reply Reply Quote 0
          • Reid CooperR
            Reid Cooper
            last edited by

            What about a for loop and PsList?

            1 Reply Last reply Reply Quote 0
            • Reid CooperR
              Reid Cooper
              last edited by

              Holy necro-post! Four years ago!

              1 Reply Last reply Reply Quote 2
              • scottalanmillerS
                scottalanmiller
                last edited by

                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}
                
                1 Reply Last reply Reply Quote 0
                • 1 / 1
                • First post
                  Last post