Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: vahiidPosted on 2009-10-24 at 12:22:40ID: 25653835
This is not the safest way, but you can create a vbs script that calls z: drive, then use 'sendkeys' to send your information to the popup window in vbs and put it on startup, here is a simple sendkeys script
l")
set shell = createobject("wscript.shel
shell.sendkeys "username"
shell.sendkeys "{TAB}"
shell.sendkeys "password"
if you know the title of your window, try bringing it to front by:
success = shell.appactivate("Window Title)
if success then shell.sendkeys "....."