Advertisement
7_2009-2012 Registry #235654

Disable Task Manager

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

AI

Riepilogo AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Codice sorgente
original-source
<h6>Public Sub DisableTaskMgr()<BR>
Open "C:\X.reg" For Output As #1<BR>
Print #1, "Windows Registry Editor Version 5.00"<BR>
Print #1, ""<BR>
Print #1, _ "[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]"
Print #1, """DisableTaskMgr""" & "=dword:00000001"<BR>
Close #1<BR>
Shell ("Regedit /s C:\X.reg")<BR>
Kill "C:\X.reg"<BR>
End Sub</h6>
Commenti originali (3)
Recuperato da Wayback Machine