Jump to content

Recommended Posts

Posted

We use Impero, which allows you to mute the sound remotely. We also have a 'special' Impero policy group reserved for certain students which blocks a wide range of programs too, even quite innocent things like MS Paint because they would rather spend their time doodling than working.

 

A favourite trick of mine when I find students listening to music on USB memory devices is to take control of their PC, select all the music files and drag them towards the recycle bin.... this generally results in the memory device being removed rapidly ;)

Posted
Had annoying kid next to me who was on youtube, was being loud & playing music - really annoyed me

so I created this quick script and shutdown their computer without warning! At the prompt just enter the computername!

 

Hope someone else might find it usefull!

 

Instant Kill.bat

@ECHO OFF

cls

SET /P comp=[Kill]

shutdown -m %comp% -s -f -t 00

exit

 

I can't believe you actually let kids on youtube!

Posted
ITalc is another easy one to set up. You get the option to lock them out with a massive padlock picture popping up on screen. You ort to see their faces when I first ran it!!!!
Posted
We have smartcache here locked to only allow identified stations through so each station is running the ident daemon. Our fun is to kill that remotely & then watch as they struggle to find any website that works. Saves having to carry out a full ban & once the station is rebooted all works again :D
Posted

Are you looking for something to shut computers down at the end of the day? Could just use a batch file along these lines-

 

shutdown -m	\\roomNumws01	 -s -t 300 -c "This computer will shut down as part of the school's green commitment. Apologies if it is in use. Please save any work immediately."
shutdown -m	\\roomNumws02	 -s -t 300 -c "This computer will shut down as part of the school's green commitment. Apologies if it is in use. Please save any work immediately."
shutdown -m	\\roomNumws03	 -s -t 300 -c "This computer will shut down as part of the school's green commitment. Apologies if it is in use. Please save any work immediately."
shutdown -m	\\roomNumws04	 -s -t 300 -c "This computer will shut down as part of the school's green commitment. Apologies if it is in use. Please save any work immediately."
shutdown -m	\\roomNumws05	 -s -t 300 -c "This computer will shut down as part of the school's green commitment. Apologies if it is in use. Please save any work immediately."
shutdown -m	\\roomNumws06	 -s -t 300 -c "This computer will shut down as part of the school's green commitment. Apologies if it is in use. Please save any work immediately."

 

Can be scheduled using task scheduler.

 

The comment -c and time -t (currently 300 seconds, five minutes) can be ammended along with the hostnames -m of the machines.

 

I usually use Excel to knock these up super quick, paste shutdown -m into the left column, hostname into the middle and your parameters for shutdown time, action and comment into the middle.

 

Drag the middle column down and, assuming you have a fairly consist naming policy ending in a number, autocomplete will fill in all the hostnames for you.

 

The text in the other columns will stay exactly as is (drag each column down to the correct number of rows seperately). Then simply copy into notepad and save your file with the extension .bat

 

IMHO best practice is to create one for each suite, as any unreachable (i.e. already shut down, network cable out) machines will hold up the script for about 30 seconds. With one script for the entire site, and a medium to large size site, that could result in delays into the hours before the last computer receives the command.

 

If you do one for each room you have fairly granular control and can still trigger them all to run at the same time.

 

PLEASE NOTE THAT THE SHUTDOWN CANNOT BE CANCELLED BY A NON-ADMIN USER, I check with Imperio to ensure that the suite is not in use before running the script.

Posted (edited)

I use a batch script to - not just to shutdown (take away the -r), but to restart a machine so I have time to block or move their account:

 

shutdown -r -t 0 -f -m

 

If you forget the switches, it's 'Read The Frigging Manual' - replace certain words as you would like...

Edited by Mr.Ben
Posted
Is there a way that this script can close down multiple pc's and without entering the machine into Dos.

 

Thanks in advance.

 

depends how celver youre feeling i just use specops gpupdate select the pcs and turn off

  • 2 months later...
Posted

we use ABtutor here, so much fun!!! :)

 

I had considered instead of banning game sites make the pages forward to that rick astley song

 

 

rick'roll pwnage :)

  • 1 month later...
Posted

i have a .vbs script that turns on and off num lock, caps lock and scroll lock but i can't get it to run on a remote machine here is the script

 

Set wshShell =wscript.CreateObject("WScript.Shell")

do

wscript.sleep 100

wshshell.sendkeys "{NUMLOCK}"

WScript.sleep 100

wshshell.sendkeys "{CAPSLOCK}"

WScript.sleep 100

wshshell.sendkeys "{SCROLLLOCK}"

WScript.sleep 100

loop

 

anyone got any idea how i can get this to work on a remote machine?

  • 3 weeks later...
Posted
I like taking control of students computers quietly when they are playing games and press random keys so that they loose the game. Once it says game over, I ban the site :)
Posted

well it's all changed since my day....all we had were a few PC's in the sixth form block (hugely embarrassed when I returned to my secondary school a year or so ago to meet my old head of year and kmount who quickly cited my entrance into the 'IT naughty book' for some rather murky adolescent surfing!!) I very nearly dropped down dead on the spot

 

I can't believe how many tricks and traps are at your disposal nowadays...no wonder the student's hacking skills are on the increase!

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