Daniel Williams
Daniel Williams

Reputation: 9312

where in the file system is Silverlight Isolated storage kept?

I am testing a Silverlight application which stores user info in isolated storage. I want to "reset" the app and clear out the storage, without doing this in .NET code. Is there a way to locate and remove these files? User- and application-specific deletion would be ideal, but full-out clearing is acceptable too.

Upvotes: 14

Views: 24178

Answers (2)

jv42
jv42

Reputation: 8593

If you want to clear the info without coding anything, just use the Silverlight control panel, it has a storage tab which allows you to see and remove per application/site.

One easy way to get to it: right click on any Silverlight application => Silverlight.

Or, on my machine, the corresponding application: "C:\Program Files (x86)\Microsoft Silverlight\5.1.10411.0\Silverlight.Configuration.exe"

Upvotes: 3

Ryan
Ryan

Reputation: 28217

See this article or MSDN:

Windows 7 and Windows Vista

%userprofile%\AppData\LocalLow\Microsoft\Silverlight\is

Windows XP

%userprofile%\Local Settings\Application Data\Microsoft\Silverlight\is

MacOS

/Users/<user>/Library/Application/Support/Microsoft/Silverlight/is

Upvotes: 18

Related Questions