Social Icons

Selasa, 18 Desember 2012

Mengunci Task Manager Dan Regedit Komputer

Postingan kali ini kita akan membahas cara mengunci task manager dan regedit
Untuk cara mengunci task manager dan regedit bisa di lakukan dengan berbagai macam cara, tutorial kali ini kita gunakan saja cara instant, praktis, dan tentunya lebih aman bagi anda yang masih awam Cara membuka dan mengunci Regedit

Copy script dibawah ini kedalam notepad, kemudian save dengan format :
File Name : Regedit.vbs
Save as type : All Files

Dim vResult
Dim objShell
vResult = MsgBox("Pilih Yes Untuk disable Regedit, pilih no untuk enable regedit", _
vbYesNo + vbQuestion + vbDefaultButton2 + vbApplicationModal, _
"Enable Disable Regedit VBS")
If vResult = vbyes Then
Set objShell = CreateObject("WScript.Shell")
objShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools", "1", "REG_DWORD"
msgbox " regedit telah di blokir"
else
Set objShell = CreateObject("WScript.Shell")
objShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools", "0", "REG_DWORD"
msgbox " regedit telah di aktivekan"
End If
Cara mengunci Task Manager

Copy script dibawah ini kedalam notepad, kemudian save dengan format :
File Name : TM-Lock.bat
Save as type : All Files

REG ADD HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system /v DisableTaskMgr /t Reg_Dword /d 1 /f

REG ADD HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system /v DisableRegistryTools /t Reg_Dword /d 1 /f


Cara membuka Task Manager
Copy script dibawah ini kedalam notepad, kemudian save dengan format :
File Name : TM-Unlock.bat
Save as type : All Files

REG DELETE HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system /v DisableTaskMgr /f

REG DELETE HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system /v DisableRegistryTools /f


Ok itu saja dari saya semoga bermanfaat

Tidak ada komentar:

Posting Komentar