Link to home
Start Free TrialLog in
Avatar of infradatel
infradatel

asked on

GPO to delete files from a local PC folder

Hello, I cant seem to find what I am trying to acheive (it may not be possible) I have a line of business application that creates temporary files on the local PC on my SBS 2011 network. Previously on SBS 2003 I had a login script run that would delete these temporary files.

I am trying to replicate this function using a GPO is this possible?
ASKER CERTIFIED SOLUTION
Avatar of infradatel
infradatel

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
Avatar of infradatel
infradatel

ASKER

Stupid Question
As far as I know this can only be done using a script.

So you can add the following script into your GPO under User Configuration > Policies > Windows Settings > Script (Logon/Logoff)

Script: Just replace the *.FileExtension with the extension of the files that you would like to delete.
Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
fso.DeleteFile "C:\path\to\folder\[b]*.FileExtension[/b]", True 

Open in new window

hahah...refresh :) please post your solution for future users.
If you go to Group Policy Management Editor you can obviously create a new GPO or edit an existing one.

User Config - Preferences - Windows Settings - Folders

Then create a new task to deltete folders and specify the path.
Thanks!! :)