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 c2c1363f..6177068c 100644
--- a/views/default.handlebars
+++ b/views/default.handlebars
@@ -302,7 +302,7 @@
-
+
@@ -1044,6 +1044,9 @@
// Setup the user interface in the right mode
userInterfaceSelectMenu();
+
+ // If SSPI or LDAP authentication not used, allow batch account creation.
+ QV('p4UserBatchCreate', (features & 0x00080000) == 0);
}
// Toggle the web page to full screen
diff --git a/webserver.js b/webserver.js
index e7e73754..b98004cd 100644
--- a/webserver.js
+++ b/webserver.js
@@ -2633,7 +2633,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
}
// Setup middleware
- obj.app.engine('handlebars', obj.exphbs({})); // defaultLayout: 'main'
+ obj.app.engine('handlebars', obj.exphbs({ defaultLayout: null })); // defaultLayout: 'main'
obj.app.set('view engine', 'handlebars');
if (obj.args.tlsoffload) { obj.app.set('trust proxy', obj.args.tlsoffload); } // Reverse proxy should add the "X-Forwarded-*" headers
obj.app.use(obj.bodyParser.urlencoded({ extended: false }));