question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

How to set exe metadata

See original GitHub issue

Has some tool can set nw app metadata,I used nw-builder to package app. if i use electron,i can use electron-packager set win32metadata,nwjs can do? qq 20170424173214

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:12 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
VasiliyIsaichkincommented, Aug 19, 2017

At first look, there are no problems. Tested with nwjs 0.24.3x64 + windows 10x64

Used rcedit binary image image

packages.json:

{
	"main"       : "index.html",
	"name"       : "5870test",
	"description": "5870 Test",
	"version"    : "0.1.0",
	"window"     : {
		"width" : 800,
		"height": 500
	},
	"webkit"     : {
		"plugin": true
	}
}

index.html:

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>5870 Test</title>
</head>
<body>
<h1>5870 test case is ok</h1>
<p>
	nw.js ver: <script>document.write(nw.process.versions['nw']);</script>
</p>
</body>
</html>
0reactions
mscreeniecommented, Aug 20, 2017

Solved: I installed 7zip cmdlet in Windows and no longer using Windows native compress archive.

Compress-7Zip -CompressionLevel Normal -Format Zip -Path "$nwjsWorkingApp" -ArchiveFileName "$nwjsTemp\package.nw"

Read more comments on GitHub >

github_iconTop Results From Across the Web

How can I modify executable metadata through the command ...
Specifically, I need to change the "File description", "Product name", and "Copyright" fields. If it helps, the file is an executable of a...
Read more >
Possible to change the exe file's metadata? (version information)
When we right-click the distributed exe file and choose 'Properties', then under the 'Details' tab... the Product Name, Product Description, Product Version, ...
Read more >
How to change an executable's properties? (Windows)
@Keand64: If you want to change it by hand, you can use File -> Open in Visual Studio to open the exe file...
Read more >
Edit EXE Metadata Dialog - Advanced Installer
This dialog allows you to edit EXE metadata fields. ... After selecting an item in the list either double-click it, access its “Edit...”...
Read more >
executable-metadata - npm
Start using executable-metadata in your project by running `npm i executable-metadata`. ... Install. npm i executable-metadata ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found