| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
SimpleXisoDrive is a lightweight, read-only virtual file system driver for Windows. It mounts original Xbox ISO images (.iso) as virtual drive letters or NTFS folder mount points and exposes their contents directly in Windows Explorer.
The application is built on the Dokan user-mode file system driver through DokanNet and parses the Xbox Disc Video File System (XDVDFS) itself. The source image is never modified: every write operation is rejected at the file system layer.
Developed by PureLogic Code and released under the GPL-3.0 license.
| Page | What it covers |
|---|---|
| Installation | Requirements, Dokan and .NET runtime setup, installing and upgrading |
| Getting Started | Your first mount, drag-and-drop, unmounting, example workflows |
| Command-Line Reference | Complete argument/option reference, path resolution, exit codes |
| Troubleshooting | Every known error message with causes and fixes |
| FAQ | Short answers to common questions |
| Page | What it covers |
|---|---|
| Architecture | Component overview, startup and mount lifecycle, threading, error handling |
| XDVDFS Format | On-disk format: volume descriptor, directory entries, partition offsets |
| Virtual File System | Path resolution, caching, Dokan operation behaviour, read-only enforcement |
| Services | Logging, bug reporting, statistics, update checker, access checks |
| Privacy and Networking | Every network request, its payload, and how to run fully offline |
| Glossary | Definitions of terms used throughout the documentation |
| Page | What it covers |
|---|---|
| Building | Building and publishing for win-x64 and win-arm64 |
| Testing | Test project layout, running tests, coverage |
| Contributing | Code style, analyzers, workflow, pull request checklist |
| Release History | Tagged releases and notable changes |
| Property | Value |
|---|---|
| Application name | SimpleXisoDrive |
| Current version | 1.2.0 |
| Platform | Windows (x64, ARM64) |
| Target framework | .NET 10 (net10.0-windows) |
| File system | XDVDFS (original Xbox disc format) |
| Access mode | Read-only |
| Volume label | XBOX_ISO |
| File system name | XDVDFS |
| Prerequisites | Dokan 2.x, .NET 10 Desktop Runtime |
| License | GPL-3.0 |
| Repository | https://github.com/purelogiccode/SimpleXisoDrive |
# Mount an ISO to the first free drive letter (M: through R:) and open Explorer
SimpleXisoDrive.exe "D:\Games\Halo.iso" -l
# Mount an ISO to drive Z:
SimpleXisoDrive.exe "D:\Games\Halo.iso" Z:
# Mount an ISO into an empty NTFS folder
SimpleXisoDrive.exe "D:\Games\Halo.iso" "C:\Mounts\Halo"
# Enable verbose Dokan debug output
SimpleXisoDrive.exe "D:\Games\Halo.iso" Z: --debugThe simplest path of all is to drag and drop an .iso file onto SimpleXisoDrive.exe.
SimpleXisoDrive is licensed under GPL-3.0. Third-party components:
| Component | License |
|---|---|
| DokanNet | MIT |
| Dokan Library | LGPL/MIT |
User guide
Technical reference
Development
| Back | FazBrowse Home | New Git URL |