From 44f041dba59f24c2c75be715684e612688429788 Mon Sep 17 00:00:00 2001 From: Tanmay <10880504+tanmaymohan@users.noreply.github.com> Date: Wed, 4 Oct 2017 18:35:33 +0530 Subject: [PATCH] Created welcome.vbs This file will allow your Windows computer to greet you with your personal message on every startup You need to include this file in the Startup folder (usually found in C:\Users\Username\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup or you can just press Win+R and in the run dialogbox type the following shell:startup and place this file over there and then restart your computer to make changes. --- VBS/welcome.vbs | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 VBS/welcome.vbs diff --git a/VBS/welcome.vbs b/VBS/welcome.vbs new file mode 100644 index 0000000..8f8b4c0 --- /dev/null +++ b/VBS/welcome.vbs @@ -0,0 +1,4 @@ +speaks="Welcome back user" +Set speech=CreateObject("sapi.spvoice") +speech.Rate = -3 +speech.Speak speaks