Open the extracted folder and locate the primary architecture folder (e.g., XeroxPrintandScanExperience_x64.pkg ).
You might ask, "Why can't I just use the standard installer?" Here are three scenarios where the is critical:
Some advanced users have created versions by extracting the offline installer using tools like 7-Zip or Universal Extractor. Here is what you can extract: Open the extracted folder and locate the primary
Windows prevents non-store apps from running if sideloading is turned off. Fix this by navigating to Settings > Update & Security > For Developers and toggling on Developer Mode or Sideload Apps .
Creating a Portable Version of Xerox Print and Scan Experience Fix this by navigating to Settings > Update
Having the app ready on a technician’s USB drive allows for instant troubleshooting without searching for drivers on-site.
Direct scanning from the MFP to your PC with options for auto-cropping, straightening, and blank-page removal. Last updated: October 2025
Last updated: October 2025. Always refer to the official Xerox support website for the latest driver versions.
Offline installation of AppX/MSIX bundles requires the root certificates of the package to be trusted by the local machine. Run Windows updates or manually import necessary Microsoft code-signing certificates to the "Trusted Root Certification Authorities" store if you encounter signature verification errors.
@echo off title Xerox Print and Scan Experience Portable Deployer echo -------------------------------------------------------- echo Registering Xerox Print and Scan Experience App... echo -------------------------------------------------------- powershell -Command "Add-AppxPackage -Path '%~dp0App\*.appxbundle' -DependencyPath '%~dp0Dependencies\*.appx'" echo Done! The app is now available in your Windows Start Menu. pause Use code with caution.