Temp Internet files check box 
Author Message
 Temp Internet files check box

Is there a way to script the "Empty Temporary Internet
Files folfer when browser is closed" checkbox in the
Advanced, Internet Properties box of IE6, running on
Windows 2000.

Thanks



Mon, 08 Aug 2005 01:37:14 GMT  
 Temp Internet files check box
      Registry Settings
      User Key:
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\
      Internet Settings\Cache]
      System Key:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\
      Internet Settings\Cache]
      Value Name: Persistent
      Data Type: REG_DWORD (DWORD Value)
      Value Data: (0 = empty, 1 = do not empty)

Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet
Settings\Cache\Persistent", 0 ,"REG_DWORD"
WshShell.Regwrite "HKLM\Software\Microsoft\Windows\CurrentVersion\Internet
Settings\Cache\Persistent", 0 ,"REG_DWORD"

Good luck!


Quote:
> Is there a way to script the "Empty Temporary Internet
> Files folfer when browser is closed" checkbox in the
> Advanced, Internet Properties box of IE6, running on
> Windows 2000.

> Thanks



Mon, 08 Aug 2005 05:23:06 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. Deleting Temp internet files

2. Delete all temp internet files for all users

3. Delete temp.internet files ecc..(newbie)

4. How can I delete cookies and temp internet files w/VBS

5. Deleting Temp Internet files, new approach ?

6. Deleting Temp Internet Files via script

7. Deleting Temp Internet Files via script

8. deleting temp internet files through script

9. My app makes a temp file in win/temp dir upon execution

10. Need help with script to show a hidden text box if a check box is checked

11. Clean out of Temp Internet , History, recent Folders

12. How to: Loop through all objects and count the checked check boxes

 

 
Powered by phpBB® Forum Software