File size: 996 Bytes
0081600 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | # Windows Integration
HVCE v4 includes a direct CLI, a Tkinter GUI, and current-user shell integration scripts.
## CLI
```cmd
python hvce.py test
python hvce.py compress C:\Data C:\Data.hvce --profile balanced --recovery-percent 10
python hvce.py extract C:\Data.hvce C:\Restored --overwrite
```
## GUI
```cmd
python hvce_gui.py
```
The GUI supports:
- compress folder/file;
- optional password;
- optional 10% recovery record;
- extract;
- inspect;
- repair.
## Context menu install
From the package directory:
```powershell
powershell -ExecutionPolicy Bypass -File windows\install_context_menu.ps1
```
This adds current-user entries for:
- right-click folder/file -> **Compress with HVCE**;
- right-click `.hvce` archive -> **Extract HVCE here**;
- right-click `.hvce` archive -> **Open HVCE GUI**.
Uninstall:
```powershell
powershell -ExecutionPolicy Bypass -File windows\uninstall_context_menu.ps1
```
The `.reg` file is a template for manual users who prefer registry import.
|