Jump to content

Recommended Posts

Posted
you need to start ie in kiosk mode. see here How to use Kiosk Mode in Microsoft Internet Explorer

 

just in the shortcut change add the switch mentioned in the KB

 

EDIT: so the shortcut would be

 

iexplore -k St Leonards CE Primary School

 

Sorry to jump in but you might find this useful to (:

 

Is there a way to force f11 mode, so once loaded, someone couldnt press f11 then go whatever they like on the machine??

Posted

I have it on the domain with autologins (reg hack) and pretty much no functionality apart from ie opening which is done through another reghack replacing explorer from running with the ie shortcut. I then have all windows shortcut keys removed apart from control alt delete and all they can do there is log off and then we also have it set (local security policy) so only the user in the registry can login and also domain admins.

 

so nobody can do anything on it apart from use IE and log off.

Posted (edited)

Ta very much - I ended up using

 

start iexplore -k

 

in a bat file

 

Lovely :)

 

Si

 

PS I'm not really looking for security - just convience so the secretary just has to switch on the machine in the mornings and put the wireless mouse out :)

Edited by SimpleSi
Posted

ok - second part (now I've seen a parent using it!)

 

After one parent's used it - it stays on the last page they were on so I need something to put it back to home page after couple mins of no mouse movement.

 

Anyone got someting for that? :)

 

Si

Posted
ok - second part (now I've seen a parent using it!)

 

After one parent's used it - it stays on the last page they were on so I need something to put it back to home page after couple mins of no mouse movement.

 

Anyone got someting for that? :)

 

Si

 

Would it be too annoying to put a META REFRESH in the header of every page for say, 10 minutes, so it automatically returns to home page after that long sitting on one page? Should be fine unless you have some really slow readers...

Posted
Would it be too annoying to put a META REFRESH in the header of every page

 

Its just a special page on the schools ordinary Joomla site so I imagine that would muck up normal operation.

 

Si

Posted (edited)
Its just a special page on the schools ordinary Joomla site so I imagine that would muck up normal operation.

 

Do it with Javascript instead, then - set up a timer and have it do a page refresh after 10 minutes, just on that page.

 

Edit: which would, of course, have the same issue as the periodic task option... Okay, slightly more complicated bit of Javascript that resets the timer counter every time there's a mouse movement?

Edited by dhicks
Posted
Maybe a scheduled task on idle for your batch file.

 

But that would run every 10 minutes, regardless of whether someone was actually using it at the time or not.

Posted (edited)
But that would run every 10 minutes, regardless of whether someone was actually using it at the time or not.

 

You can schedule the task to only run if the computer has been idle for x minutes. If someone is using the PC then it's not idle and the scheduled task wont run the batch file? I have not actually tried this thus the "maybe" :)

Edited by chazzy2501
  • Thanks 1
Posted (edited)

OK I like this problem so I've done some work. You don't need the batch file you can use the iexplore -k cmd straight into the scheduled task. You could even add a second schedule to run at login, also you can add other conditions if you feel the need.

 

I've just setup an xp machine to kiosk our VLE... nice.

 

EDIT... OK keep the batch file. if the task is triggered due to idle you can't re-trigger it.

 

So.. Use the on idle to trigger the batch file but put the condition in to stop the task when the pc ceases to be idle (using the batch file stops ie being closed). The scheduler can now be triggered again. PRESTO!

Edited by chazzy2501
more work.
  • Thanks 2
Posted
Do it with Javascript instead, then - set up a timer and have it do a page refresh after 10 minutes, just on that page.

Something like the script shown below perhaps (which was based on this)?

 


   
   <br />
<br />
    idleTime = 0;<br />
<br />
    $(document).ready(function () {<br />
        // [b]Increment the idle time counter every minute[/b].<br />
        var idleInterval = setInterval("timerIncrement()", 60000); // 1 minute<br />
<br />
        // [b]Zero the idle timer on mouse movement[/b].<br />
        $(this).mousemove(function (e) {<br />
            idleTime = 0;<br />
        });<br />
        $(this).keypress(function (e) {<br />
            idleTime = 0;<br />
        });<br />
    })<br />
<br />
    function timerIncrement() {<br />
        idleTime = idleTime + 1;<br />
        if (idleTime > 9) { // [b]10 minutes[/b]<br />
            window.location = 'http://goo.gl/dR7Bw';<br />
        }<br />
    }<br />
    



  


  • Thanks 1
Posted

Back at the school - got Chazzy's suggestion up and running - after 1 min on inactivity it resets back to home page :)

 

Switched it off - Demo'd it to head and secretary - all worked fine except it didn't reconnect back to network and therefore failed to show any webpage at all :(

 

(This is my Ruckus school where you need wind blowing in right direction to get netbooks to reliably connect!)

 

So now I need a script that will auto-reboot (or al least auto repair the connection) if not network available after reboot :)

 

Si

 

Computers

Posted

What happens when the parent is halfway through looking something up and turns around to have a natter with somebody? There page then gets reset?

 

Maybe something longer then a minute? but just my opinion.

  • 2 years later...
Posted

I LOVE EDUGEEK!!!!!

 

As you all know, I'm getting old and past it and my memory isn't what it used to be!

 

So, I was recycling the laptop I used for this purpose (new head doesn't want it running!) and I couldn't understand how it kept on going back to running IE every few minutes!

 

I looked everywhere in startup and then I cam back here - found my old thread - found the old solution and went into shed tasks and deleted it :)

 

Edugeek has now completely replaced that part of by brain used for remembering things :)

 

@ZH - can you zip up a copy for me as a backup please?

 

Si

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



  • 43 When would you like EduGeek EDIT 2025 to be held?

    1. 1. Select a time period you can attend


      • I can make it in June\July
      • I can make it in August\Sept
      • Other time period. Comment below
      • Either time

×
×
  • Create New...