
What Is VBS ?
VBS stands for Visual Basic Scripting. Its a computer language developed by Microsoft in 1996. This works on windows platform. The file extension type for vbs programs is “.vbs”. VBS Programs can be easily programmed in notepad.
Algorithm Behind This :
In this tutorial, We will create a vbs file having welcome note in it. This can be done with the help of simple vbs commands. Now our next task will be, how to make it work whenever we open our computer. Its Sounds Quite Hard But actually very simple. The only thing We have to do is to copy paste our vbs file in startup folder.
Whenever a computer boot up, it look for files under startup folder and open them if anyone found. Same thing we goona do for this trick. When we copy our vbs file in startup folder and open computer for next time, your computer will automatically call it without any permission, As a result of file execution, you compuer will welcome you.
Lets Start Coding !
1. Look for Notepad in your computer and open it.
2. After that paste below code in it :
Dim speaks, speech speaks=" Welcome back to your PC EasyCodeWay Developers " Set speech=CreateObject("sapi.spvoice") speech.Speak speaks

3. Change “Welcome Back To Your PC Sir” with your choice Text
4. Now go to “file>save as”
5. Name your program as “welcome.vbs”, Make sure you have typed “.vbs” after file name, Otherwise your program will not work.
After naming, choose file type as “All files (*.*)”
6. Save your program on desktop.
7. Now open vbs file that you had created and have a look whether its working or not. I think you will be amazed to hear your computer voice.
Now just copy your program from desktop and navigate for
C:\Users\yourPCname\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
Replace “yourPCname” with your Computer Name. Ohk now the problem is , every user had named it computer with different names and many of them don’t know what it is.. So lets find out what is It.
Just go to “C:\Users” and their you will find many folder including “default, Guest, Public”. The folder name other then these will be your computer name.
For simple way, go to search bar and look for startup folder. You may find many folders named as startup. Just open every folder and paste vbs file in one which is a sub-folder of “program< Start Menu<Windows” directory.

And finally you had done !
Restart Your Computer to welcome you for first time.
Please Share To Appreciate our Work !