JARVIS Software For Windows: Turn Your Computer Into JARVIS From Iron Man

Posted by
This is how your PC will look like, after installing the JARVIS software

Its awesome!

The awesome JARVIS look, the responsive home screen, the voice response, I am loving it!

JARVIS is the personal assistant of Iron Man, and you know it, of course!

You might want to do the same for your desktop too! Almost everyone is tired of the old Windows look.

You probably have seen someone doing it and this has increased your curiosity further.

You might think its complicated but its not! Its one of the simplest things you can do!

Sure, you won’t be able to get all the JARVIS features like Iron Man had, but still, we are going to enhance your computer experience!

Imagine how it would feel to shock your friends by shutting down your computer by just saying it!

Or how it would feel like when the computer would greet you at start up?

At the end of this tutorial, you will feel like saying: “I love JARVIS software!”

Interested?

Let us move on then!

Things You Will Need:

  • A Computer/Laptop having Windows 7 or 8.
  • Speech Recognition Setup. Learn to use it by clicking here.
  • Rainmeter Software.
  • Iron Man theme pack.
  • Windows Speech Recognition Macros.
  • Windows 7 Boot Screen Updater.

Don’t worry. I have all the files you need. Click here to download.

Related Post: Laptop vs. Tablet – The Hunt For The Better One

The transformation process of turning your computer into JARVIS from Iron Man is simplified into three steps:

JARVIS Software Mission –

Step 1: Set Up Windows Speech Recognition

A basic but the most important step. You will learn how to set up speech recognition. Click on the below link to get started:

Make your computer respond to your voice

Its a small tutorial on how to set up Windows Speech Recognition.

Make sure you do it! Its the base of what we are going to do.

Step 2: Installing Windows Speech Recognition Macros

Download Windows Speech Recognition Macros Software. (Available in the files)

After Installing, you will need to configure it as per your needs. We’ll use the Windows Speech Macros.You must already have downloaded this software from the given link and installed it.It is recommended to put its shortcuts in two places, one in the desktop and other in the start-up folder, allowing it to the second your computer starts.Here is how to set up the commands :

Double Click The Macros Icon, and when the window pops up asking “What should the macro do?” Then click “Advanced.” For those of you familiar with creating websites, this should be a welcome site. WSRM uses XML for commands… which makes creating custom commands relatively simple and fun. For those of you who aren’t aware of XML, it’s still easy. Here is what you need to learn.

<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> – This is the closing tag of the first tag!

<listenfor> tags will be used by your computer to identify what they have to listen for to execute any action

If you want your computer to greet you when you say “Wake Up JARVIS”, then use the below macros
_________________________________________________________________________________
<speechMacros>
<command>
<listenFor>Wake Up Jarvis</listenFor>
<speak>Systems Online, Database Check, Good Morning Sir !</speak>
</command>
</speechMacros>
_________________________________________________________________________________
I love this one the most!

An Speech Macro For Getting The Weather :
_________________________________________________________________________________

<?xml version=”1.0″ encoding=”UTF-16″?>
<speechMacros>
<command>
<listenFor>Pull up the weather in [CityName]</listenFor>
<run command=”http://www.weather.com/weather/local/{[CityName.zipCode]}”/>
</command>
<command>
<listenFor>Is it cold in [CityName]?</listenFor>
<speak>Let me check… just a moment.</speak>
<script language=”JScript”>
<![CDATA[
<var xml_doc = new ActiveXObject(“Microsoft.XMLDOM”);
<xml_doc.async = false;
<xml_doc.load(“http://www.rssweather.com/zipcode/{[zipCode]}/rss.php”);
<var titles = xml_doc.getElementsByTagName(“title”);
<var descriptions = xml_doc.getElementsByTagName(“description”);
<Application.Speak(titles.item(2).text + ” in {[*CityName]}”);
<Application.Speak(descriptions.item(2).text);]]>
</script>
</command>
<listenForList name=”CityName” propname=”zipCode”>
<item propval=”65201″>Columbia</item>
<item propval=”37201″>Nashville</item>
</listenForList>
</speechMacros>
_________________________________________________________________________________

A Macro To Restart The Computer :
You will just have to say “Nuke It!” and the computer will restart :
_________________________________________________________________________________

<speechMacros>
<command>
<listenFor>Nuke it</listenFor>
<speak>Rebooting The System.</speak>
<run command=”C:\Windows\System32\shutdown.exe” params=”-r -t 00″/>
</command>
</speechMacros>
_________________________________________________________________________________

Macro To Shut Down The Computer :
You will have to say “Goodbye Jarvis” And the Pc Will Shut Down :
_________________________________________________________________________________

<speechMacros>
<command>
<listenFor>GoodBye Jarvis !</listenFor>
<speak>Getting Offline,Bye Sir</speak>
<run command=”C:\Windows\System32\shutdown.exe” params=”-s -t 00″/>
</command>
</speechMacros>
_________________________________________________________________________________

Don’t Miss: 10 Little Known Ways To Make The Most Of Your Personal Computer

Step 3: Installing Jarvis Theme

This is the final step. You will need to install the JARVIS theme, which will change the old crappy desktop.

Installation instructions are provided along with the theme.

To install the theme, you will need rainmeter. (It is also provided in the files)

Additionally you can change Windows 7 BootScreen by downloading its changer.

Download some pretty good boot screen animations at http://www.windows7bootscreens.com
Bonus Step

Now here what we have for you is a bonus step. Copy-paste this code in notepad and save it as welcome.vbs in startup folder to automatically make computer greet you! Startup folder can be found in the Start Menu.

Dim speaks, speech

speaks=”Welcome to your Computer, Sir”
Set speech=CreateObject(“sapi.spvoice”)
speech.Speak speaks

Edit “Welcome to your Computer, Sir” to whatever you like!

HAVE funN

One comment

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.