
Do you know your computer is very intelligent? Yes, it does all things for you. It calculates any data, browse internet, and many complicated work it can do within seconds. But in spite of these all it can also welcomes you whenever you turn your PC on! It will be a very good moment when your own PC will welcomes you in its computerized voice. We can customize the message as we want. It works like a charm and definitely you will be happy when it welcomes you in front of your friends. They will be shocked watching the intelligence of your computer. So read on and get the trick to make your computer welcomes you.
This will work best on Windows XP, Vista and also on Windows 7. You just have to do some little editing and place the file in the directory. When your PC starts up, it will execute that file automatically and welcomes you in its computerized voice. We are using the basic voice function of Windows to do this task. Follow the procedure below and then I will say you how to edit things and how it works. So let’s start.
Steps To Make your PC Welcomes You.
- Open your Notepad and keep it blank.
- Now, copy the code below and paste it as it is in the Notepad. If you do little mistake then it won’t work.
Set Sapi = Wscript.CreateObject(“SAPI.SpVoice”)
dim str
if hour(time) < 12 then
Sapi.speak “Good Morning Sir”
else
if hour(time) > 12 then
if hour(time) > 16 then
Sapi.speak “Good evening Sir”
else
Sapi.speak “Good afternoon Sir”
end if
end if
end if
Sapi.speak “The current time is ”
if hour(time) > 12 then
Sapi.speak hour(time)-12
else
if hour(time) = 0 then
Sapi.speak “12”
else
Sapi.speak hour(time)
end if
end ifif minute(time) < 10 then
Sapi.speak “o”
if minute(time) < 1 then
Sapi.speak “clock”
else
Sapi.speak minute(time)
end if
else
Sapi.speak minute(time)
end if
if hour(time) > 12 then
Sapi.speak “P.M.”
else
if hour(time) = 0 then
if minute(time) = 0 then
Sapi.speak “Midnight”
else
Sapi.speak “A.M.”
end if
else
if hour(time) = 12 then
if minute(time) = 0 then
Sapi.speak “Noon”
else
Sapi.speak “P.M.”
end if
else
Sapi.speak “A.M.”
end if
end if
end if
Sapi.speak “Have a nice time sir”
- After copying the code, do the necessary editing if you want. Then click on “File” and then “Save as”.
- Just check the code at last line. If there is something like “See More at” then delete that part. Otherwise you will get error.
- Now save in the desktop because you can find it easily afterwards. Save as “welcome.vbs” (without quotes).

- This code is nothing but a Visual Basic Script. So we have to save the file as .vbs extension.
- After saving, copy or cut the file “welcome.vbs” and move it to “Startup” folder.
- You can get “Startup” folder by clicking on Start and then All Programs. Look for Startup there and place your file there.
- Now you are done with this part. Restart and see how your computer welcomes you.
Edit the code for best experience.
