怎麼解除禁用工作管理員(工作管理員如何禁用程式)
1,VBGOOD的怪俠(superzmy )想到的辦法,在system32目錄下,建立一個taskmgr.exe.manifest檔案,內容為空,即可禁用系統工作管理員的使用。
2,yangyxd 的辦法
寫登錄檔:
temp0 = “HKEY_USERS/
S-1-5-21-1454471165-1078145449-1202660629-1003/Software/Microsoft/Windows/CurrentVersion/Policies/System”
temp1 = “DisableTaskMgr”
temp2 = “REG_DWORD”
temp3 = 1
RegWrite temp0, temp1, temp3, temp2 ‘增加鍵值
這樣工作管理員就不能用了. 呵呵