TIFs, GPOs and stuff, need some help :)

Soldato
Joined
7 Jun 2003
Posts
16,164
Location
Gloucestershire
Right, what i want to do is set it so that when a user on our domain logs off it doesnt save all the crap like TEMP and TIF folders to there home areas, can this be done through GPE?

if not, is anyone able to write a short and simple logoff script i can stick in GPE to remove them?

or if you know of any other ways about doing this that'd be great too :) at the moment we have near 1000 users all in one folder (stupid way of doing it really as it should have been about 100-200 per folder but nevermind that) each folder has a TIF folder in it which is pointless and annoying

we only had 40gb of space remaining of a 1TB eonstor yesterday, now we have 460gb :D i love big tidyups
 
could be something as simple as this

Code:
@ECHO OFF
CLS
Rem: VARIABLES PATHS SET BEFORE HAND
SET USERTEMP=G:\[PATH]
SET MP3=G:\[PATH]
SET TIF=G:\[PATH]

Rem: DELETE SCRIPTS
del /Y "USERTEMP\temp\*.*"
del /Y "MP3\*.*"
del /Y "TIF\*.*"
 
Back
Top Bottom