+ Post New Thread
Page 1 of 2 12 LastLast
Results 1 to 15 of 19
AV and Multimedia Related Thread, Xibo as Screensaver in Technical; I was wondering if anyone has found a way to do this on windows yet? Normally I would copy the ...
  1. #1
    Mr.Ben's Avatar
    Join Date
    Jan 2008
    Location
    A Pirate Ship
    Posts
    833
    Blog Entries
    2
    Thank Post
    160
    Thanked 122 Times in 100 Posts
    Rep Power
    53

    Xibo as Screensaver

    I was wondering if anyone has found a way to do this on windows yet?

    Normally I would copy the exe, rename it to a scr and then put it into system32.

    But with the xibo client this brings up the options menu, a little frustrating!

    Cheers, Ben

  2. IDG Tech News
  3. #2

    glennda's Avatar
    Join Date
    Jun 2009
    Location
    Sussex
    Posts
    7,243
    Thank Post
    263
    Thanked 1,034 Times in 935 Posts
    Rep Power
    300
    Quote Originally Posted by Mr.Ben View Post

    But with the xibo client this brings up the options menu, a little frustrating!
    i know this sounds stupid but you are using the right xibo exe as there are 2 one is the options one the other is the application, if not i have just googled using an application as a screensaver and there are loads of freeware apps that will do it for you

    toby

  4. #3
    Mr.Ben's Avatar
    Join Date
    Jan 2008
    Location
    A Pirate Ship
    Posts
    833
    Blog Entries
    2
    Thank Post
    160
    Thanked 122 Times in 100 Posts
    Rep Power
    53
    Hi Toby,

    Sadly I am using the only exe that there is, it uses a switch to trigger the admin mode (config) but windows seems to want to launch this, so I was wondering if anyone had a better way of doing it!

  5. #4

    glennda's Avatar
    Join Date
    Jun 2009
    Location
    Sussex
    Posts
    7,243
    Thank Post
    263
    Thanked 1,034 Times in 935 Posts
    Rep Power
    300
    sorry, that was me guessing

    just found this on there website tho, seems to be what you are looking for, not tested it tho.

    https://blueprints.launchpad.net/xib...bo-screensaver

  6. #5
    Mr.Ben's Avatar
    Join Date
    Jan 2008
    Location
    A Pirate Ship
    Posts
    833
    Blog Entries
    2
    Thank Post
    160
    Thanked 122 Times in 100 Posts
    Rep Power
    53
    Rather annoyingly, Xibo also seems to start automatically on login wherever it is installed. I don't want this and can't find where it starts from,

    It's not the registry (HKLM), It's not a service and it's not in the startup folder.

    Any ideas?

    Ignore that: it's getting late and it was in the AllUsers Startup Folder
    Last edited by Mr.Ben; 22nd February 2010 at 08:06 PM.

  7. #6

    glennda's Avatar
    Join Date
    Jun 2009
    Location
    Sussex
    Posts
    7,243
    Thank Post
    263
    Thanked 1,034 Times in 935 Posts
    Rep Power
    300
    did the screen saver thing work?

  8. #7

    Join Date
    Jun 2009
    Location
    East Renfrewshire
    Posts
    110
    Thank Post
    10
    Thanked 19 Times in 15 Posts
    Rep Power
    11

    Not tried it, but...

    I've been having a play with Xibo, and I believe that each user has the following folders created in their profile folder:

    %appdata%\Xibo
    [localsettings]\application data\xibo

    Now - in my Xibo setup, I've got the server and the client running on the same box, but I believe it's the one in LocalSettings\Application Data which contains the config file (user.config)

    I think(!) that if you did something like this, it might work:

    * Have a copy of the user profile local settings\Application Data\Xibo folder somewhere on a readable share
    * Edit it so that the displayName section has "replaceme" (or similar)
    * Have an autoit script which looks a bit like:

    Code:
    ; Copy template down
    $file = "user.config"
    $destdir = @UserProfileDir & "\Xibo\[foldername]
    $destfile = $DestDir & "\" & $file
    If FileExists($DestFile) = 0 then
    $sourcefile = "\\blah\xibo\[foldername]\" & $file
    
    $string = FileRead($SourceFile)
    $String = StringReplace($string, "replaceme", @ComputerName)
    
    DirCreate($DestDir)
    $w = FileOpen($DestFile, 2)
    FileWriteLine($w, $String)
    FileClose($W)
    
    
    $exe = [path to xibo]\XiboClient.exe
    
    $cmd = Chr(34) & $exe & chr(34) & " -screensaver"
    $bat = @TempDir & "\xibo.bat"
    $W = FileOpen($bat, 2)
    FileWriteLine($W, $cmd)
    FileClose($Bat)
    RunWait($Bat, @ScriptDir, @SW_HIDE)
    Compile that off as an exe using Aut2Exe
    Rename it to the scr you will be using.


    Something like that...

    It would - of course - require the Xibo server to have the client registered as a display - something which would need done in advance..

    All off the top of my head, so could be utterly wrong!!!

    Oh, and my AutoIt coding is shocking, I know


    Regards,
    Gerard

  9. Thanks to gerardsweeney from:

    Mr.Ben (24th February 2010)

  10. #8
    Mr.Ben's Avatar
    Join Date
    Jan 2008
    Location
    A Pirate Ship
    Posts
    833
    Blog Entries
    2
    Thank Post
    160
    Thanked 122 Times in 100 Posts
    Rep Power
    53
    I'll give that a go in the morning! Cheers!

    glendda - same result I'm afraid, seems to happen whatever switch you pass!
    Last edited by Mr.Ben; 24th February 2010 at 09:03 PM.

  11. #9

    glennda's Avatar
    Join Date
    Jun 2009
    Location
    Sussex
    Posts
    7,243
    Thank Post
    263
    Thanked 1,034 Times in 935 Posts
    Rep Power
    300
    Quote Originally Posted by Mr.Ben View Post
    I'll give that a go in the morning! Cheers!

    glendda - same result I'm afraid, seems to happen whatever switch you pass!
    o shame, i will talk to alex one of the developers next time he pops in as hes a friend and ex tech of my boss and see what he says about it.

    Toby

  12. #10

    Join Date
    Jun 2009
    Location
    East Renfrewshire
    Posts
    110
    Thank Post
    10
    Thanked 19 Times in 15 Posts
    Rep Power
    11
    Ah...

    The link with the -screensaver (https://blueprints.launchpad.net/xib...bo-screensaver)

    Is a SUGGESTION, not a feature

    Doh..

  13. #11

    glennda's Avatar
    Join Date
    Jun 2009
    Location
    Sussex
    Posts
    7,243
    Thank Post
    263
    Thanked 1,034 Times in 935 Posts
    Rep Power
    300
    Quote Originally Posted by gerardsweeney View Post
    Ah...

    The link with the -screensaver (https://blueprints.launchpad.net/xib...bo-screensaver)

    Is a SUGGESTION, not a feature

    Doh..
    my bad,

    that would be why it didnt work!!

  14. #12

    powdarrmonkey's Avatar
    Join Date
    Feb 2008
    Location
    Alcester, Warwickshire
    Posts
    4,856
    Thank Post
    412
    Thanked 776 Times in 649 Posts
    Rep Power
    170
    Quote Originally Posted by glennda View Post
    my bad,

    that would be why it didnt work!!
    Hence, 'blueprints'.

  15. #13
    p858snake's Avatar
    Join Date
    Dec 2008
    Location
    Queensland
    Posts
    1,423
    Blog Entries
    2
    Thank Post
    36
    Thanked 170 Times in 146 Posts
    Rep Power
    48
    Didn't Xibo have a option where you could display it via a web browser? so all you would need is a screensaver that can display a webpage and point it to the appropriate server?

  16. #14

    glennda's Avatar
    Join Date
    Jun 2009
    Location
    Sussex
    Posts
    7,243
    Thank Post
    263
    Thanked 1,034 Times in 935 Posts
    Rep Power
    300
    Quote Originally Posted by p858snake View Post
    Didn't Xibo have a option where you could display it via a web browser? so all you would need is a screensaver that can display a webpage and point it to the appropriate server?
    if you pointed the web browser simply to the server you would get the admin login, enless you had to put in something else after e.g http://xibo/screensaverfile

    Toby

  17. #15

    Join Date
    Jun 2009
    Location
    East Renfrewshire
    Posts
    110
    Thank Post
    10
    Thanked 19 Times in 15 Posts
    Rep Power
    11
    Quote Originally Posted by p858snake View Post
    Didn't Xibo have a option where you could display it via a web browser?
    I had a look on their answers section, and the nearest I can see is discussion of a PHP version of Xibo Player:

    https://answers.launchpad.net/xibo/+question/63716

SHARE:
+ Post New Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. Anyone using XIBO
    By Jamo in forum General Chat
    Replies: 236
    Last Post: 3rd May 2013, 08:47 PM
  2. Xibo help
    By darkmanx in forum General Chat
    Replies: 3
    Last Post: 23rd February 2010, 11:07 AM
  3. Xibo Client Setup
    By jamiess in forum AV and Multimedia Related
    Replies: 1
    Last Post: 4th February 2010, 04:46 PM
  4. Xibo Set Up Issue
    By tmcd35 in forum AV and Multimedia Related
    Replies: 26
    Last Post: 15th December 2009, 09:36 AM
  5. Xibo
    By AlexPilot in forum Windows Server 2008
    Replies: 4
    Last Post: 15th June 2009, 12:15 PM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •