Questions tagged [appx]

217 questions
325
votes
19 answers

Signtool error: No certificates were found that met all given criteria with a Windows Store App?

I'm trying to sign a Windows 8 appx package with a pfx file I have. I'm using a command like so: signtool.exe sign /fd sha256 /f "key.pfx" "app.appx" And from this, I get: SignTool Error: No certificates were found that met all the given…
Earlz
  • 57,517
  • 89
  • 275
  • 484
76
votes
5 answers

Installing .appx without trusted certificate?

I have a Windows 8 app that I would like to deploy to my Windows RT 2. I only have the .appx, and I would like to just install it for testing by bypassing the store. However, when I run the command: Add-AppxPackage I get the…
opposite of you
  • 1,105
  • 1
  • 9
  • 16
15
votes
0 answers

UWP authenticode signed appxbundle shows unknown publisher with smartscreen

I have a signed appxbundle generated by Visual Studio and signed with a Comodo authenticode sha256 certificate. The bundle shows a digital signature tab when opening the properties. Now when I download the file on another PC, the smartscreen filter…
WJM
  • 993
  • 1
  • 11
  • 28
14
votes
2 answers

UWP appx package Signtool "Error: SignerSign() failed." (-2147024885/0x8007000b)

EDIT Event log error was this: error 0x8007000B: The app manifest publisher name (CN=...) must match the subject name of the signing certificate (CN={19BE29DF-4812-4F2E-8FC1-A138B146946A}). The command below now seems to work. So either user…
14
votes
3 answers

How to calculate PublisherID from Publisher?

I'd like to know something about Windows Store and APPX package internals. The package.appxmanifest has an element that has a package name, publisher and version attributes, for example
13
votes
1 answer

Windows Phone 8.1 HTML Company Apps - Can't install company app

I'm having problems trying to deploy any kind of HTML application for Windows Phone 8.1 as a Company App. The application I have developed is using a Visual Studio Apache Cordova Apps project, but I've also tested a manually created .appx, a Blank…
Klors
  • 2,614
  • 1
  • 21
  • 39
12
votes
6 answers

How to create windows installer

Basically we are releasing our changes/fixes in the form of manual installer (Windows powershell script). It will install specified .dll and SQL script files at particular locations by reading config file values (We will configure .dll & Sql script…
Ramesh
  • 129
  • 1
  • 1
  • 6
11
votes
2 answers

'App installer failed to install package dependencies. Ask the developer for Microsoft.VCLibs.140.00

screenshot of the error I am getting this error:"App installer failed to install package dependencies.Ask the developer for Microsoft.VCLibs.140.00.Debug package" while side loading .appxbundle file via App installer in windows10 client machine,…
10
votes
3 answers

Nuget, portable library and WinRT appx: Payload contains two or more files with the same destination path

Create new Windows 8 application App1 Add ClassLibrary1 Windows 8 class library project to solution Add PortableClassLibrary1 portable class library targeting Windows 8 and Windows Phone 7.5 to a solution Reference HttpClient nuget package in…
kza
  • 1,481
  • 12
  • 29
8
votes
8 answers

Launch Metro style apps using powershell

I am trying to write a powershell script for windows 10 that will automatically launch a Metro-style app. The Start-Process cmdlet seems like it should work, but I cannot get it to launch anything unless I provide a path to the .exe For example, the…
Flopdong
  • 239
  • 1
  • 2
  • 12
8
votes
2 answers

SignTool Error: The specified algorithm cannot be used or is invalid

I am trying to use Visual Studio 2012 Express to sign my appx file for a windows store app, but get the following error: SignTool Error: The specified algorithm cannot be used or is invalid I am running the process through the STORE->Create App…
WildCrustacean
  • 5,716
  • 1
  • 29
  • 41
7
votes
0 answers

Modify package identity in appx manifest after build

Summary: Is it possible to modify app package identity after compilation using makeappx.exe? I have a windows store app (for LOB sideloading, not for the store), which I need to create multiple copies (variants/instances) of, because I need to be…
tholesen
  • 406
  • 3
  • 7
6
votes
1 answer

How to silent install an UWP appx?

I develop an UWP appx, It could be installed in a cmd.exe prompt: C:\test>myapp.appx but a windows GUI pop up during installtion. Is there any method to install it with a Silent parameter like as: C:\test>myapp.appx /silent (or /s) in order to…
Yong-Long Liu
  • 95
  • 2
  • 8
6
votes
1 answer

SignTool error when signing AppX file: "Error: SignerSign() failed." (-2147024693/0x800700cb)

I am creating an Appx package using makeappx.exe and then try to sign it using SignTool.exe. The error I get from SignTool is: "Error: SignerSign() failed." (-2147024693/0x800700cb) The certificate I am using is created by me following…
Dorel Pîslan
  • 96
  • 1
  • 4
5
votes
1 answer

How to merge dependency into .Appx to avoid -DependencyPath argument

I have a large win32 program consisting of a mixture of native and managed code. I would like to put it into a single .Appx file for simple installation on Windows 10. I don't want to put it in the Windows Store - I simply want to replace the old…
1
2 3
14 15