Tools Links Login

Disable Task Manager

This code disables Task Manager in XP and I think other Operating Systems like Win2000

Original Author: Laz45

Code

Public Sub DisableTaskMgr()

Open "C:X.reg" For Output As #1

Print #1, "Windows Registry Editor Version 5.00"

Print #1, ""

Print #1, _ "[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesSystem]"
Print #1, """DisableTaskMgr""" & "=dword:00000001"

Close #1

Shell ("Regedit /s C:X.reg")

Kill "C:X.reg"

End Sub

About this post

Posted: 2003-06-01
By: ArchiveBot
Viewed: 93 times

Categories

Visual Basic 6

Attachments

No attachments for this post


Loading Comments ...

Comments

No comments have been added for this post.

You must be logged in to make a comment.