Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Open wallboard automatically in fullscreen when PC starts. 1

Status
Not open for further replies.

Bas1234

Technical User
Dec 10, 2007
6,760
NL
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.
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.

Avaya_Red.gif

___________________________________________
It works! Now if only I could remember what I did...

Dain Bramaged (Avaya Search tool )
______________________________________
 
Quick and nasty programming but I assume it will work.

If it ain't dutch it ain't much
 
Thnx..;-)

Avaya_Red.gif

___________________________________________
It works! Now if only I could remember what I did...

Dain Bramaged (Avaya Search tool )
______________________________________
 
Is It IE fullscreen (F11) or silverlight full screen?
I think IE fullscreen.
I already knew this one I think but it is nice anyway :)

BAZINGA!

I'm not insane, my mother had me tested!
 
Saw the one you posted, but that didn't work for me. Changed some bits, and it opens IE in fullscreen (F11 is the option -k to let it open in fullscreen)

Avaya_Red.gif

___________________________________________
It works! Now if only I could remember what I did...

Dain Bramaged (Avaya Search tool )
______________________________________
 
It is a while ago so possibly it is changed :)
I once had a little program that logged in for me and had a splitscreen for the wallboard and the supervisor :)


BAZINGA!

I'm not insane, my mother had me tested!
 
I used this one for a callcenter LCD tv.

Avaya_Red.gif

___________________________________________
It works! Now if only I could remember what I did...

Dain Bramaged (Avaya Search tool )
______________________________________
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top