An open API service indexing awesome lists of open source software.

https://github.com/octocorvus/run_app_container

Run windows applications in AppContainer sandbox
https://github.com/octocorvus/run_app_container

appcontainer isolation windows

Last synced: about 1 year ago
JSON representation

Run windows applications in AppContainer sandbox

Awesome Lists containing this project

README

          

# run_app_container
Run windows applications in [AppContainer](https://learn.microsoft.com/en-us/windows/win32/secauthz/appcontainer-isolation)

This is NOT ready for production use and is missing a lot of functionality.

## Examples

Running notepad:
```powershell
.\Start-IsolatedProcess.ps1 -Verbose -ContainerName MyContainer -ApplicationName C:\Windows\notepad.exe
```

Running PowerShell:
```powershell
.\Start-IsolatedProcess.ps1 -Verbose -ContainerName MyContainer -ApplicationName C:\Windows\System32\conhost.exe -Arguments powershell
```