Intel® AMT Redirection port or KVM feature is disabled, click here to enable it.
Remote computer is not powered on, click here to issue a power command.
Disconnected
Files -
Disconnected
✓
✗
Intel® AMT -
Events -
Show
General -
General -
Events -
Show
My Server Stats
Log-X
✖
File Selection
Upload File
Agent Remote Desktop
Quality
Scaling
Frame rate
Intel® AMT Hardware KVM
Image Encoding
Other Settings
\ No newline at end of file
diff --git a/views/default.handlebars b/views/default.handlebars
index 9f32de2e..85de15a0 100644
--- a/views/default.handlebars
+++ b/views/default.handlebars
@@ -6270,7 +6270,9 @@
function p20showAddMeshUserDialog() {
if (xxdialogMode) return;
- var x = "Allow a user to manage this device group and devices in this group
";
+ var x = "Allow a user to manage this device group and devices in this group.";
+ if (features & 0x00080000) { x += " Users need to login to this server once before they can be added to a device group." }
+ x += "
";
x += addHtmlValue('User Name', '');
x += '
';
x += 'Full Administrator ';
@@ -7379,7 +7381,9 @@
if (node != null) { icon = node.icon; t = '' + node.name + ': ' }
}
- r += '
Connect to your home or office devices from anywhere in the world using MeshCentral, the real time, open source remote monitoring and management web site. You will need to download and install a management agent on your computers. Once installed, computers will show up in the "My Devices" section of this web site and you will be able to monitor them and take control of them.
X
\ No newline at end of file
+ {{{title}}} - Login
{{{title}}}
{{{title2}}}
♦
Welcome
Connect to your home or office devices from anywhere in the world using MeshCentral, the real time, open source remote monitoring and management web site. You will need to download and install a management agent on your computers. Once installed, computers will show up in the "My Devices" section of this web site and you will be able to monitor them and take control of them.
X
\ No newline at end of file
diff --git a/views/messenger-min.handlebars b/views/messenger-min.handlebars
index afed2cda..bf17d5af 100644
--- a/views/messenger-min.handlebars
+++ b/views/messenger-min.handlebars
@@ -1 +1 @@
- MeshMessenger
MeshMessenger
Remote
Local
\ No newline at end of file
+ MeshMessenger
MeshMessenger
Remote
Local
\ No newline at end of file
diff --git a/webserver.js b/webserver.js
index c4af5581..1ea4d4ed 100644
--- a/webserver.js
+++ b/webserver.js
@@ -1336,6 +1336,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
if ((domain.passwordrequirements != null) && (domain.passwordrequirements.hint === true)) { features += 0x00010000; } // Enable password hints
if ((parent.config.settings.no2factorauth !== true) && (obj.f2l != null)) { features += 0x00020000; } // Enable WebAuthn/FIDO2 support
if ((obj.args.nousers != true) && (domain.passwordrequirements != null) && (domain.passwordrequirements.force2factor === true)) { features += 0x00040000; } // Force 2-factor auth
+ if ((domain.auth == 'sspi') || (domain.auth == 'ldap')) { features += 0x00080000; } // LDAP or SSPI in use, warn that users must login first before adding a user to a group.
// Create a authentication cookie
const authCookie = obj.parent.encodeCookie({ userid: user._id, domainid: domain.id }, obj.parent.loginCookieEncryptionKey);