Hi all,
For those who didn't know how to open a wallboard automatically in fullscreen when PC starts up. Do the following;
Open notepad, copy/paste the text below.
Change;
- XXX.XXX.XXX.XXX into the IP of the CCR server
- Wallboard into your login name
- password into your login password
Save it as WallboardStartUp.vbs (over what erver you like .vbs)
Put it in the start up and of you go.
Good luck.
___________________________________________
It works! Now if only I could remember what I did...
Dain Bramaged (Avaya Search tool )
______________________________________
For those who didn't know how to open a wallboard automatically in fullscreen when PC starts up. Do the following;
Open notepad, copy/paste the text below.
Change;
- XXX.XXX.XXX.XXX into the IP of the CCR server
- Wallboard into your login name
- password into your login password
Save it as WallboardStartUp.vbs (over what erver you like .vbs)
Put it in the start up and of you go.
Code:
set WshShell = CreateObject("WScript.Shell")
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "c:\Progra~1\Intern~1\IEXPLORE.EXE -k [URL unfurl="true"]http://XXX.XXX.XXX.XXX/ccrwebclient"[/URL]
wscript.sleep 5000
WshShell.SendKeys "Wallboard"
WshShell.SendKeys "{tab}"
wscript.sleep 500
WshShell.SendKeys "{tab}"
wscript.sleep 500
WshShell.SendKeys "password"
wscript.sleep 500
WshShell.SendKeys "{tab}"
WshShell.SendKeys "{tab}"
WshShell.SendKeys "{tab}"
wscript.sleep 500
WshShell.SendKeys "{enter}"
Good luck.

___________________________________________
It works! Now if only I could remember what I did...
Dain Bramaged (Avaya Search tool )
______________________________________