0XC00D1358

NS_E_CANNOT_BUY_OR_DOWNLOAD_CONTENT (0XC00D1358) Fix

Windows Errors Beginner 👁 1 views 📅 May 27, 2026

This Windows 10/11 error blocks purchases or downloads from the Microsoft Store. Usually a corrupt Store cache or account sign-in issue.

Corrupt Microsoft Store Cache

This is the #1 reason I see 0XC00D1358 pop up. The Store's cache gets stuck and thinks you're not logged in or the purchase can't go through. Had a client last week whose entire Store wouldn't download a single app—just this error. Fixed it in two minutes.

Here's what you do:

  1. Press Windows key + R, type wsreset.exe, hit Enter.
  2. A blank command window opens. Let it do its thing—it'll close on its own and the Store launches.
  3. Try your download or purchase again.

If that doesn't do it, go deeper:

  • Open Settings > Apps > Apps & features.
  • Search for Microsoft Store.
  • Click Advanced options, then Reset. This nukes the cache and the app's local data.

That fixes about 80% of cases. You're basically giving the Store a clean slate.

Windows Account Sign-In Problem

Second most common trigger: your Microsoft account has a hiccup. Maybe you changed your password recently, or 2FA is tripping things up. The Store doesn't always pull the latest token.

Steps I use on almost every job:

  1. Open Settings > Accounts > Your info.
  2. Click Sign out (under your Microsoft account). Don't worry—your files stay put.
  3. Reboot your PC.
  4. Go back to the same spot and sign back in with your Microsoft account.

If that feels too drastic, try this first: open the Store, click your profile icon, choose Sign out, then close and reopen the Store and sign back in. Sometimes the lightweight sign-out works.

For the stubborn ones—especially on corporate machines with Azure AD—open Credential Manager (search for it in Start), go to Windows Credentials, and delete any entries under Microsoft Account. Reboot, sign in fresh. I've seen this fix accounts that refused to sync.

Damaged Microsoft Store App Itself

Less common, but when it hits, nothing else works. The Store app gets corrupted—maybe from a failed update or a third-party cleanup tool that went rogue. I had a client whose Store app icon was missing entirely; they'd been using a shortcut that launched nothing. Reinstall fixed it.

Run this in PowerShell (admin):

Get-AppxPackage -AllUsers *Microsoft.WindowsStore* | Remove-AppxPackage
Get-AppxPackage -AllUsers *Microsoft.WindowsStore* | Add-AppxPackage

First command removes the app, second reinstalls it. Let it finish—takes about 30 seconds. Then check Start Menu for the Store.

If that throws an error (sometimes it does on locked-down systems), use the Microsoft Store troubleshooter instead: Settings > System > Troubleshoot > Other troubleshooters > Microsoft Store Apps > Run. Not as thorough but gets the job done without PowerShell.

Quick-Reference Summary

CauseFixTime
Corrupt Store cacheRun wsreset.exe or Reset app in Settings2 minutes
Account sign-in issueSign out and back in, clear Credential Manager5 minutes
Damaged Store appReinstall via PowerShell or run troubleshooter5 minutes

Was this solution helpful?