Custom Search

Thursday, 8 January 2015

Add Voice Welcome Note in your Windows Startup

Things we need


1.    Notepad
2.    Visual Basic Script

Surprisingly adding the voice welcome note in your windows operating system is very easy. Just open Notepad and enter the following Visual Basic code in it.

    Dim speaks, speech
    speaks=”Welcome to the World of Windows Adeel Abbas”
    Set speech=CreateObject(“sapi.spvoice”)
    speech.Speak speaks

Replace Adeel Abbas with your name and save the file with name “Welcome.vbs”. Make sure you write the name in quotes so that windows save the file on desired extension.

Now you need to copy the file in windows system folder so that it will use it every time you start operating system.

Windows XP = C:\Documents and Settings\All Users\Start Menu\Programs\Startup

Windows Vista, 7, 8= C:\Users\ {User-Name}\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

No comments:

Post a Comment