Share via

Process ID PID ProcessID How do I figure out what piece of software/process this ID belongs to?

Anonymous
2017-11-26T02:42:14+00:00

My event log is listing a PID/Process ID.  How do I get a list of PIDs on my computer?  How do I identify what this is?  I am running a standard home PC. This is not in a network or complex system.  It is my computer, I own it.

Windows for home | Windows 10 | Performance and system failures

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

4 answers

Sort by: Most helpful
  1. Anonymous
    2017-12-01T01:32:50+00:00

    I am still seeking general tips on how a home user (A person who purchased their family PC) can identify what programs are when the only data I am given is a PID.  I know I learned this in a very basic & general computer class.  However, I do not remember how to do it.  TechNet forums are difficult as they are not necessarily designed for home users.  90% of the posters there seem to be discussing corporate networks.  Anyone with general tips/links I am very receptive to your input.

    3 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2017-12-01T01:35:42+00:00

    I do not know what the below means.  Nor should I have to.  I am a typical computer user.  A process has been identified as a problem.  Now, I just want to figure out what that 'process' is - I have its "process ID".

    <br>The basic one, ask tasklist to filter its output and only show the indicated process id information<br><br><br><br> tasklist /fi "pid eq 4444" <br><br><br><br><br>To only get the process name, the line must be splitted<br><br><br><br> for /f "delims=," %%a in ('<br> tasklist /fi "pid eq 4444" /nh /fo:csv<br> ') do echo %%~a<br><br><br><br><br>In this case, the list of processes is retrieved without headers (/nh)<br> in csv format (/fo:csv).<br> The commas are used as token delimiters and the first token in the line is the image name<br><br><br><br>note:<br> In some windows versions (one of them, my case, is the spanish windows xp version), the pid filter in the tasklist does not work. In this case, the filter over the list of processes must be done out of the command<br><br><br><br> for /f "delims=," %%a in ('<br> tasklist /fo:csv /nh ^ findstr /b /r /c:"[^,]*,"4444","<br> ') do echo %%~a<br><br><br><br><br>This will generate the task list and filter it searching for the process id in the second column of the csv output.<br><br><br><br>edited:<br> alternatively, you can suppose what has been made by the team that translated the OS to spanish. I don't know what can happen in other locales.<br><br><br><br> tasklist /fi "idp eq 4444"
    2 people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2017-12-01T11:29:51+00:00

    We appreciate your response. Identifying processes using a process ID requires advanced level of technical expertise. In usual circumstance, errors/issues within the operating system normally generates error messages or prompts that directly lists the affected files or programs. Our TechNet forums also supports queries from home users that require elevated support for complex queries such as that of using scripts to identify processes.

    Note: If you've noted unusual behavior on your device, we'd recommend posting it here so our team can facilitate your concern. Also, this thread will remain open to allow community members to share their expertise here.

    Let us know should you need further assistance.

    0 comments No comments
  4. Anonymous
    2017-11-26T07:23:26+00:00

    Hi Tony,

    Concerns related to the elements of the event logs such as the Process ID are best discussed and facilitated in our TechNet forums. The community includes IT Professionals that would be able to provide insights on your concern. To visit the site, click on this link.

    Note: We'd also recommend checking this thread from time to time as there might be community members who would want to share their expertise in relation to your query.

    Let us know should you have other concerns that need assistance.

    0 comments No comments