Make Windows Welcome You With Audio, Voice Messages with Narrator

HomeComputingWindows › Make Windows Welcome You With Audio, Voice Messages with Narrator Sep 2010

Make Windows Welcome You With Audio, Voice Messages You might have known the use of windows Narrator for a long time. It is a built-in text to speech program in windows. But what if windows welcomes you with a voice message when you logon to your PC. That would be cool, atleast to showoff.

Create VB Script Files to Make Narrator Narrate Preset Text Automatically

To use this trick, follow the instructions given below:-

  1. Open Notepad and Copy, Paste below Code.
  2. Write any desired text.
  3. Save the file with .vbs extension. For eg., welcome.vbs. (Select File Type as All Types while saving).

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

You can use this script to run anywhere for example…

# Make Windows Welcome you With an Audio Voice Message During Logon

Place the “welcome.vbs” file in your windows startup folder.

Now when the next time you start your computer, Windows XP will welcome you in its own computerized voice.

Note: For best results, it is recommended to disable default welcome sound. For XP go to Control Panel > Sounds > Sounds Scheme. For Seven Right click on desktop > Personalize > Sounds > Uncheck Play windows startup sound.

# Use AutoRun to Narrate a Voice Message When you Insert USB, CD [XP Only]

Convert the “welcome.vbs” file to and exe file easily at this site. Suppose its welcome.exe

Now create an autorun.inf file in notepad with the following code…

[autorun]
open = welcome.exe
icon = myicon.ico
action=Run Welcome Program

Simply place this and the exe in the root of your USB drive or CD, DVD. So that, next time you insert a disk, usb Narrator will auto narrate the preset voice message for you. It can be instructions or just a cool showoff message like “hello master, your pen drive is successfully inserted to this pc”. Read more about creating autorun for cd, usb programs to start automatically. Note this works only in XP as autorun doesn’t work in windows seven.

Let us know other cool ways of using this…

Imp. Update : This Post Idea was originally submitted by a Anonymous reader who seems to have got it from Akhilesh Sharma at tweakandtrick. The Post credits goes to him…

Also See : Change Windows 7 Logon, Welcome Screen Background

Post by


SHARE




12 Responses »

Bhaskar : It says Microsoft vbscript compilation error on line 2 char 8.(code 800A0408)Can u plz tell me d solution.Ohh its for d topic Creating VB Script Files to Make Narrator Narrate Preset Text Automatically.

Debajyoti : @Bhaskar: It becoz of the curly quotes.... replace the quotes in the code with the keyboard quotes.

Bhaskar : Txnxxxxxxxxxxx its working now...........

yash : what is curly quotes? can you plz help me too

brent : it does not seem to work on win 7 ultimate 64bit no matter what you do to it, if anybody knows how would appreciate it need to get all my speech working have diabetes in eyes thank you in advance

Jonathan E. Kiser : @brent This will not work at all no matter what I do. Windows 7 64 bit. Brent, I am sorry I wish I could help more. Brent speech recognition is not the Narrator, but they can work in conjunction. I will post back after doing some research for you as I may very well be blind soon. I can't see from left eye and right eye is a bit fuzzy. I am here with you brother. My name is Jonathan E. Kiser. I live in Texas. 100% Disabled Army Veteran.

Jonathan E. Kiser : brent, can you use the magnification tool, does that help read or is that just not an option?

joe soap : That script didn't work for me either but this did on 7 x64 Ult. : strText = "Dylan welcome to your computer come sit in front of me" Set objVoice = CreateObject("SAPI.SpVoice") objVoice.Speak strText

Debajyoti Das : @Joe - The quotes are creating the problems... replace these curly quotes (“ and ”) with the regular one's using the keyboard.

john : wowwwwww,,,this is awesome,,,its working cooool.am really happy by this,when i logon my pc whishing me like my girl frnd...it's really works...thanks for everything!!!!!

Sam : Can anyone plz help me to change the voice?? and also plz give this codes in a single line coz i donno where space should come...

Nakul : its good but my opinion is in 2nd line pls remove comma(;)

» Leave a Reply