@biklitime/biklimaster 1.1.10 → 1.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/bikliwrapper.js +7 -1
- package/package.json +1 -1
package/lib/bikliwrapper.js
CHANGED
|
@@ -58,8 +58,14 @@ const logonPolicyKey = 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Poli
|
|
|
58
58
|
|
|
59
59
|
const requestedSettings = [
|
|
60
60
|
{ key: terminalServerKey, name: 'fDenyTSConnections', value: 0, label: 'Remote Desktop enabled' },
|
|
61
|
-
{ key: terminalServerKey, name: 'fSingleSessionPerUser', value:
|
|
61
|
+
{ key: terminalServerKey, name: 'fSingleSessionPerUser', value: 0, label: 'Multiple sessions allowed' },
|
|
62
|
+
{ key: terminalServerKey, name: 'TSAppCompat', value: 1, label: 'Terminal Server application compatibility' },
|
|
62
63
|
{ key: terminalServerKey, name: 'HonorLegacySettings', value: 0, label: 'Custom programs disabled' },
|
|
64
|
+
{ key: shadowPolicyKey, name: 'fSingleSessionPerUser', value: 0, label: 'Policy multiple sessions allowed' },
|
|
65
|
+
{ key: shadowPolicyKey, name: 'fDenyTSConnections', value: 0, label: 'Policy Remote Desktop enabled' },
|
|
66
|
+
{ key: shadowPolicyKey, name: 'MaxInstanceCount', value: 999999, label: 'Policy unlimited connections' },
|
|
67
|
+
{ key: rdpTcpKey, name: 'fSingleSessionPerUser', value: 0, label: 'RDP-Tcp multiple sessions allowed' },
|
|
68
|
+
{ key: rdpTcpKey, name: 'MaxInstanceCount', value: 999999, label: 'RDP-Tcp unlimited connections' },
|
|
63
69
|
{ key: rdpTcpKey, name: 'PortNumber', value: 3389, label: 'RDP port 3389' },
|
|
64
70
|
{ key: rdpTcpKey, name: 'SecurityLayer', value: 1, label: 'Default RDP Authentication' },
|
|
65
71
|
{ key: rdpTcpKey, name: 'UserAuthentication', value: 0, label: 'Network Level Authentication disabled' },
|