I have bought Certificate for my Excel VSTO Project which is built with VisualStudio. Also seller gave me tool to sign .dll, .exe and other files with SHA256. To make my Add-In work on Excel I need to import root certificate. I found this thread:
https://nsis.sourceforge.io/Import_Root_Certificate
Question 1: I need to put whole Function to my .nsis project? or its enough only this code
Question 2: My update installer uses "RequestExecutionLevel user". Can user import root certificate without having administrator rights?Push C:\path\to\certificate.cer
Call AddCertificateToStore
Pop $0
${If} $0 != success
MessageBox MB_OK "import failed: $0"
${EndIf}
Question 3: I Don't understand how to download latest NSIS version-> 3.06.1, it opens virstotal web, and nothing to click for a download. Or from now we need to create account there for a download? Or I'm just missing something obvious? 😁