Task Manager has been disabled due to active number of applications
Task manager has been disabled by your administrator.
Â
Obviously the task manager was disabled by the administrator. So, before doing something you must contact your administrator first to enable your task manager.
Â
If you are the administrator of this machine or computer unit and didn’t do anything to disable the task manager, your computer is virus infected. Folder.Exe virus is well known to this kind of attack. Free your computer from virus and after that, work for the area where the virus attacked on your operating system.
Â
You may find free software out there on the internet to removed viruses in your computer or you may purchase with a license anti-virus like Norton anti-virus, Kaspersky etcetera. Or remove your hard disk drive from your computer and go to your friends and ask him to scan your hard disk drive and free from virus. You may purchase an external USB enclosure that you can connect your hard disk drive to your friend’s computer. You can also connect your hard disk drive inside your friend’s computer by making it as his secondary hard disk drive.
Â
After cleaning your hard disk drive from viruses, you may now proceed on enabling your task manager and other disabled areas of your operating system.
Â
To enable your task manager, you can do four options.
Â
Our first option is to edit the group policy:
-
Click start then run, on the run dialog type gpedit.mcs then click Ok.
On the Group Policy Editor Navigate the following keys:
-
User Configuration/Administrative Templates/System/Ctrl+Alt+Delete Options.
-
Double click the Remove Task Manager Option at the right pane then select Disable then click Ok or apply settings.
-
Note: Changes shall take effect after restarting.
-
Our second option is to edit the system registry (This may apply to those Operating Systems that has no Group Policy Editor). Windows XP Home edition doesn’t have Group Policy Editor:
Â
-
Click start then run, on the run dialog type regedit then click ok.
-
On the registry edit window, navigate the following keys:
-
HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Policies/System.
-
On the right pane, double click the Disable TaskMgr then change the value to 0. 0 means false and 1 is true. True if you want to disable the task manager.
-
Navigate also these keys:
-
HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/CurrentVersion/Policies/System.
-
On the right pane, double click the Disable TaskMgr then change the value to 0.
-
Our third option is to enable it using Visual Basic Script or a VBS file. We have a copy here for VBS code created by Pathetic Cockroach which is according to him a code based on the idea of Doug Knox. All you need to do is open your notepad and copy the code below and save as Enable TaskMgr.vbs then execute the script.
Â
'Enable/Disable Task Manager:
Â
'By PatheticCockroach – based on an idea by Doug Knox.
Â
Â
'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 = "HKCUSoftwareMicrosoftWindowsCurrentVersionPoliciesSystemDisableTaskMgr"
Â
val2 = "HKLMSoftwareMicrosoftWindowsCurrentVersionPoliciesSystemDisableTaskMgr"
Â
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
Â
And our last option is looking for the noobkiller by leerz on the internet and download it. That tool is equipped with so many options to enable almost all disabled items in your windows operating system. It has also tools to remove specific worms and viruses. Please be noted that whatever happened to your operating system is not my responsibility. Download at your own risk.