docs - adding file version info https://github.com/Ylianst/MeshCentral/issues/4512
silversword411 committed
Sep 6, 2022 at 16:30 UTC
428d9c649a468e19838db5081a559a66c2b2b02e
1 file changed
+19
-1
docs/docs/meshcentral/codesigning.md
+19
-1
@@ -80,4 +80,22 @@ If you want to self-sign the mesh agent so you can whitelist the software in you
80
</div>
81
82
!!!note
83
- If you generate your private key on windows with use `BEGIN PRIVATE KEY` and openssl needs `BEGIN RSA PRIVATE KEY` you can convert your private key to rsa private key using `openssl rsa -in server.key -out server_new.key`
\ No newline at end of file
83
+ If you generate your private key on windows with use `BEGIN PRIVATE KEY` and openssl needs `BEGIN RSA PRIVATE KEY` you can convert your private key to rsa private key using `openssl rsa -in server.key -out server_new.key`
84
+
85
+## Setting Agent File info
86
+
87
+Now that MeshCentral customizes and signs the agent, you can set that value to anything you like.
88
+
89
+```json
90
+"domains": {
91
+ "agentFileInfo": {
92
+ "filedescription": "sample_filedescription",
93
+ "fileversion": "0.1.2.3",
94
+ "internalname": "sample_internalname",
95
+ "legalcopyright": "sample_legalcopyright",
96
+ "originalfilename": "sample_originalfilename",
97
+ "productname": "sample_productname",
98
+ "productversion": "v0.1.2.3"
99
+ }
100
+}
101
+```