Jump to content

Recommended Posts

Posted

I'm thinking of putting an old pc into one of our main ict suites to facilitate password resets using SSPR with the idea being it will just cut down the need for pupils to log themselves on as the reset user.

 

As it's just connecting to a webpage then I suppose the kiosk could be windows or nix based and for either system I want it to be constantly checking that the browser window is open and if it's not reopen the url to SSPR.

 

Anyone have any ideas for me?

 

Ben

Posted
Assuming you have it locked down so it can only get on the SSPR pages. Just create a script to check if the Iexplore process is running and if not open it. Then loop to infinity and beyond!
Posted

Once logged on as the reset user their shell is iexplore and they can't go anywhere else.

 

Just need to prevent people logging off then logging back on as themselves.

 

Auto logon as the resetpasword user and an automatic reboot in the event of anyone else logging on would do it.

 

Ben

Posted

put this in a cron job to run every 5 minutes:

 

#!/bin/bash

if [ ! "$(pidof firefox-bin)" ]
then
/usr/local/bin/firefox

 

Or maybe use Opera which has a kiosk mode

Posted
You could also do a local secuirty policy to prevent student and staff groups from logging on.This would be probably more reliable than scripting a reboot.

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



×
×
  • Create New...