Jump to content

Recommended Posts

Posted

Despite been set to restart on failure, we are having a large number of workstations showing off-line in console, when investigation shows the Impero client service has stopped. I had a call open with Impero, and they failed to resolve it - they basically said Windows updates was shutting the machine down and causing it to go off in the console. If that was happening mid lesson I'd have teachers knocking my door down, so I'm fairly sure that's not why Impero has never worked properly.

I've heard rumours that the students have found a way of stopping the service, and the fact that the problem seems worse in Upper School (Y10 and 11) adds weight to that. I've hidden the task bar icon from students, so they aren't stopping it that way.

I'd like to run a script on student machines at regular intervals, checking for the service, and restarting it if it has failed. However, my scripting skills aren't great - can anyone recommend a way I can make Impero work?

Posted

You can do this with Powershell using the following code but needs to be run as admin:

 

if ((Get-Service "ImperoClientSVC").Running -eq Stopped) {
Start-Service "ImperoClientSVC"
}

 

Throw it into a ps1 file and set a scheduled task to run it every x minutes (not 100% sure how you'd set Powershell to run as admin like this but Google should tell you) and you should be sorted.

  • Thanks 1
Posted

'I've heard rumours that the students have found a way of stopping the service, and the fact that the problem seems worse in Upper School (Y10 and 11) adds weight to that. I've hidden the task bar icon from students, so they aren't stopping it that way.'

If this is the case have you checked your settings on the Impero server

 

On the impero server have you used the advanced security settings under 'Tools' menu - there are security settings you can set in there regarding be able to start/stop the impero service - password required etc.

  • Thanks 1
Posted

Hi

@clareq

 

Sorry to hear having problems with Impero if you private message me your school details can take look into ticket and hopefully help you with any outstanding issues?

 

Russell

  • 3 weeks later...

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...