Jump to content

Recommended Posts

Posted

We have a file server that has server 2003 standard edition, one of our old servers.

We cannot upgrade as yet but when we do it will be to SAN.

 

I know server2003 ent r2 can screen files, but we do not and will not have that availability on a SAN

 

I need a way to automatically delete .exe files, so students cannot store games and other software

 

I either need it to stop them saving them or a way of automatically search and delete once a day.

Whatever it is i will need to do this through UNC paths.

Posted

ANFS - got a reply from ICTNUT ( pretty sure thats the person on here who does ANFS etc ) and basically got told that they will be posting it on edugeek sometime this week as opensource software for edugeek.

 

So watch this space so to speak.

  • Thanks 1
Posted

what about a simple scheduled task that runs every 10 mins that simply does:

 

cd vol:\studentFiles

del *.exe /s

 

maybe make sure indexing is enabled to get better performance on folder trawling.

 

other then that the tools4ever guys used to sell a quota system that also did file screening. might be much for a temp solution tho.

 

hth

  • Thanks 1
Posted

If you are moving to a san for storage how do you envisage it working? Surely you make the file system resources available to your servers to store the users data on and thus they are treated as if they are local drives which means R2 file screening will work?

 

Ben

Posted

Hi,

 

ANFS and some other software that we have produced is being made available via the EduGeek projects section as open source and free.

 

I am in the process of packing these up and I will be passing them over to Bizzle who will be managing these projects from then on.

 

Hopefully the transfer will complete this week.

Posted

I hope you're not buying the san from that link as it's end of life.

 

If you use iscsi then you can connect your servers to it and they will see it as a local disk therefore R2 file screening will still work.

 

Ben

Posted
We can only use what sun give us as part of BSF and there recomended setup we have had this unit for a while now, we currently only run the admin shares and home areas on this but will eventually integrate the students home areas here.
Posted
We can only use what sun give us as part of BSF and there recomended setup we have had this unit for a while now, we currently only run the admin shares and home areas on this but will eventually integrate the students home areas here.

 

It'll probably be solaris based, so you could just use samba and veto the files. Failing that maybe you could use the find command

Posted

i am currently using this command, that i overlooked for some reason

 

cd vol:\studentFiles

del *.exe /s /f

 

the problem is it does not remove hidden or archived or zipped .exe files

but it does remove read only which is good

 

any ideas ?

Posted (edited)

well i would pre fix that script with an:

 

attrib * -H -R -A /S 

 

Which will remove all read-only and hidden flags on files making them accessible to delete. I would also remove ALL archive files from the student home drives as that pretty much means 'hide executable'.

 

so you should be in business with

 

cd vol:\studentFiles
attrib * -H -R -A /S
del *.exe /s /f
del *.zip /s /f

Edited by amfony
sorry you said archive files aswell - editted the attrib line

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