Skip to main content

Documentation Index

Fetch the complete documentation index at: https://jarvisos.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

App Fetch

The Microsoft Store is removed in JarvisOS. App Fetch is its replacement — a clean, telemetry-free tool for sideloading UWP (Universal Windows Platform) applications directly from their source. JarvisOS installs App Fetch automatically as part of the maintenance tools suite.

What It Does

App Fetch hooks into Windows’ native Appx deployment APIs to install .appxbundle and .msixbundle packages directly, without routing through Microsoft’s Store infrastructure or its associated telemetry endpoints. It handles:
  • Cryptographic signature verification
  • Dependency resolution (VCLibs, .NET Native frameworks)
  • Silent background installation
  • Local package caching

Basic Usage

app-fetch install <PackageID_or_URL>
Run as Administrator from an elevated terminal.

Examples

Install directly from a GitHub release or any direct download link.
app-fetch install https://github.com/user/repo/releases/latest/download/app.msixbundle

Dependency Cache

App Fetch maintains a local cache of framework dependencies at %PROGRAMDATA%\AppFetch\Cache to avoid re-downloading on subsequent installs. Clear the cache:
app-fetch clean --cache

Store AppReplacement
EdgeBrave / LibreWolf / Ungoogled Chromium
Microsoft PhotosIrfanView / nomacs
Microsoft Media Playermpv / VLC
Microsoft To DoObsidian / Logseq
Office OnlineOnlyOffice (already installed by JarvisOS)
For most developer tools, prefer WinGet or Chocolatey over App Fetch. App Fetch is specifically designed for UWP/MSIX packages that are not available via those package managers.
# WinGet is preserved and ready to use
winget install <PackageName>

# Chocolatey (install separately)
choco install <PackageName>