Jump to content

Networked Splash screen


 Share

Recommended Posts

Hi could anybody make this program for me im willing to pay for your kindness.. I want a server program running on the server with all the images it would use to display in coordination or at the same time to multiple computers in my network.. The client software then retrieves the images the server would display at the same time so at a specific time interval, all networked computers should display the same images.

Link to comment
Share on other sites

Hi.

Hi could anybody make this program for me im willing to pay for your kindness.. I want a server program running on the server with all the images it would use to display in coordination or at the same time to multiple computers in my network.. The client software then retrieves the images the server would display at the same time so at a specific time interval, all networked computers should display the same images.

Have a look at UltraVNC.

At the "Clients" start the viewer in listen mode through autorun folder using a shortcut: "%programfiles%\vncviewer -listen"

At the "Server" start winvnc.exe. (program or service, doesn't matter)

Have your image in full screen displayed at the "Server".

Then use an autoit script to connect all the clients you want to see your "image":

#include <array.au3> ; required just for the _arraydisplay()

$ConnectIP = StringSplit("10.10.10.1/10.10.10.2/10.10.10.3", "/")
_ArrayDisplay($ConnectIP)
For $i = 1 To $ConnectIP[0]
    Run(@ProgramFilesDir & "\UltraVNC\winvnc.exe -connect " & $ConnectIP[$i])
Next

When you want to stop this, rightclick the UltraVNC icon -> "kill all"

Regards, Rudi.

Earth is flat, pigs can fly, and Nuclear Power is SAFE!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...