Andy Joiner
Andy Joiner

Reputation: 6541

Windows Store app test certificate expired

Suddenly, when running a build of my Windows Store app I got the error.

error APPX0108: The certificate specified has expired. For more information about renewing certificates, see http://go.microsoft.com/fwlink/?LinkID=241478

There is a link to the Renewing a certificate page but it's just a circular reference.

Upvotes: 13

Views: 5217

Answers (2)

Luca Ziegler
Luca Ziegler

Reputation: 4134

You have to create a new certificate:

  • Open the Package.appxmanifest
  • Select the Packaging tab
  • Click Choose Certificate
  • Click Create
    • Enter your existing publisher name
    • A password
  • Agree to replace the certificate

Then you can update your microsoft store app

Upvotes: 0

Andy Joiner
Andy Joiner

Reputation: 6541

The information was there - just buried at the bottom of the page:

  • Open the .appxmanifest file in Visual Studio (app manifest designer view)
  • On the Packaging tab in the
    • Click Choose Certificate
    • In the dropdown, select Create test certificate...
      • This blog post recommends you do not set a password
    • Agree to replace the certificate

Upvotes: 26

Related Questions