Jump to content


IE7 Form & Password data


4 replies to this topic

#1 OFFLINE   ch742718

    Newbie

  • Members
  • Pip
  • 1 posts

Posted 04 February 2008 - 10:48 AM

Is it possible to configure CCleaner to delete IE7 form data (e.g. Google searches), but not stored user names/passwords (as is possible in IE7 itself)?

If so, how? If not, can I suggest this as an enhancement

#2 OFFLINE   d65

    Newbie

  • Members
  • Pip
  • 2 posts

Posted 26 September 2008 - 08:20 AM

View Postch742718, on Feb 4 2008, 11:48 AM, said:

Is it possible to configure CCleaner to delete IE7 form data (e.g. Google searches), but not stored user names/passwords (as is possible in IE7 itself)?

If so, how? If not, can I suggest this as an enhancement

I'm also interested in the answer to this question. Is it possible to keep password data and delete the other form history. In IE you can.

Kindely regards,

Douwe.

#3 OFFLINE   Disk4mat

    Power Member

  • Members
  • PipPipPipPip
  • 568 posts
  • Gender:Male
  • Location:Mesa, AZ

Posted 26 September 2008 - 11:01 AM

Both passwords and web form data is saved in the registry (binary value) under these keys..

Web forms
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\IntelliForms\Storage1

Logins\Passwords
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\IntelliForms\Storage2

The problem is, if you check "Auto complete from history" it removes passwords and web forms. So I tried adding a custom entry into WinApp2.ini. Sadly though CC displays the item but dosent delete the key. Not sure if this is a bug really.

I did figure out a fix though. Have CC run a script to delete the registry key for 'forms' while leaving passwords intact.

[IE7 Web Forms]
LangSecRef=3022
Detect=HKCU\Software\Microsoft\Internet Explorer
Default=True
ScriptKey1=ClearForms.vbs
Then in the vbs file...
Set WS = CreateObject("WScript.Shell")

WS.RegDelete "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\IntelliForms\Storage1\"
Set WS = Nothing
WScript.Quit

I tested the above and it works. I attached the vbs file in a zip in case anyone wants it. The vbs file has to be located in the same folder as CCleaner.exe

[attachment=2624:ClearForms.zip]
[attachment=2625:WebForms.PNG]

#4 OFFLINE   d65

    Newbie

  • Members
  • Pip
  • 2 posts

Posted 26 September 2008 - 01:12 PM

A big THANK YOU to Disk4mat. I followed your directions and it seems to work. Thanks again!

Douwe.

#5 OFFLINE   Disk4mat

    Power Member

  • Members
  • PipPipPipPip
  • 568 posts
  • Gender:Male
  • Location:Mesa, AZ

Posted 26 September 2008 - 09:02 PM

Your welcome! This is a work around, but I still would like to see CC clean Web Form data separately from Password/Logins.