The script i have created opens up severa webpages and an instance of notepad for a call center. this is the code.
I need to create a password input box that does not display the pass in plain text. Any ideas would be appreciated.
Forgive the horendous formating below
---------------------------------------------
set WshShell = CreateObject("WScript.Shell"
dim i
dim user
dim pass
user = InputBox("Enter your user name"
pass = InputBox("Enter your password"
Wshshell.run "Notepad"
WshShell.Run "iexplore user & ":"& pass &"@bellsouth.calltech.com/board/current_issues/index.html"
WshShell.Run "iexplore user & ":"& pass &"@bellsouth.calltech.com/techhelp/techhelp2000/"
WshShell.Run "iexplore user & ":"& pass &"@bellsouth.calltech.com/techhelp/techhelp2000/tools/tools_index.html"
WshShell.Run "iexplore user & ":"& pass &"@bellsouth.calltech.com/techhelp/techhelp2000/tools/supercalltracking/supercalltracking.html"
---------------------------------------------------
Thanks,
Micah A. Norman
I need to create a password input box that does not display the pass in plain text. Any ideas would be appreciated.
Forgive the horendous formating below
---------------------------------------------
set WshShell = CreateObject("WScript.Shell"
dim i
dim user
dim pass
user = InputBox("Enter your user name"
pass = InputBox("Enter your password"
Wshshell.run "Notepad"
WshShell.Run "iexplore user & ":"& pass &"@bellsouth.calltech.com/board/current_issues/index.html"
WshShell.Run "iexplore user & ":"& pass &"@bellsouth.calltech.com/techhelp/techhelp2000/"
WshShell.Run "iexplore user & ":"& pass &"@bellsouth.calltech.com/techhelp/techhelp2000/tools/tools_index.html"
WshShell.Run "iexplore user & ":"& pass &"@bellsouth.calltech.com/techhelp/techhelp2000/tools/supercalltracking/supercalltracking.html"
---------------------------------------------------
Thanks,
Micah A. Norman