Link to home
Start Free TrialLog in
Avatar of thecorrs2005
thecorrs2005

asked on

DOS in Windows Xp

I dont understand why my friends install a programs in my computer.
Now, i couldn't get the command line, Windows Task manager, registry editor. I thought what i can resolved problem.

I type:
cd\
tasklist > list.exe

save as with a.bat
Now, i sure that ntsystem.exe is causing. And i want to kill this process without any software.
type: taskkill /im ntsystem.exe - i thought that my code is correct but ntsystem.exe wasn't killed

I tried with a soft like hijackthis and kill process. it's very good. What isn't good with my code?
Please tell me.
Avatar of softplus
softplus

tasklist >c:\list.txt
(txt instead of exe, no spaces after >)

But, since this is most likely a virus,worm,trojan,adware,spyware,whatever -- it might be a good idea to at least try the standard tools, adaware, spybot search+destroy, etc.. I have grown to like "Spyware Dr." (but it's payware)
ASKER CERTIFIED SOLUTION
Avatar of InteractiveMind
InteractiveMind
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Could run Micro Trend's web based virus detection problem House Call:

http://housecall.trendmicro.com/housecall/start_corp.asp

Good Luck,
Steve
KillProcess = "ntsystem.exe"

Set ProcessList = GetObject("winmgmts://.").InstancesOf("win32_process")

For Each Process In ProcessList
   If Process.Name = KillProcess Then
      Process.Terminate
   End If
Next
status?

> Now, i couldn't get the command line
> I type:  cd\

It looks like you can do command line. I ask if you need help actually running commands, or are only looking for ways to kill processes, for which some have made suggestions. There are other tricks to run commands or to boot differently.
Avatar of thecorrs2005

ASKER

I'm done this problem. Thanks all
Time to award points to person or persons who helped...
Please review the information on how this site works that Sirbounty has indicated...
Thank you very much all. :-)