Is it possible for one of you to write a script for removing the temp files during logout for all users? (or server during restart)
Or this script can be scheduled alternate weeks.
As unnecessarily it will fill up the C drive otherwise.
Is it possible for one of you to write a script for removing the temp files during logout for all users? (or server during restart)
Or this script can be scheduled alternate weeks.
As unnecessarily it will fill up the C drive otherwise.
You don't want to do this or your windows updates and any other software installation needing a reboot to finish installation will fail. We tried something similar and regretted it...
I would recommend that you create a .bat file that you train your users to run after they boot up and before they open any files/programs...
You could start with:
cd %temp%
del /F /S /Q *.*
If you want to delete other temporary locations, you would need to add them according to your environment...