Showing posts with label System Hacking. Show all posts
Showing posts with label System Hacking. Show all posts

Sunday, 22 September 2013

Turn your laptop to Iron Man's Jarvis

Hello everyone , here is a tutorial for how to make your PC speak like Jarvis as in Iron Man movies . The Post is quite long , so have patience. You just need is a basic of scripting with XML , and that's easy too , what you need to do is just make enter some commands to some of the windows files , its as simple as burning a candle ;

Really telling , when i tried it for my laptop , i thought it would be hard enough for me to make my pc speak like that , and believe me , even when I looked up on the internet , i found the way too hard , but , when i got what to do , it become a whole more lot of easy to scrap the things out of it .

So now , what you have got is that , your computer can respond back to yo for whatever you say , now lets get to ,  what we should have to do all that I have told you :

Requirements :

  1. Firstly , you need an operating system , Windows 7 and Windows 8 , both works fine on 32-bit as well as 64-bit versions. you should have a lots of memory , at least 1 GB memory is required , but i will suggest for a 2 GB processor , at least a dual core .
  2. Secondly , you would need Windows Speech Recognition Software , that's inbuilt in windows 7 and windows 8 PC. You just need to enable it.
  3. Now you need is an important software , which windows is providing on their website too ; Windows Speech Recognition Macros , which you can download by clicking HERE .
  4. A microphone , that's inbuilt in laptops , but i will suggest using a separate and dedicated microphone as it will be whole lot more easier.
  5. Lastly we need is Speakers , as we all know .
Procedure :



  1. Download Windows Speech Recognition Macros Software (WSRM) first . You can download it at windows website , or otherwise you may Google it to get more download links.
  2. Enable Windows Speech Recognition , which is inbuilt . Enable Windows Speech Recognition in your Control Panel (Start Menu/Control Panel/Ease Of Access/Speech Recognition/Start Speech Recognition). While you're at it, it's a good idea to take the speech tutorial to familiarize yourself with some common voice commands. You should also go ahead and visit the section that says "Train your computer to better understand you." Neither is required, but going through the steps provided by these tutorials will help make the process of bossing your computer around a lot more efficient. An additional bonus you'll get after training your computer to better recognize your voice... less problems with it responding to ambient noises and other voices in the room. So go ahead and take the extra 10 minutes to learn these processes.
  3. Now when you have trained your PC , its time to do some programming . Open the WSRM by double clicking it , it always gets minimized to the task bar. To know how to use it visit HERE . At starting it might look like this . You can directly add programs by clicking on Run a Program option.

  4. Go to advanced  and do the programming as given below:
Before doing that , you must know about the used strings , ie. XML strings
<speechMacros> - This is the starting Tag, it just tells the computer that this XML file uses the Speech Macros to execute.
<command> - This is the command to be executed. Each command is basically one action... in most cases you will only need one, but for some automations you'll want to include more than one. You'll see an example of this later.
<listenFor></listenFor> - This tells the computer what word or phrase to listen for in order to do an action. Notice that there is a closing tag (</listenFor>), this tells the XML that this spot in the code is where to stop doing whatever function... in this case stop listening for a word or phrase once the computer hears it.
</command> - The closing tag for the "Command" tag... again, in XML every tag will have an opening/closing tag and what happens between the two is how it knows what to execute. In this case it knows that the command is finished once the word/phrase has been detected.
</speechMacros> - By now I think you can figure out why this is here.
Since I'm going to name my computer Jarvis, I'm going to tell my computer to listen for it's name by changing the <listenFor> tags to say the following:
<listenFor>Jarvis</listenFor>
The entire macro looks like this now:
<speechMacros>
<command>
<listenFor>Jarvis</listenFor>
</command>
</speechMacros>

 so we're going to add the <speak></speak> tags which allow for the computer to speak whatever text we insert between the tags back to us.

Now , what you write in advanced is :
<speechMacros>
<command>
<listenFor>Wake up</listenFor>
<speak>Database Check , System Online , Hello</speak>
</command>
</speechMacros>

Go forward and save it , Sign the macros as well . That's it . Now when you say hello to it , it replies you back .

Some examples are :
Restart Computer: (You say "Nuke It" and the computer acknowledges and restarts your system.)
<speechMacros>
<command>
<listenFor>Nuke it</listenFor>
<speak>Restarting Windows</speak>
<run command="C:\Windows\System32\shutdown.exe" params="-r -t 00"/>
</command>
</speechMacros>

Shutdown Computer: (You say "Shut It Down" and the computer acknowledges and turns the system off)
<speechMacros>
<command>
<listenFor>Shut it down</listenFor>
<speak>End Of Line</speak>
<run command="C:\Windows\System32\shutdown.exe" params="-s -t 00"/>
</command>
</speechMacros>

Similarly you can add lots of commands and control your system with voice.




Wednesday, 18 September 2013

To Remove Recyle Bin From Your Desktop




If you dont want to see recycle bin on your desktop then follow simple steps as follows:

1. Open Regedit by going to START - RUN and type Regedit and hit enter. 


2. Then you should navigate to following entry in registry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ Desktop\NameSpace\{645FF040-5081-101B-9F08-00AA002F954E} and delete it.

3.  This action should remove recycle bin from your desktop.

Trick To Lock Hard Disk Drives In Computer

We don’t usually prefer to lock our drives, but sometimes it becomes nesscary. Say for instance you might have stored your office documents in D:\ and you don’t want your kids to access it, in such case this technique can be useful for you. Please don’t try this tweak with your root drive (usually C:\ is the root drive) since root drives are not intended to be locked because they are mandatory for the system and application programs.
  • Start & Run and type Regedit to open Registry editor
  • Browse HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\Explorer
  • Create a new DWORD value NoViewOnDrive and set its value as
2^ (Alpha Number of Drive Letter-1) where Alpha number are simple counting of alphabets from A to Z as 1 - 26
For example: to lock C:\, Alpha number of C is 3 so 2^ (3-1) = 4 (decimal value)
  • To lock more drives, calculate the value of each drive and then set sum of those numbers as value
  • To unlock your drive just delete the key from the registry.

Locking Folders Without any Software



  • Consider you want to lock a folder named XXXX in your E:\, whose path is E:\XXXX.
  • Now open the Notepad and type the following
[code]ren xxxx xxxx.{21EC2020-3AEA-1069-A2DD-08002B30309D}[/code]
  • Where xxxx is your folder name. Save the text file as loc.bat in the same drive.
  • Open another new notepad text file and type the following
[code]ren xxxx.{21EC2020-3AEA-1069-A2DD-08002B30309D} xxxx[/code]
  • Save the text file as key.bat in the same drive.
Steps to lock the folder:
  • To lock the xxxx folder, simply click the loc.bat and it will transform into control panel icon which is inaccessible.
  • To unlock the folder click the key.bat file. Thus the folder will be unlocked and the contents are accessible.

Fix Windows XP Corrupted System Files Easily




Do you suffering from bad files in your windows xp which slow down your system>>????
If yes, here is the solution to repair Windows XP corrupted system files. Follow simple steps as follwos: 

1.Load XP cd into cd drive

2. go to Run

3. type sfc/scannowok

4. Then copy its lost file frm cd. 

Increase the speed of your file sharing




Here Is a simple windows trick to simply share and boost sharing speed over network:

Simple Way to Share Multiple Folders :

Goto Run and Type SHRPUBW.EXE then press Enter

Select the folder you want to share and Set permissions, 

your share folder is ready now.....  

RAM Cleaner Script To Boost PC Speed



Is your PC Running Slow???? 
Try this One:

>Open notepad

>type: FREEMEM=SPACE(64000000)


>Save it as ram.vbs


now run the script.
Check out !!

CracK BIOS Password




Here Is the Simple Steps To Crack Bios Of and PC. Steps Are As Follows:

>Open the CPU.
>Observe the Motherbord.
>Remove the Silver Battery(3v).
>Wait 2 minutes and re-insert the Battery.
>Your BIOS Has been reset to defaults.