Electron builder Application name in programs list without version on windows
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
node.js windows electron nsis electron-builder
add a comment |
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
node.js windows electron nsis electron-builder
add a comment |
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
node.js windows electron nsis electron-builder
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
node.js windows electron nsis electron-builder
node.js windows electron nsis electron-builder
edited Nov 14 '18 at 9:07
Ali Altaf
asked Nov 14 '18 at 8:35
Ali AltafAli Altaf
53
53
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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"
},
...
}
add a comment |
You just have to put your version in package.json
For example:
{
"name": "MyApp",
"version": "1.0.1",
"build": {
...
}
}
yeah I have that and everything else is fine, but on windows when I go to application list in windows settings page after installing the application, it shows the application name and version appended together which I dont want.
– Ali Altaf
Nov 14 '18 at 8:53
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53295950%2felectron-builder-application-name-in-programs-list-without-version-on-windows%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
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"
},
...
}
add a comment |
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"
},
...
}
add a comment |
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"
},
...
}
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"
},
...
}
answered Nov 14 '18 at 9:08
GuillaumeGuillaume
3,54011419
3,54011419
add a comment |
add a comment |
You just have to put your version in package.json
For example:
{
"name": "MyApp",
"version": "1.0.1",
"build": {
...
}
}
yeah I have that and everything else is fine, but on windows when I go to application list in windows settings page after installing the application, it shows the application name and version appended together which I dont want.
– Ali Altaf
Nov 14 '18 at 8:53
add a comment |
You just have to put your version in package.json
For example:
{
"name": "MyApp",
"version": "1.0.1",
"build": {
...
}
}
yeah I have that and everything else is fine, but on windows when I go to application list in windows settings page after installing the application, it shows the application name and version appended together which I dont want.
– Ali Altaf
Nov 14 '18 at 8:53
add a comment |
You just have to put your version in package.json
For example:
{
"name": "MyApp",
"version": "1.0.1",
"build": {
...
}
}
You just have to put your version in package.json
For example:
{
"name": "MyApp",
"version": "1.0.1",
"build": {
...
}
}
answered Nov 14 '18 at 8:42
Hai PhamHai Pham
1,215212
1,215212
yeah I have that and everything else is fine, but on windows when I go to application list in windows settings page after installing the application, it shows the application name and version appended together which I dont want.
– Ali Altaf
Nov 14 '18 at 8:53
add a comment |
yeah I have that and everything else is fine, but on windows when I go to application list in windows settings page after installing the application, it shows the application name and version appended together which I dont want.
– Ali Altaf
Nov 14 '18 at 8:53
yeah I have that and everything else is fine, but on windows when I go to application list in windows settings page after installing the application, it shows the application name and version appended together which I dont want.
– Ali Altaf
Nov 14 '18 at 8:53
yeah I have that and everything else is fine, but on windows when I go to application list in windows settings page after installing the application, it shows the application name and version appended together which I dont want.
– Ali Altaf
Nov 14 '18 at 8:53
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53295950%2felectron-builder-application-name-in-programs-list-without-version-on-windows%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown