Windows error 0x8007109B, -2147020645

Detailed Error Information

APPCONTAINER_REQUIRED[1]

MessageThis application can only run in the context of an app container.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode7 (0x007)
NameFACILITY_WIN32[2][1]
DescriptionThis region is reserved to map undecorated error codes into HRESULTs.[2][1]
Error Code4251 (0x109b)

This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x0000109b.

Questions

0votes
1answer

iot core error when use ProcessLauncher.RunToCompletionAsync execute process

I want to run another program from my program my code is var options = new ProcessLauncherOptions(); var standardOutput = new InMemoryRandomAccessStream(); var standardError = new InMemoryRandomAccessStream(); options.StandardOutput = standardOutput; options.StandardError = standardError; await ProcessLauncher.RunToCompletionAsync(@"C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\930e206e-dd28-4760-84b2-f3a1f74801feVS.Debug_ARM.Mostafa.Bagheri\Jamsaz.InjectionWeights.exe", "", options); when i run in vs 2017 get following error > This application can [...] read more
c#
uwp
launcher

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0