From 428d9c649a468e19838db5081a559a66c2b2b02e Mon Sep 17 00:00:00 2001 From: silversword411 Date: Tue, 6 Sep 2022 16:30:56 -0400 Subject: [PATCH] docs - adding file version info https://github.com/Ylianst/MeshCentral/issues/4512 --- docs/docs/meshcentral/codesigning.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/docs/meshcentral/codesigning.md b/docs/docs/meshcentral/codesigning.md index aeea42ef..8fd46f7b 100644 --- a/docs/docs/meshcentral/codesigning.md +++ b/docs/docs/meshcentral/codesigning.md @@ -80,4 +80,22 @@ If you want to self-sign the mesh agent so you can whitelist the software in you !!!note - 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 + 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` + +## Setting Agent File info + +Now that MeshCentral customizes and signs the agent, you can set that value to anything you like. + +```json +"domains": { + "agentFileInfo": { + "filedescription": "sample_filedescription", + "fileversion": "0.1.2.3", + "internalname": "sample_internalname", + "legalcopyright": "sample_legalcopyright", + "originalfilename": "sample_originalfilename", + "productname": "sample_productname", + "productversion": "v0.1.2.3" + } +} +```