oh sorry...you can delete the files from local machine during logon...not necessariy from server (roaming profiles)
Main Topics
Browse All TopicsHi pros, our users have roaming profile of 10m and network drive unlimited first of all does that make sense??? 10m
anyway my real question is that the users using SAP always have an error message telling them that their profile is full because SAP or the Profile (windows) is saving or caching the temporary files of e.g. SAP on the users profile
we just have to delete this temporary file(s) then everything is fine again..its there anyway to prevent this from happening?? caching the temporary files?????
Tenks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Jharper :)
what you are waiting for....post it here... go on...:>) thats why we are here
here is a simple code from my side
@Echo off
echo OS Is======: %os%
if %os%==Windows_NT goto NT
Del c:\folderpath\foldername\f
goto end
:NT
Del "%USERPROFILE%"\foldername
:end
you can use variables/share names/folder names/comptuer names according to your environment
the NT portion is for 2k machines thats why i used the userprofile variable, maybe the same variable is available in NT as well, but you can add folder locations according to your environment and requirments.
nazirahmed:
Check out the following link. It shows an example of the cleandirectory() user defined function. Check it out and see what you think. You can call it from your script like the example below. You pass (path, filetype, file age) into this function.
Cleandirectory('%TEMP%','*
Cleandirectory('%TMP%','*.
Cleandirectory('C:\Temp','
Cleandirectory('%WINDIR%\T
http://www.kixtart.org/ubb
Business Accounts
Answer for Membership
by: nazirahmedPosted on 2004-03-15 at 08:12:50ID: 10598316
Hi sername%/p ath-to-the -folder-to -delete-th e-file/*.s ap
its it happening on win2k machines or others??? you can add few lines to to the logon script to delete the specified files, for exmaple delete //comptuername/profiles/%u
backslash on my keyboard is not working..so dont copy...of course you need to put computer name and share name according to your environment.