Quick fix: Microsoft Store sometimes skips optional in-app components (extensions, voice packs, content packs). Open the app post-install → Settings → check for “Download additional content” or similar. For apps like Microsoft Translator, Maps, Office: open the app, accept the prompt to download. For developer testing: install via .appxbundle directly with dependencies.
Apps with main package + optional component packages (e.g., Microsoft Office with language packs, Microsoft Translator with offline languages) sometimes don’t auto-install optional packs. Trigger from within the app.
Affects: Windows 11.
Fix time: ~5 minutes per app.
What causes this
Some Store apps ship as: main package + optional sub-packages (language packs, content packs, voice packs). Optional packages are downloaded on-demand to save bandwidth. Store may skip them if:
- App doesn’t request them automatically.
- Network was slow/interrupted during install.
- Specific region’s default doesn’t include them.
- Storage was low.
Method 1: Trigger from within the app
The standard route.
- Open the app post-install.
- For language-heavy apps (Microsoft Translator, Microsoft Maps): Settings → Download language packs.
- Pick languages / regions to download.
- For Microsoft Office (Store version): File → Account → Add language. Pick language → install pack.
- For Cortana / Speech: Settings → Time & language → Speech → Manage voices → install additional voices.
- For map data: Maps app → Settings → Download maps → pick region → download.
- For news / weather apps: per-region content downloads on demand.
- For apps with their own update mechanism: app may handle optional components separately. Check app’s settings.
This is the standard fix.
Method 2: Use PowerShell to install dependencies
For developer or advanced.
- For .appxbundle apps with optional dependencies:
- Open PowerShell (Admin).
- List dependencies for an app:
Get-AppxPackage -Name "Microsoft.Translator*"Shows Dependencies field.
- If specific component missing: download .appxbundle of the optional package from a Store proxy or extract from .appxbundle.
- Install:
Add-AppxPackage -Path "C:\path\to\optional.appxbundle". - For checking app status:
Get-AppxPackage Microsoft.* | Where-Object {$_.Status -eq "Modified"} - For developer-mode debugging:
Get-AppxLogshows recent app deployment logs. - For .appx packages from Microsoft Store online: tools like store.rg-adguard.net generate direct URLs.
This is the developer route.
Method 3: Reinstall the app fully
For comprehensive fix.
- Sometimes simplest: uninstall and reinstall the app from Store.
- Settings → Apps → Installed apps → find the app → Uninstall.
- Restart PC.
- Open Microsoft Store. Find the app. Install fresh.
- During install: ensure stable network. Most optional components install in same flow.
- For very large apps (multi-GB games): use Method 1 to add optional content after main install.
- For Office apps: install via office.com/install, not Store. Better optional language support.
- For apps with subscriptions: ensure account licensed before reinstall.
This is the comprehensive reinstall.
How to verify the fix worked
- App offers full feature set including the optional components.
- Language packs / voice packs visible in settings.
- Storage used by app increased (optional content present).
- Offline functionality works (if optional was for offline use).
If none of these work
If components still missing: Wrong region: some components region-specific. Change Microsoft account region. For paid licenses: ensure subscription active. Some optional pack requires premium tier. For Insider builds: dependency packs may not be available yet. For corporate-managed PCs: IT may block specific optional components. For app-specific bugs: developer’s bug. Contact developer support. For storage issues: free 5GB+ space. Optional packs typically 50MB-2GB. For language packs: not all languages available for every region. Try a different language first to test mechanism. For Windows Subsystem for Linux / Android: complex dependency chain. Reinstall WSL entirely if needed.
Bottom line: Open the app, look for “Download additional content” or language pack option. PowerShell Get-AppxPackage for dependency check. Reinstall app from Store for comprehensive fix. Trigger optional components from within app, not just Store.