Jump to content
xisto Community
Sign in to follow this  
learning php

Enable/disable Task Manager these methods show you how to disable taskmanager and enable it

Recommended Posts

hi i thought i would share with you how to enable/disable your very own taskmanager.go to Start run type regedit then press enterand navagate to HKEY_CURRENT_USER/Software\Microsoft\Windows\CurrentVersion\Policies\System DisableTaskMgrright click modify1 = Enable0 = 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 lolalso 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 nowClick 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"ThanksAaron

Edited by learning php (see edit history)

Share this post


Link to post
Share on other sites

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

Share this post


Link to post
Share on other sites

You can also you VBScript.

'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


Share this post


Link to post
Share on other sites

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.completepcpedia.com/task_manager.htmlGood luck

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.