Jump to content



Welcome to KnowledgeSutra - Dear Guest , Please Register here to get Your own website. - Ask a Question / Express Opinion / Reply w/o Sign-Up!
- - - - -

Enable/disable Task Manager


3 replies to this topic

#1 learning php

    Newbie

  • Kontributors
  • Pip
  • 8 posts

Posted 03 November 2007 - 05:06 PM

hi i thought i would share with you how to enable/disable your very own taskmanager.

go to Start run type regedit then press enter

and navagate to

HKEY_CURRENT_USER/Software\Microsoft\Windows\CurrentVersion\Policies\System

DisableTaskMgr

right click modify

1 = Enable
0 = Disable

and if the DisableTaskMgr isnt there then just right click in the regedit window and click New - Dword Value

and type DisableTaskMgr then set its value to 0 or 1 what ever oe you want to choose lol

also there is another solution if you dont want to mess around with the regedit which is more dangerous than the way i am showing you now

Click Start
Click Run
Enter gpedit.msc in the Open box and click OK
In the Group Policy settings window
Select User Configuration
Select Administrative Templates
Select System
Select Ctrl+Alt+Delete options
Select Remove Task Manager
Double-click the Remove Task Manager option

And as I mentioned above, since the policy is Remove Task Manager, by disabling the policy, you are enabling the Task Manager.

so click Enable to make it disable the taskmanager and it should say when you press ctrl + alt = delete

"Task Manager Disabled by Administrator"

Thanks
Aaron

Edited by learning php, 03 November 2007 - 05:11 PM.


#2 iGuest

    Hail Caesar!

  • Kontributors
  • PipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPip
  • 5,876 posts
  • Interests:Trap17 Free Web Hosting, No Ads

Posted 12 September 2008 - 02:16 PM

DisableTaskMgr this coding is working pls try..................
Enable/disable Task Manager

DisableTaskMgr


Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim regkey As RegistryKey
Dim keyValueInt As String = "1"
Dim subKey As String = "SoftwareMicrosoftWindowsCurrentVersionPoliciesSystem"

regkey = Registry.CurrentUser.CreateSubKey(subkey:=subKey)
regkey.SetValue("DisableTaskMgr", keyValueInt)
regkey.Close()
End Sub

-reply by chandan sharma

#3 euverve

    Newbie [Level 1]

  • Kontributors
  • Pip
  • 10 posts

Posted 20 November 2008 - 05:19 AM

You can also you VBScript.

Quote

'Enable/Disable Task Manager

Option Explicit

'Declare variables
Dim WSHShell, n, MyBox, p, t, mustboot, errnum, vers
Dim enab, disab, jobfunc, itemtype

Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\"
p = p & "DisableTaskMgr"
itemtype = "REG_DWORD"
mustboot = "Log off and back on, or restart your pc to" & vbCR & "effect the changes"
enab = "ENABLED"
disab = "DISABLED"
jobfunc = "Task Manager are now "

'This section tries to read the registry key value. If not present an
'error is generated. Normal error return should be 0 if value is
'present
t = "Confirmation"
Err.Clear
On Error Resume Next
n = WSHShell.RegRead (p)
On Error Goto 0
errnum = Err.Number

if errnum <> 0 then
'Create the registry key value for DisableRegistryTools with value 0
WSHShell.RegWrite p, 0, itemtype
End If

'If the key is present, or was created, it is toggled
'Confirmations can be disabled by commenting out
'the two MyBox lines below

If n = 0 Then
n = 1
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & disab & vbCR & mustboot, 4096, t)
ElseIf n = 1 then
n = 0
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & enab & vbCR & mustboot, 4096, t)
End If


#4 Guest_Riyan587_*

  • Guests

Posted 13 December 2010 - 06:35 AM

Task manager can be launched either by pressing CTRL+ALT+DEL or by typing C:\Windows\System32\taskmgr.exe in the command prompt box. But if you are getting the error message “Task manager disabled by administrator” while launching the task manager it may be for the virus that enters in your system or the administrator permission could have stopped its use by some other user….
The guideline to enable your task manager is nicely provided here http://www.completep...sk_manager.html

Good luck




Reply to this topic


This post will need approval from a moderator before this post is shown.

  


1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users