How can I delete data saved using IE userData Behavior?

I cannot find information about deleting data stored in IE userData Behavior , except deleting a single item using JS.

Is the user deleted when the user deletes cookies and html 5 localStorage, or does it need to be deleted in some other way?

+4
source share
1 answer

IE saves userData in XP:

C:\Documents and Settings\USERNAME\UserData 

or

 C:\Documents and Settings\USERNAME\Application Data\Microsoft\Internet Explorer\UserData 

Vista / Win7:

 C:\Users\USERNAME\AppData\Roaming\Microsoft\Internet Explorer\UserData 

You can find folders and * .dat files and XML files containing data in the UserData folder. You can delete them directly and clear cookies or html 5 localStorage will not work.

+4
source

All Articles