The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    name of program that lists your windows resources?

    Discussion in 'Security and Anti-Virus Software' started by irata, Apr 9, 2009.

  1. irata

    irata Notebook Consultant

    Reputations:
    16
    Messages:
    211
    Likes Received:
    0
    Trophy Points:
    30
    theres a malware/virus identfying type program out there that compiles a list of your processes so users can see to indentify an possible viruses or memory leaks

    name is totally escaping me right now
     
  2. beige

    beige Notebook Deity

    Reputations:
    105
    Messages:
    779
    Likes Received:
    1
    Trophy Points:
    30
    i use the normal task manager for that :) i know nearlly how much each program take memory so when it takes more memory or there is a weird task taking alot of memory i check my pc
     
  3. McGrady

    McGrady Notebook Virtuoso

    Reputations:
    1,400
    Messages:
    3,376
    Likes Received:
    0
    Trophy Points:
    105
    Yeah idk what program you are referring to, but my system monitoring tool is Rainmeter.
     
  4. Carrot Muncher

    Carrot Muncher Notebook Evangelist

    Reputations:
    71
    Messages:
    463
    Likes Received:
    0
    Trophy Points:
    30
    Only thing I can think of is this?
     
  5. irata

    irata Notebook Consultant

    Reputations:
    16
    Messages:
    211
    Likes Received:
    0
    Trophy Points:
    30
    ah i remembered it was hijackthis. reps for anyways
     
  6. Carrot Muncher

    Carrot Muncher Notebook Evangelist

    Reputations:
    71
    Messages:
    463
    Likes Received:
    0
    Trophy Points:
    30
    Ah of course, well done for remembering. I hate when that happens.
     
  7. AKAJohnDoe

    AKAJohnDoe Mime with Tourette's

    Reputations:
    1,163
    Messages:
    3,017
    Likes Received:
    0
    Trophy Points:
    105
    Here is a little batch program I wrote that I run now and again to see what is talking to whom. Save it as a .bat or a .cmd filetype, naming it whatever filename you like and run it. You may need to tweak your command prompt window size to allow for scrolling or risk having the output roll off the screen.



    @echo off

    tasklist /svc

    echo.

    netstat -a -o -f | find /V "%COMPUTERNAME%:" | find /V "*:*" | find /V "Active Connections"

    echo.
    echo *** End of List ***
    echo.