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
- Host: GitHub
- URL: https://github.com/octocorvus/run_app_container
- Owner: octocorvus
- License: mpl-2.0
- Created: 2022-09-30T04:52:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-30T05:12:00.000Z (over 3 years ago)
- Last Synced: 2024-11-22T19:40:53.046Z (over 1 year ago)
- Topics: appcontainer, isolation, windows
- Language: Rust
- Homepage:
- Size: 22.5 KB
- Stars: 9
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```