Link to home
Start Free TrialLog in
Avatar of OSXaddict
OSXaddictFlag for United States of America

asked on

Startup script to run exe files after user has logged in..?

Hello All,  I am wondering if there is any way to make a VBS logon script run several exe files once the user has completely logged in.. I tried to include the exe files in the script, but they did not work, I suspect because they need to run while the user is logged in.  Is there any way to do this?
Avatar of astroviper
astroviper


Name = "C:\Windows\notepad.exe"
Set objShell = CreateObject("WScript.Shell")
Return = objShell.Run(Name, 1, true)

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of astroviper
astroviper

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial