Link to home
Start Free TrialLog in
Avatar of UDSquare
UDSquareFlag for India

asked on

Internet Cache and Temporary files need to be set to be cleared on exit.

We need to create GPO for below settings :-

Chrome, IE and Edge set to the following:
Cache Cleared on Exit.
Need to leave History, and leave cookies and leave passwords and forms alone.

please advice GPO settings
AD server is 2012 R2
ASKER CERTIFIED SOLUTION
Avatar of Pawan Kumar
Pawan Kumar
Flag of India 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
Another option could be a tool(from the same link) -- CCleaner.
>>Install CCleaner on every machine or Deploy it via GPO (Like I did)
>>Create this script and make it being scheduled on logon

@echo off
if exist "%programfiles(x86)%\CCleaner" (
start /d "C:\Program Files (x86)\CCleaner" CCleaner.exe /AUTO
)

if exist "%programfiles%\CCleaner" (
start /d "C:\Program Files\CCleaner" CCleaner.exe /AUTO
)

time /T >> %appdata%\CCleaner_history.txt

exit

Open in new window

Avatar of UDSquare

ASKER

Internet Cache and Temporary files , Needs to be cleared on browser exit. we don't want to clear everything, we just need to clear   Internet Cache and Temporary files for Chrome, IE and Edge .
Is there any update on this ????
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