Saturday, October 27, 2012

Hear Your Computer Welcoming You

Here is a VB Script, that I recently came across in a website. This script is made to run at the while logging to the computer. Here are the steps to implement it.

1. Open the notepad and type the following

Dim speaks, speech
speaks="Hello Priya! Welcome back to your computer. Have a nice time"
Set speech=CreateObject("sapi.spvoice")
speech.Speak speaks

2. Save this file with .vbs extension. The file name can be of your choice. But the extension should be vbs.

3. The file should be saved in C:\Users\Compaq\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup directory.

4. Ta.. da.. That’s it.. Restart your computer and Hear it working.

5. The text in second line, within the quotes can be edited as you wish.