Fixed MeshCore.js for 32bit Windows.

This commit is contained in:
Ylian Saint-Hilaire 2020-01-22 17:15:59 -08:00
parent 8275ddd0c9
commit 1fafbc6cf2
2 changed files with 11 additions and 7 deletions

View File

@ -42,14 +42,18 @@ function createMeshCore(agent) {
if (process.platform == 'win32' && require('user-sessions').isRoot())
{
// Check the Agent Uninstall MetaData for correctness, as the installer may have written an incorrect value
try {
var writtenSize = 0, actualSize = Math.floor(require('fs').statSync(process.execPath).size / 1024);
try { writtenSize = require('win-registry').QueryKey(require('win-registry').HKEY.LocalMachine, 'Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MeshCentralAgent', 'EstimatedSize'); } catch (x) { }
if (writtenSize != actualSize) { try { require('win-registry').WriteKey(require('win-registry').HKEY.LocalMachine, 'Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MeshCentralAgent', 'EstimatedSize', actualSize); } catch (x2) { } }
} catch (ex) { }
// Check to see if we are the Installed Mesh Agent Service, if we are, make sure we can run in Safe Mode
try {
var meshCheck = false;
try { meshCheck = require('service-manager').manager.getService('Mesh Agent').isMe(); } catch (mce) { }
if (meshCheck && require('win-bcd').isSafeModeService && !require('win-bcd').isSafeModeService('Mesh Agent')) { require('win-bcd').enableSafeModeService('Mesh Agent'); }
} catch (ex) { }
}
if (process.platform == 'darwin' && !process.versions) {

View File

@ -1,6 +1,6 @@
{
"name": "meshcentral",
"version": "0.4.7-m",
"version": "0.4.7-o",
"keywords": [
"Remote Management",
"Intel AMT",