2
votes

In Nodejs Package.json i have the below commands for 32bit Windows app: "package-win": "electron-packager . Test -App --overwrite --asar=true --platform=win32 --arch=ia32 --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"Test App\"",

but i want the same for 64bit architecture.

1

1 Answers

7
votes

Just replace --arch=ia32 to --arch=x64.

"platform" stays "win32", it's all right.