Disable Task Manager
This code disables Task Manager in XP and I think other Operating Systems like Win2000
AI
KI-Zusammenfassung: 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.
Quellcode
<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>
Originalkommentare (3)
Wiederhergestellt von der Wayback Machine