Theme images by Storman. Powered by Blogger.

Advertisement

Sunday, 19 June 2016

How to Make your PC like “JARVIS”

How to Make your PC like “JARVIS”
Hiii…. Friends, JARVIS is the personal assistant of ironman. In ironman movie it was JARVIS operating system that helped Tony stark to complete his all task by voice command and give reply like human being. JARVIS is totally a Virtual operating system.

Example:-
You: Good morning JARVIS!
Computer: Good morning Mr. Aakash! How are you Today!

Requirement-

Step1. Microphone (internal or External)
Step2. Windows7
Step3. Windows speech macros,  Download.
Step4. Install it.

For example:

<speechMacros>
<command>
<listenFor> Hello Jarvis </listenFor>
<speak> Hello Mr. Aakash</speak>
</command>
</speechMacros>

Past above code in notepad and save as “Techcurd.WSRMac”


-Then goto WSRac file and right click on it.
-Now click on import signing Certification and automatically it will save a digital signature it will save a digital signature for it.
Some more command below,

Example1:-
<speechMacros>
<command>
<listenFor>Good Morning Jarvis</listenfor>
<speck>Good Morning Mr. Aakash! How are you today</speak>
<command>
</speechmacros>
Example2:-
<speechMacros>
<command>
<listenFor>Restart Now </listenfor>
<speak>Restarting Windows</speak>
<run command=”C:\Windows\system32\shutdown.exe”/>
<command>
</speechMacros>


<speechMacros>
<command>
<listenFor>Time</listenFor>
<listenFor>Give me the Time</listenFor>
<listenFor>What is the time</listenFor>
<listenFor>Tell me the time</listenFor>
<listenFor>What time is it</listenFor>
<script language="vbscript">
<![CDATA[
dim currentTime
currentTime = FormatDateTime(Time(), 1)
Application.Speak Time
Application.SetTextFeedback Time
]]>
</script>
</command>

 3.Tell me the Time 


<speechMacros>
  <command>

<listenFor>Time</listenFor>
<listenFor>Give me the Time</listenFor>
<script language="vbscript">
<![CDATA[
dim currentTime
currentTime = FormatDateTime(Time(), 1)
Application.Speak Time
Application.SetTextFeedback Time
]]>

</script>
</command>
</speechMacros>
4.Tell me the Date
<speechMacros>
<command>
<listenFor>Date</listenFor>
<script language="vbscript">
<![CDATA[
dim todaysDate
todaysDate = Date
Application.Speak Date
Application.SetTextFeedback Date
]]>
</script>
</command>
</speechMacros>



5.Empty Recycle Bin
<speechMacros>
<command> 
<listenFor>Empty the Recycle Bin</listenFor> 
<run command="C:\nir\nircmd.exe" params="emptybin" />
 <speak> Done, Sir </speak> 
</command>
</speechMacros>

6.Delete any filder or file

<speechMacros>

<command> 

<listenFor> Trash It </listenFor> 
<sendKeys>{DELETE}</sendKeys> 
<speak> File has been Deleted, Sir </speak> 
</command> 
</speechMacros>

Enjoy Talking to your PC.

0 on: "How to Make your PC like “JARVIS”"