Skip to main content

All Questions

Tagged with
91 votes
2 answers
352k views

run powershell command from cmd

how i can run this command from cmd : powershell.exe "(get-process | ? {$_.Description -eq "Sysinter Process Explorer"}) | select processname | out-file $env:APPDATA\example.txt" i still get ...
Qassam Mahmoud's user avatar
59 votes
7 answers
160k views

Tasklist shows process but taskkill is unable to kill it, even as admin

I am trying to kill chrome on my computer. I ran command prompt as an admin and ran: C:\WINDOWS\system32>tasklist /FI "IMAGENAME eq chrome.exe" This returned one item: Image Name ...
Jon's user avatar
  • 9,325
44 votes
3 answers
85k views

How to show full command line of all processes in Windows

On Windows, in the Task Manager it is possible to see the command line of each processes but it is truncated. How can I see the complete command line of each running process?
qwertzguy's user avatar
  • 2,604
1 vote
1 answer
871 views

How do I kill processes which are running with a given executable path?

I know already how I can kill all java.exe processes taskkill /F /IM java.exe But when it comes to a full executable path D:\Program Files\Java\jdk1.8.0_331\bin\java.exe, how do I do ? I'm asking ...
Sybuser's user avatar
  • 183