Reputation: 3518
I've build an Electron App with electron-builder
tools for Windows plateform only, and the app work nice.
But, i've problem with specific usecase :
If i copy my .exe file on a USB key and i run this copy on other computer, i've this error :
Installer integrity check has failed
My app is not signed, do you think the problem can be this ?
If i download my .exe file with HTTP link, the install is ok. I've this message only if i copy the .exe on other support.
Thank you community !
Upvotes: 1
Views: 2003
Reputation: 101559
NSIS displays that message if the data in the .exe has changed.
Most likely you have a hardware problem, either with the USB key or the RAM on the problematic machine. It could also be a virus infection.
Try a different USB key or another machine.
You can ignore the CRC check by running "c:\path\to\mysetup.exe" /NCRC
but I don't really recommend that because it might create a broken install or even crash.
Upvotes: 3