How to disable and enable Task Manager

Heres your chance to share your own tutorials with the community. Just post them on here. If your lucky they may even be posted on the main site.
5 posts Page 1 of 1
Contributors
User avatar
II Killick8 II
Just Registered
Just Registered
Posts: 3
Joined: Sun May 22, 2011 1:43 pm

Hello, in this tutorial I am showing you how to disable and enable Task Manager!
------------------------------------------------------------------------------------------
On Form1 create TWO BUTTONS. The first buttons text is: Enable and the seconds buttons text is: Disable.
------------------------------------------------------------------------------------------
View the code and in between Public Class and End Class write:
Code: Select all
Dim Regkey As Object
------------------------------------------------------------------------------------------
Now in the form load event type:
Code: Select all
Regkey = CreateObject("WScript.Shell")
------------------------------------------------------------------------------------------
Now double click on Button1(The enable button) and type:
Code: Select all
Regkey.RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr", 0, "REG_DWORD"
------------------------------------------------------------------------------------------
And then double click on Button2(The disable button) and type:
Code: Select all
Regkey.RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr", 1, "REG_DWORD"
------------------------------------------------------------------------------------------
Thats it! I hope you found this helpful :)
User avatar
Shim
VIP - Donator
VIP - Donator
Posts: 882
Joined: Wed Dec 14, 2011 5:02 am

thanks for posting , nice tutorial . i like registry editing
Find my programs on Softpedia
User avatar
Shim
VIP - Donator
VIP - Donator
Posts: 882
Joined: Wed Dec 14, 2011 5:02 am

about an year ago my computer was vaulted a virus it disabled my task manager and disabled my cd - rom
Find my programs on Softpedia
User avatar
MrAlicard
VIP - Donator
VIP - Donator
Posts: 54
Joined: Thu Aug 05, 2010 4:08 pm

The my mini-operating system will be good. Thank you II Killick8 II :)
User avatar
coolstuff14
Just Registered
Just Registered
Posts: 1
Joined: Thu Jan 27, 2011 4:40 pm

This doesn't work
5 posts Page 1 of 1
Return to “Tutorials”