Questions tagged [appcontainer]

27 questions
13
votes
2 answers

Unable to access application container from iPad running on iOS 10 beta

I am not able to download app container using xcode for my application on iOS 10 beta 4. I am using later xcode (beta 4). When I connect my device and go to Device in xcode, I am able to see my app listed but when I click on download container I get…
Kapil Choubisa
  • 5,152
  • 9
  • 65
  • 100
7
votes
3 answers

Is there a way to create a named pipe from an AppContainer BHO on IE11?

I'm trying to write a BHO for Internet Explorer 11 (Windows 8.1). My BHO implements the AppContainer sandbox, but I can't seem to create a Named Pipe, CreateNamedPipe fails with that message: Access is denied. Here's the code I'm using to create…
pyrho
  • 423
  • 7
  • 13
3
votes
0 answers

Is there any way of ipc between appcontainer process and normal process in Windows?

I'm trying to make ipc between an appcontainer process and a normal process in Windows. I made a process in Windows appcontainer, thanks to this article. However, I have no idea how to communicate between the process in appcontainer and a normal…
3
votes
0 answers

MacOS Sandboxing WRITE files in App Container

I am trying to enable sandboxing on an application I am working. Although the application is heavily on a file system, for creating and saving and loading user files, It doesn't need the files to be located outside of the App container. But by…
user7002255
3
votes
0 answers

Is AppContainer available on Azure / Windows Server?

Windows 8 AppContainer appears to provide an attractive sandboxing/process isolation model. Is it available on Windows Azure? Windows Azure cloud service instances seem to run a version of Windows Server. I would like to provide some isolation for…
t0yv0
  • 4,714
  • 19
  • 36
2
votes
0 answers

Access denied error during initialization of a sandboxed process

I am tying to launch a process in Chromium sandbox with App Container enabled, I didn't change any settings, so it's just a normal startup and it, actually, works well on my Windows 11 system, however on Windows Server 2019 Datacenter, version…
Alex
  • 252
  • 1
  • 6
  • 18
2
votes
1 answer

Accessing named pipe servers from within IE EPM BHO

I am trying to make some changes to our legacy product to support IE EPM on the BHO. I have managed to get it to load and the various methods - SetSite, DocumentComplete etc. - get invoked. I seem to be hitting a snag when trying to connect to the…
Vivek
  • 428
  • 2
  • 13
2
votes
1 answer

AppContainer Integrity Level

I'm currently trying to understand the mechanics behind the AppContainer that is used to sandbox WinRT applications. I've understood that AppContainers have their own integrity level, that blocks any read and write attempts to assets with a higher…
1
vote
1 answer

Run .NET application in Windows AppContainer?

I'm trying to use CreateAppContainerProfile to run a .NET 6 application. Based on the documentation that api is used to set up the same kind of sandbox used by UWP applications. Now this works correctly if the application is installed below…
Tannin
  • 488
  • 5
  • 11
1
vote
1 answer

Anyone has experience on using GetAppContainerNamedObjectPath?

Recently I came across a Windows API called GetAppContainerNamedObjectPath. But I have no idea on how I can use it. I found a msdn page for this api…
vaska11
  • 380
  • 2
  • 13
1
vote
0 answers

How do I get parameters of the Navigation AppContainer?

I've received the Id as an Appcontainer from another navigation. How can I get each received Id on the StackNavigation screen? const Parent = createStackNavigator( { User: User, // <----- I want to bring Id to this screen. Noti: Noti, …
1
vote
1 answer

How to use two Const in createAppContainer in React native

I am trying to use two Const in createAppContainer but it dose not allow me to do so i have to use createBottomTabNavigator and createStackNavigator both in app.js. here is my code import React from 'react'; import { StyleSheet, Text, View } from…
S.Hashmi
  • 485
  • 1
  • 8
  • 29
1
vote
0 answers

Getting AppContainer SID

I'm trying to open the directory object within a AppContainer object: \\Sessions\\\\AppContainerNamedObjects\\ I can't seem to get the value within the process. This value is visible using Process…
Enosh Cohen
  • 369
  • 2
  • 11
1
vote
0 answers

Can you use an AppContainer to sandbox winapi processes?

Windows 8 introduced AppContainers to sandbox Windows Store Apps. Is there a public API in Windows 8 or 10 that allows you to sandbox arbitrary processes, not just store apps?
ChrisD
  • 3,378
  • 3
  • 35
  • 40
1
vote
0 answers

Show modal dialog from Win32 app over a UWP application

Is there a way for a process to show a modal dialog over a separate process's UWP app (MS Edge in particular) or block any user interaction with a UWP application while we show our dialog? Background We have an application that from time to time,…
Rory
  • 40,559
  • 52
  • 175
  • 261
1
2