signtool

How to install SignTool.exe for VS 2017?

痞子三分冷 提交于 2020-02-01 01:37:16
问题 After upgrade to VS 2017 i got "Error An error occurred while signing: SignTool.exe not found." But only using MSbuild on the Visual Studio publish there's no problem. I already checked folder "C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin" and in fact there's no SignTool.exe present. But there was before installing VS2017, any ideas? I followed this issue but no luck How to install SignTool.exe for Windows 10 回答1: Signtool is included with the Windows 10 SDK Open Visual Studio

How do I use signtool in post build event for Visual Studio 2013 without hard coding path?

给你一囗甜甜゛ 提交于 2020-01-23 11:39:50
问题 I've created a post build event to do code signing of the application after a successful build with the following post build script. copy $(TargetPath) $(TargetDir)SignedApp.exe signtool sign /t http://timestamp.verisign.com/scripts/timestamp.dll /a $(TargetDir)SignedApp.exe I get the error 'signtool' is not recognized as an internal or external command. So it seems the path used for the build event doesn't point to the signtool utility. When I run the VS2013 x86 Native Tools Command Prompt I

Java program to verify digital signature signed by signtool

三世轮回 提交于 2020-01-15 08:06:10
问题 I have digitally signed a file(either .exe or .dll not a jar file) using SignTool. Signtool can also verify the digital signature. But my requirement is to check digital signature of file signed by signtool using java program. I searched on internet but didn't find any info. Could you please give me pointers regarding the same? Thanks for your suggestion. 回答1: Signing Code jarsigner -keystore c:/my.keystore -storepass ozziepassword e:/securityApplet.jar ozzie Verify Code: jarsigner -verify e:

Using EV Certificate With ClickOnce

孤者浪人 提交于 2020-01-13 09:43:47
问题 My company purchased an EV Certificate from Symantec to use for a software product we produce. Specifically it is called: Symantec Class 3 Extended Validation Code Signing CA – G2 . To develop and build this product we use Visual Studio 2013, and we use ClickOnce as the publish and installer mechanism. The problem we are having is that ClickOnce is unable to apply the EV Certificate using it’s built-in signing mechansim. ClickOnce can see the Certificate just fine, and allows us to select it

Using EV Certificate With ClickOnce

岁酱吖の 提交于 2020-01-13 09:43:46
问题 My company purchased an EV Certificate from Symantec to use for a software product we produce. Specifically it is called: Symantec Class 3 Extended Validation Code Signing CA – G2 . To develop and build this product we use Visual Studio 2013, and we use ClickOnce as the publish and installer mechanism. The problem we are having is that ClickOnce is unable to apply the EV Certificate using it’s built-in signing mechansim. ClickOnce can see the Certificate just fine, and allows us to select it

Using EV Certificate With ClickOnce

会有一股神秘感。 提交于 2020-01-13 09:43:08
问题 My company purchased an EV Certificate from Symantec to use for a software product we produce. Specifically it is called: Symantec Class 3 Extended Validation Code Signing CA – G2 . To develop and build this product we use Visual Studio 2013, and we use ClickOnce as the publish and installer mechanism. The problem we are having is that ClickOnce is unable to apply the EV Certificate using it’s built-in signing mechansim. ClickOnce can see the Certificate just fine, and allows us to select it

Why I get “The specified PFX password is not correct” when trying to sign application with signtool?

泄露秘密 提交于 2020-01-11 02:05:35
问题 I followed this link to sign my exe application. I installed SDK tool on Windows 7, run C:\Program Files\Microsoft SDKs\Windows\v6.1\Bin>makecert.exe -sv App-O.pvk -n "CN=MY DIGITAL KEY" App-O.cer Dialog opened to provide password: I wrote password : 'fess' new window opened: I entered: 'fess' #Succeeded files App-O.cer and App-O.pvk creaded. now I generate pfx: pvk2pfx.exe -pvk App-O.pvk -spc App-O.cer -pfx App-O.pfx Dialog opened to provide password: i pasted 'fess' file pfx created. Now i

Signing installer of my program generated by Inno Setup to make it of a trusted company? [duplicate]

99封情书 提交于 2020-01-10 04:44:25
问题 This question already has answers here : Is it useless to sign my Windows application with a self signed certificate? (2 answers) Closed 7 months ago . I have a installer file created with Inno Setup of an application that I developed. So when I go to install the program, it shows me a window telling me that my application is not trusted. How can I sign my installer file to avoid that window when a user installs my program, or to make my installer a trusted installer? I have a .pfx file that

Signing CAB file with signtool not working any more (The signer's certificate is not valid for signing)

冷暖自知 提交于 2020-01-05 08:08:46
问题 Few month ago a was able to successfully sign CAB file with test certificate I have created on my server. Here are the steps I have taken: makecert.exe -sv "Demo.pvk" -n "CN=Demo Company,E=demo@gmail.com" "Demo.cer" cert2spc.exe "Demo.cer" "Demo.spc" pvk2pfx.exe -pvk "Demo.pvk" -pi "pvk_password" -spc "Demo.spc" -pfx "Demo.pfx" -po "pfx_password" signtool.exe sign /f "Demo.pfx" /p "pfx_password" /v "D:\Setup.cab" All the steps are successfull except the last one with signtool that returns:

How to sign an MSI?

泄露秘密 提交于 2020-01-02 03:16:28
问题 My company wants to prevent the UAC popup that appears when customers install our product. We purchased a certificate from VeriSign (VeriSign Class 3 Code Signing 2010 CA) and I got a MyCompany.cer file. I installed the cert by double-clicking it and selecting the "Personal" store. It now appears in the Certificates snapin, along with several other certs. The snapin says its intended purpose is "Code Signing". I got the SHA1 hash by copying the thumbprint. I try to sign the msi with this