Skip to content

Commit 61e75f6

Browse files
committed
Add readme for demo
1 parent 04fa485 commit 61e75f6

File tree

6 files changed

+27
-0
lines changed

6 files changed

+27
-0
lines changed

Demo/README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Demo
2+
3+
This directory contains a demo application named MyApplication and a packaging project to demonstrate the usage of the IExplorerCommand shell extension in a packaged MSIX application.
4+
5+
Upon installation, a context menu entry for MyApplication will appear in Windows File Explorer's context menu when right-clicking any file or folder. Multiple files and folders can also be selected. Clicking on the context menu entry will launch MyApplication and pass the selected files and folders as command line arguments to it. MyApplication is a demo application that simply displays a list of all the command line arguments passed to it.
6+
7+
## Pre-built package
8+
9+
Pre-built MSIX packages of this demo for various CPU architectures are automatically built by GitHub Actions and can be found on the [releases page](https://github.com/cjee21/IExplorerCommand-Examples/releases).
10+
11+
Since the packages are unsigned, they can only be installed on Windows 11 using the following command in an elevated PowerShell for testing purposes.
12+
13+
```powershell
14+
Add-AppxPackage -Path MyApplication.msix -AllowUnsigned
15+
```
16+
17+
## Screenshots
18+
19+
![Context Menu](screenshots/Screenshot_01.png)
20+
21+
![MyApplication](screenshots/Screenshot_02.png)
22+
23+
![Context Menu Multiple](screenshots/Screenshot_03.png)
24+
25+
![MyApplication Multiple](screenshots/Screenshot_04.png)
26+
27+
![MyApplication About](screenshots/Screenshot_05.png)

Demo/screenshots/Screenshot_01.png

93.7 KB
Loading

Demo/screenshots/Screenshot_02.png

21 KB
Loading

Demo/screenshots/Screenshot_03.png

88.2 KB
Loading

Demo/screenshots/Screenshot_04.png

30 KB
Loading

Demo/screenshots/Screenshot_05.png

28.4 KB
Loading

0 commit comments

Comments
 (0)