Câu hỏi

28/05/2013 07:36
Cách tìm lại task manager.Mình bi vius giờ không thấy nó đâu nữa???Ai chỉ dùm nào
Danh sách câu trả lời (3)

cũng cần lưu ý rằng quét bằng BKAV trước khi cài Kaspersky mới chịu nha. Tại con này nó không cho Kaspersky chạy khi khởi động vì thế xử vòng 1 bằng BKAV trước.

Mình cũng bị như bạn, nhưng giờ mình đã xử được con virus này rồi.
Trước hết bạn tải chương trình quét virus Kaspersky về quét Virus ( Con này nó lây nhiễm hầu hết các file .exe và cả trong thư mục System Volume Information)
Sau khi quét xong bạn làm theo mình:
Start -> Run gõ lệnh gpedit.msc
- Mở Regedit
Vào User Configuration, chọn Administrative Templases -> System -> Click vào dòng: Prevent access to registry editing tools -> chọn Disables
- Mở task managerVào User Configuration, chọn Administrative Templases -> System -> Ctrl + alt +del option -> click vào dong: Remote task manager -> chon disables.
chúc thành công
Trước hết bạn tải chương trình quét virus Kaspersky về quét Virus ( Con này nó lây nhiễm hầu hết các file .exe và cả trong thư mục System Volume Information)
Sau khi quét xong bạn làm theo mình:
Start -> Run gõ lệnh gpedit.msc
- Mở Regedit
Vào User Configuration, chọn Administrative Templases -> System -> Click vào dòng: Prevent access to registry editing tools -> chọn Disables
- Mở task managerVào User Configuration, chọn Administrative Templases -> System -> Ctrl + alt +del option -> click vào dong: Remote task manager -> chon disables.
chúc thành công

1. Khôi phục Task manager:
Cách 1: Mở notepad lên (bằng cách đơn giản là nhập lênh notepad vào cửa sổ Run của Windows) và nhập vào nội dung sau:
REGEDIT4
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\System]
"DisableTaskMgr"=-
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\Policies\System]
"DisableTaskMgr"=-
Lưu lại với tên tùy ý, đuôi mở rộng là .reg Sau đó hãy chạy file này bằng cách nhấn đúp chuột lên file hoặc nhấn chuột phải và chọn Merge.
Cách 2: Mở notepad lên và nhập vào nội dung sau:
'Enable/Disable Task Manager
'This code may be freely distributed/modified as long as it remains free of charge
Option Explicit
'Declare variables
Dim WSHShell, rr, rr2, MyBox, val, val2, ttl, toggle
Dim jobfunc, itemtype
On Error Resume Next
Set WSHShell = WScript.CreateObject("WScript.Shell")
val = "HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\System\DisableTaskMgr"
val2 = "HKLM\Software\Microsoft\Windows\CurrentVersion\Pol icies\System\DisableTaskMgr"
itemtype = "REG_DWORD"
jobfunc = "Task Manager is now "
ttl = "Result"
'reads the registry key value.
rr = WSHShell.RegRead (val)
rr2 = WSHShell.RegRead (val2)
toggle=1
If (rr=1 or rr2=1) Then toggle=0
If toggle = 1 Then
WSHShell.RegWrite val, 1, itemtype
WSHShell.RegWrite val2, 1, itemtype
Mybox = MsgBox(jobfunc & "disabled.", 4096, ttl)
Else
WSHShell.RegDelete val
WSHShell.RegDelete val2
Mybox = MsgBox(jobfunc & "enabled.", 4096, ttl)
End If
Lưu lại với tên tùy ý, đuôi mở rộng là .VBS (Visual Basic Script). Thực thi file này bằng cách nhấn đúp chuột lên file đó.
Bạn có thể thực hiện bằng 1 trong 2 cách đã đưa ra ở trên. Cách tạo file VBS có thể chạy tốt trên Windows 2K và XP.
2. Khôi phục Registry Editor:
Cách 1: Mở notepad lên (bằng cách đơn giản là nhập lênh notepad vào cửa sổ Run của Windows) và nhập vào nội dung sau:
REGEDIT4
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\System]
"DisableRegistryTools"=-
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\Policies\System]
"DisableRegistryTools"=-
Lưu lại với tên tùy ý, đuôi mở rộng là .reg Sau đó hãy chạy file này bằng cách nhấn đúp chuột lên file hoặc nhấn chuột phải và chọn Merge. Cách này chỉ chạy tốt trên Win 2K còn Windows XP thì không được.
Cách 2: Mở notepad lên và nhập vào nội dung sau:
'Enable/Disable Registry Editing tools
'This code may be freely distributed/modified as long as it remains free of charge
'Edited by Trung - http://www.netika.com
Option Explicit
'Declare variables
Dim WSHShell, rr, rr2, MyBox, val, val2, ttl, toggle
Dim jobfunc, itemtype
On Error Resume Next
Set WSHShell = WScript.CreateObject("WScript.Shell")
val = "HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\System\DisableRegistryTools"
val2 = "HKLM\Software\Microsoft\Windows\CurrentVersion\Pol icies\System\DisableRegistryTools"
itemtype = "REG_DWORD"
jobfunc = "Registry Editing Tools are now "
ttl = "Result"
'reads the registry key value.
rr = WSHShell.RegRead (val)
rr2 = WSHShell.RegRead (val2)
toggle=1
If (rr=1 or rr2=1) Then toggle=0
If toggle = 1 Then
WSHShell.RegWrite val, 1, itemtype
WSHShell.RegWrite val2, 1, itemtype
Mybox = MsgBox(jobfunc & "disabled.", 4096, ttl)
Else
WSHShell.RegDelete val
WSHShell.RegDelete val2
Mybox = MsgBox(jobfunc & "enabled.", 4096, ttl)
End If
Cách 1: Mở notepad lên (bằng cách đơn giản là nhập lênh notepad vào cửa sổ Run của Windows) và nhập vào nội dung sau:
REGEDIT4
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\System]
"DisableTaskMgr"=-
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\Policies\System]
"DisableTaskMgr"=-
Lưu lại với tên tùy ý, đuôi mở rộng là .reg Sau đó hãy chạy file này bằng cách nhấn đúp chuột lên file hoặc nhấn chuột phải và chọn Merge.
Cách 2: Mở notepad lên và nhập vào nội dung sau:
'Enable/Disable Task Manager
'This code may be freely distributed/modified as long as it remains free of charge
Option Explicit
'Declare variables
Dim WSHShell, rr, rr2, MyBox, val, val2, ttl, toggle
Dim jobfunc, itemtype
On Error Resume Next
Set WSHShell = WScript.CreateObject("WScript.Shell")
val = "HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\System\DisableTaskMgr"
val2 = "HKLM\Software\Microsoft\Windows\CurrentVersion\Pol icies\System\DisableTaskMgr"
itemtype = "REG_DWORD"
jobfunc = "Task Manager is now "
ttl = "Result"
'reads the registry key value.
rr = WSHShell.RegRead (val)
rr2 = WSHShell.RegRead (val2)
toggle=1
If (rr=1 or rr2=1) Then toggle=0
If toggle = 1 Then
WSHShell.RegWrite val, 1, itemtype
WSHShell.RegWrite val2, 1, itemtype
Mybox = MsgBox(jobfunc & "disabled.", 4096, ttl)
Else
WSHShell.RegDelete val
WSHShell.RegDelete val2
Mybox = MsgBox(jobfunc & "enabled.", 4096, ttl)
End If
Lưu lại với tên tùy ý, đuôi mở rộng là .VBS (Visual Basic Script). Thực thi file này bằng cách nhấn đúp chuột lên file đó.
Bạn có thể thực hiện bằng 1 trong 2 cách đã đưa ra ở trên. Cách tạo file VBS có thể chạy tốt trên Windows 2K và XP.
2. Khôi phục Registry Editor:
Cách 1: Mở notepad lên (bằng cách đơn giản là nhập lênh notepad vào cửa sổ Run của Windows) và nhập vào nội dung sau:
REGEDIT4
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\System]
"DisableRegistryTools"=-
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\Policies\System]
"DisableRegistryTools"=-
Lưu lại với tên tùy ý, đuôi mở rộng là .reg Sau đó hãy chạy file này bằng cách nhấn đúp chuột lên file hoặc nhấn chuột phải và chọn Merge. Cách này chỉ chạy tốt trên Win 2K còn Windows XP thì không được.
Cách 2: Mở notepad lên và nhập vào nội dung sau:
'Enable/Disable Registry Editing tools
'This code may be freely distributed/modified as long as it remains free of charge
'Edited by Trung - http://www.netika.com
Option Explicit
'Declare variables
Dim WSHShell, rr, rr2, MyBox, val, val2, ttl, toggle
Dim jobfunc, itemtype
On Error Resume Next
Set WSHShell = WScript.CreateObject("WScript.Shell")
val = "HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\System\DisableRegistryTools"
val2 = "HKLM\Software\Microsoft\Windows\CurrentVersion\Pol icies\System\DisableRegistryTools"
itemtype = "REG_DWORD"
jobfunc = "Registry Editing Tools are now "
ttl = "Result"
'reads the registry key value.
rr = WSHShell.RegRead (val)
rr2 = WSHShell.RegRead (val2)
toggle=1
If (rr=1 or rr2=1) Then toggle=0
If toggle = 1 Then
WSHShell.RegWrite val, 1, itemtype
WSHShell.RegWrite val2, 1, itemtype
Mybox = MsgBox(jobfunc & "disabled.", 4096, ttl)
Else
WSHShell.RegDelete val
WSHShell.RegDelete val2
Mybox = MsgBox(jobfunc & "enabled.", 4096, ttl)
End If
Trả lời câu hỏi
Câu hỏi lĩnh vực Câu hỏi khác
Rao vặt Siêu Vip