an open-source utility designed to back up and repackage Windows Store (UWP) applications
. It is primarily used by developers or advanced users to extract installed apps from the Windows environment and convert them back into How WSAppBak Works
The tool automates the process of identifying a Windows Store app's manifest and repackaging its contents into a portable installer. App Path Identification
: The user provides the installation path of the Windows Store app (typically found in C:\Program Files\WindowsApps Manifest Reading : WSAppBak reads the AppxManifest.xml
file to extract identity details, such as the app name, version, and architecture. Repackaging : It uses the MakeAppx.exe wsappbak work
tool (from the Windows SDK) to bundle the application files into a new
: To make the package installable on other machines, the tool can generate and apply a digital certificate using SignTool.exe Pvk2Pfx.exe Installation : Users must often install the generated
certificate to their "Trusted Root Certification Authorities" before the Windows OS will allow the repacked app to be installed. Key Features
: Creates a local copy of apps that may no longer be available in the Store. Bypassing Restrictions an open-source utility designed to back up and
: Some community guides suggest using it to bypass Microsoft Account login requirements for certain pre-purchased or free-to-download apps. Customization
: Allows developers to repackage modified versions of UWP applications. The project is hosted on by developer step-by-step guide
on how to find the specific installation paths for your apps? Wapitiii/WSAppBak: APPX Backupper and Repacker - GitHub
When the trigger occurs, the Appx Deployment Service (AppXSvc) follows this workflow: Lock the app directory – Windows temporarily prevents
.wsappbak file is not a standard ZIP. It uses a proprietary layout, often compressed but not user-readable, and may be signed with the system’s trusted installer key.Deleted subfolder under WindowsApps. The original app folder is then removed or replaced with a stub.C:\ProgramData\Microsoft\Windows\AppRepository\StateRepository-*.edb) logs that a backup exists.wsappbak (Windows Store Apps Backup) is a built-in Windows component/service used to back up and restore data for Universal Windows Platform (UWP) / Microsoft Store apps. It’s part of Windows’ app lifecycle and installation/repair mechanisms, and it interacts with app package deployment, user data folders, and Windows’ backup/restore/repair workflows.
If Disk Cleanup fails, use the Windows Package Manager:
# Open PowerShell as Administrator
Get-AppxPackage -AllUsers | ForEach-Object
if ($_.IsStub -eq $true)
Remove-AppxPackage -Package $_.PackageFullName -PreserveRoamableApplicationData
Then run:
# Manually check for orphaned wsappbak
Get-ChildItem "C:\Program Files\WindowsApps\Deleted\*.wsappbak" -Recurse
To delete them, you must first take ownership:
takeown /F "C:\Program Files\WindowsApps\Deleted" /R /D Y
icacls "C:\Program Files\WindowsApps\Deleted" /grant "%USERNAME%:F" /T
Remove-Item "C:\Program Files\WindowsApps\Deleted\*.wsappbak" -Force
Warning: Do not delete recent backups (less than 30 days old) unless you have confirmed the app works correctly.
| Name | Last modified | Size | Description | |
|---|---|---|---|---|
| IP9258FW-USAOP53.bin | 2015-11-02 10:03 | 512K | ||
| IP9258FW-USAOP60.bin | 2015-11-02 10:03 | 512K | ||
| MD5SUMS | 2015-11-02 10:03 | 100 | ||
| ipEdit.exe | 2015-11-02 10:03 | 548K |