Windows error 0x80131468, -2146233240

Detailed Error Information

ISS_E_CREATE_DIR[1]

Message"Unable to create the store directory."

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode19 (0x013)
NameFACILITY_URT[2][3]
DescriptionThe source of the error code is .NET CLR.[2][3]
Error Code5224 (0x1468)

Questions

4votes
4answers

A Cause for HRESULT 0X80131468 when accessing IsolatedStorageBackingStore

The scenario I am facing is that I have an ASP.NET web service (.NET 3.5) running on an W2k3 server which is using the CacheManager/IsolatedStorage store to store a persisted state variable. This configuration has been working fine for quite sometime until we changed the physical machine. Now whenver the [...] read more
c#
isolatedstorage
enterprise-library
4votes
5answers

IsolatedStorageException: Unable to create the store directory

Hi I have to store some hidden information in Isolated space. For that I am using System.IO.Isolated class like IsolatedStorageFile isf = System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(IsolatedStorageScope.User | IsolatedStorageScope.Assembly, null, null); Stream writer = new IsolatedStorageFileStream(filename, FileMode.Create, isf); IFormatter formatter = new BinaryFormatter(); formatter.Serialize(writer, appCollection.ToString()); writer.Close(); It works fine in Windows XP but on [...] read more
c#
asp.net
visual-studio
isolatedstorage
4votes
1answer

IsolatedStorageException: Unable to create the store directory. (Exception from HRESULT: 0x80131468)

I've hit an interesting problem with our .NET 4 application trying to access IsolatedStorage (GetMachineStoreForAssembly) on a Windows Server 2008 R2 machine for a new "administrator" account. Other users on this same machine can access it just fine. The first time the application is run under this new account and [...] read more
c#
.net
windows-server-2008
windows-server-2008-r2
isolatedstorage
1vote
3answers

OpenXml, Isolated Storage and large file sizes

I am using OpenXML to generate an Excel document within a web application. It is working great for files < ~10mb For files generated with sizes great than 10mb I am getting the following exception... While I have some discussion of this issue on the web (some about using other [...] read more
c#
asp.net
excel
openxml-sdk
0votes
0answers

{"The type initializer for 'SAP.Logon.Core.LogonCore' threw an exception."} Unable to create the store directory. (Exception from HRESULT: 0x80131468)

I am using SAP SDK In Microsoft bot application. Its working fine for me in local emulator, but after publishing this bot application on azure portal I got this exception. > {"The type initializer for 'SAP.Logon.Core.LogonCore' threw an exception."} > Unable to create the store directory. (Exception from HRESULT: 0x80131468) [...] read more
c#
sap
bots
smp
0votes
1answer

HRESULT: 0x80131468 - Download large excel file C#, .Net

On my website, excel download function is working fine for < 10k data rows. If the rows is about 25k, 30k, I receive the following error. Unable to create the store directory. (Exception from HRESULT: 0x80131468) And it's working fine on development server. read more
c#
asp.net
asp.net-mvc
excel

Comments

Leave a comment

(plain text only)

Sources

  1. https://github.com/dotnet/coreclr/blob/v1.1.0/src/inc/corerror.xml
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0