1. menghilangkan search
set lagibelajar = createobject("WScript.Shell")
lagibelajar.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoFind", "1", "REG_DWORD"
saveas dengan estensi *.vbs( misal: nosearch.vbs)
2. disable regedit
Set lagibelajar = CreateObject("WScript.Shell")
lagibelajar.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools", "1", "REG_DWORD" lagibelajar.RegWrite "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools", "1", "REG_DWORD"
saveas dengan estensi *.vbs( misal: noregedit.vbs)
3. Disable Shutdown
lagibelajar.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoClose", "1", "REG_DWORD"
saveas dengan estensi *.vbs( misal: noclose.vbs)
4. No log off
lagibelajar.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\StartMenuLogoff ", "1", "REG_DWORD"
saveas dengan estensi *.vbs( misal: nologoff.vbs)
5. disable coomand (cmd)
lagibelajar.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\System DisableCMD ", "2", "REG_DWORD"
saveas dengan estensi *.vbs( misal: nocmd.vbs)
6. No run star menu
lagibelajar.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\System NoRun ", "1", "REG_DWORD"
saveas dengan estensi *.vbs( misal: norun.vbs)
7.Disable Task manager
lagibelajar.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\DisableTaskMgr ", "1", "REG_DWORD"
saveas dengan estensi *.vbs( misal: taskmanager.vbs)
8. No Folder Option
set lagibelajar = createobject("WScript.Shell")
lagibelajar.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoFolderOptions ", "1", "REG_DWORD"
saveas dengan estensi *.vbs( misal: nofolderoption.vbs)
9. Disable Help
set lagibelajar = createobject("WScript.Shell")
lagibelajar.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoSMHelp ", "1", "REG_DWORD"
saveas dengan estensi *.vbs( misal: nohelp.vbs)
10. Disable Control Panel
Scriptnya kayak gini, tulis di notepad ya atau di copy paste aja
set lagibelajar = createobject("WScript.Shell") lagibelajar.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoControlPanel ", "1", "REG_DWORD"
saveas dengan estensi *.vbs( misal: nocontrol panel.vbs)
{ 0 komentar... Views All / Send Comment! }
Posting Komentar