How to make your computer greet you at the startup?

Being welcomed by someone looks always special. But, have you ever thought of your computer welcoming you by calling out your name during it's startup?


Yes, we can make our computer greet us during it's startup .Here are the instructions to be followed to make your computer welcome you:-

Here we use the VBscript to make windows greet you at startup
Follow this simple instruction using a Notepad as given below :-

1) Open the Notepad.

2) Type the codes exactly given below,

       Dim speaks, speech
       speaks="Welcome to your PC, name"
       Set speech=CreateObject("sapi.spvoice")
       speech.Speak speaks



Note : Replace name by your name

3)  Now go to the FileMenu and click the save as option. specify the file type as All types in
the Save as Type dialog and save the file as "any name.vbs".
 
  Note:the file name can be any name you want but it should end with ".vbs"

4) Copy the saved file.

5) Now navigate to the location specified below
   c:\Documents and settings\All Users\Start Menu\Programs\Startup
(Note: The above path is for windows xp users)

   c:\Users\user-Name\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
(Note: The above path is for all windows 7, windows 8 and The AppData is the hidden file in your system drive, so you have to enable show hidden file in the view option)

6)Paste the file in the given location.


For the best results , Change the sound scheme to No Sounds.
you can change it by following the given instructions below:

1) Open the control Panel.
2) click on sounds and Audio Devices.
3) now switch to the tab 'Sounds'.
4) select the no sounds from the sound scheme option.
5)Then click OK.


Post a Comment