Im using electron builder and have set name and productName in package.json of my electron app, but when I make the installer using nsis and install the application on windows, In the applications list or programs list in windows settings it shows version in the name of the application which I dont want, so is there configuration of electron-builder or nsis that I can use to make that work ? You can see the issue here
According to the documentation you can use the uninstallDisplayName option to define a different name for the uninstall menu: 
"build": {
  "productName": "MyApp",
  "nsis": {
    "artifactName": "MyApp.setup.${version}.${ext}",
    "uninstallDisplayName": "MyApp"
  },
  ...
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With