Reputation: 23
Ok. So, I made this thing in vbs that says a little password when you log on. I am trying to make it say it as soon as you log on (if possible) because at the moment I have to click. I tried this script that someone suggested:
Dim oShell
Set oShell = WScript.CreateObject ("WScript.Shell")
oShell.run "notepad.exe c:\LOGON.vbs"
But that did not seem to work. So, thanks for your help!
Upvotes: 2
Views: 643
Reputation: 3788
One of these options might work for you...
or
or
for all users:
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run.
or a current user
HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
Upvotes: 2