About 286,000 results
Open links in new tab
  1. Powershell Get-Process : Couldn't connect to remote machine

    Jul 21, 2014 · Check the "Get-Help" of Get-Process. -ComputerName This parameter does not rely on Windows PowerShell remoting. You can use the ComputerName parameter of Get …

  2. Get a list of processes and their CPU usage - Reddit

    Apr 9, 2021 · Get-Process | Where-Object {$_.CPU -gt 10} Ran this script a bunch of times. The CPU values don't seem to change all that much. Even when you make drastic changes. Not …

  3. With Powershell, how can I get the id of a process owned by a …

    Using Powershell, I want to do the equivalent of Unix ps -auxc | grep Emacs kill -9 364 (Assuming 365 was the pid the first command told me.) How do I do that? I find it incredibly hard to get

  4. linux - How to get pid of just started process - Server Fault

    in a bash script, in a loop which starts programs, $! is not accurate. Sometimes it returns pid of the script itself, sometimes of grep or awk run from the script any solution to specifically get the pid …

  5. How to ignore an error in Powershell and let it continue?

    Nov 30, 2011 · I am trying to see if a process is running on multiple servers and then format it into a table. get-process -ComputerName server1,server2,server3 -name explorer | Select-Object …

  6. When I run get-process \ where handles it doesn't show a ... - Reddit

    Mar 16, 2024 · When I run get-process \ where handles it doesn't show a handles column, am I missing something? I'm following a YouTube tutorial from Jeffrey Snover (inventor of …

  7. Fetching the "main" process ID? : r/PowerShell - Reddit

    Dec 4, 2023 · I queried processes named "chrome" using a PowerShell script: Get-Process -Name chrome -ErrorAction SilentlyContinue This command returns all process IDs associated …

  8. How to get all processes under a session of a particular process …

    Aug 17, 2020 · I want to list and kill all processes belonging to a session of a particular process that is using a port. This should happen through a windows batch command that would accept …

  9. I can remotely Get-Service but can't Get-Process or Get-Eventlog

    Jun 19, 2024 · Get-Process uses performance counters API and Windows Remote Registry Protocol Get-EventLog uses System.Diagnostics.EventLog which uses the EventLog …

  10. Is it possible to hide a process from Get-Process ? : r/PowerShell

    Mar 18, 2023 · Is it possible to hide a process from Get-Process ? I have a system, I'm almost positive, is running a file but it's not coming up in Get-Process.I've tested this same application …