Link to home
Start Free TrialLog in
Avatar of flechazul
flechazulFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Logon script to delete TEMP files

Hi,

I have a Windows 2000 Server SP4 / XP Pro SP1 network, one domain.

I need to create an automated mechanism to delete TEMP files in Windows XP workstations. The two folders I need to target are (everything within this folders should be deleted):

C:\Windows\Temp
C:\Documents and settings\Current_domain_user_name\Local settings\Temp

I also need to delete all files of type *.rtf *.doc and *.tmp (only this type of files, not folders or any other file type) from:

C:\Documents and Settings\Current_domain_user_name\Program files\Microsoft\Word

I would like to add a logon script to a GPO, so that everytime the user logs in, the delete action takes place, before starting any programs.

I have no knowledge of VBS. Could somebody help me with the script?

Thanks in advance,

Flecha
Avatar of Pentrix2
Pentrix2

a login script is more like a batch file, just do add the commands to delete those files in that Temp file in the login script.
SOLUTION
Avatar of merowinger
merowinger
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
you could just do this, so much easier.

echo off
delete C:\Windows\Temp\*.*
delete C:\Documents and settings\Current_domain_user_name\Local settings\Temp\*.*
I meant,

C:\Documents and settings\%user%Local settings\Temp

or

C:\Documents and settings\Default User\Local settings\Temp
Delete *.* is not working because it's waiting for an input. I use del *.tmp, del ~*.*.

del %temp%\*.tmp
del %temp%\~*.*

for the users's temp folder

del %homedrive%\%homepath%\Program files\Microsoft\Word\*.rtf
del %homedrive%\%homepath%\Program files\Microsoft\Word\*.doc
del %homedrive%\%homepath%\Program files\Microsoft\Word\*.tmp

but I think is Not
\Program Files\
but
\Application data\

for Office files and

del %windir%\Temp\*.tmp

for system temp folder

If you want to delete all files you can use the syntax

for %L in (*.*) do del "%L"


Oh, my bad.  Or you could kix it.
Avatar of flechazul

ASKER

Please excuse me for not replying earlier. I was  away and could not try your suggestions.

Now I have implemented them, but I am experiencing some problems. The batch file looks like this:

del %temp%\*.* /f /s /q
rmdir %windir%\Temp /s /q
mkdir %windir%\Temp
del %homedrive%%homepath%\Application Data\Microsoft\Word\*.rtf
del %homedrive%%homepath%\Application Data\Microsoft\Word\*.doc
del %homedrive%%homepath%\Application Data\Microsoft\Word\*.tmp
del %homedrive%%homepath%\Application Data\Microsoft\Word\~*.*

My problems are:

1.- The first 3 lines are working fine, although I would like to be able to delete the %temp% directory and recreate, like I do with %windir%. This would allow me to delete also the folders, not only the files. How to do it?
2.- The next 4 lines are not working. Regarding the Word temp files, Crissand was right when pointing out that the path was really to Application Data, not Program Files. However, all the lines to delete the temp files in the Microsoft\Word folder are not working. It seems like they cannot reach the Application data folder itself. I have read in http://support.microsoft.com/default.aspx?scid=kb;en-us;329308&Product=winxp that there is a problem with the path to Application data folder in XP. I have followed the proposed steps but it is still not working (even in CMD I do not get the folder if I type %APPDATA%). As you can see, I have also manually added the folder to the del path, but it still fails to delete the files. Where is the problem?

Thank you
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
> Here you forgot a backslash

You are right. I have corrected it but stil does not work.

> Where is the prompt when you type the following lines:
> %systemdrive%
> cd %appdata%

It takes me where I want to go: to the current user application data folder. It seems this part is fine then.

> That mean you could replace the three lines bellow with...

I've done it. If I run it locally (no as a logon script) I get the message "The system cannot find the specfied path", although the path that I can see in the CMD window as selected for this task is correct (I have added a pause to let me see what it is doing).
If I run it as a logon script, it does not delete any files, I guess for the same reason provided when I run it locally (I cannot see what it is happennig in the logon script).
You can't see the logon script? Make it visible. Let's see:

The script must be assigned to user, not computer, otherwise all user environment variables does'n't exists.

Do the following modification to the GPO:

Administrative Templates\System\Logon
Always wait for the network at computer startup and logon

and

USER
Administrative Templates\System\Scripts
Run logon scripts synchronously

and

Run logon scripts visible
I am applying the logon script to user, no doubts about that.

I have modified the GPO according to your instructions (except for "Always wait for the network at computer startup and logon" which is not present - Windows 2000 server english SP4).

Now I can see the script. It runs as in the local test. I get the same error: "The system cannot find the specified path" (just for the word files path, the %appdata%). However, the path shown is correct. I do not think it makes any difference, but I should let you know that although the server is the english version, the client machines runs XP Pro spanish version SP1 updated with all the patches.

Any new ideas? Could it be a bug?

Thanks
It's not a bug. Application data is a hidden folder for any user except the administrator. I think you must run

attrib -r -h %appdata%

to make the folder visible. I never done this, so I don't know if it works.
It does not.

I've tried other parameters of the attrib command as well, but no luck (neither running it locally, or as a logon script). If I tried the same command and parameters with any other %value% like %windir% or %temp% it works fine. However, for some reason, attrib does not recognize %appdata%.

I guess I will wait one more day for replies, but if nobody has any other ideas, I will give Crissand the points for the valuable time employed trying to solve this issue, although half of my problem is not solved.

Thanks you very much,