1
0
mirror of https://github.com/dkmstr/openuds.git synced 2024-12-23 17:34:17 +03:00

Set enablecredsspsupport to 0 to allow windows10->windows10 connections

to work under some circustances...
This commit is contained in:
Adolfo Gómez García 2017-03-17 13:29:36 +01:00
parent 5f1676e56b
commit e90e56c426

View File

@ -40,7 +40,7 @@ from uds.core.util import OsDetector
import six
import os
__updated__ = '2017-02-13'
__updated__ = '2017-03-17'
class RDPFile(object):
@ -242,7 +242,7 @@ class RDPFile(object):
res += 'disable themes:i:' + disableWallpaper + '\n'
res += 'bitmapcachepersistenable:i:1' + '\n'
res += 'authentication level:i:0' + '\n'
res += 'enablecredsspsupport:i:1' + '\n'
res += 'enablecredsspsupport:i:0' + '\n'
res += 'prompt for credentials:i:0' + '\n'
res += 'negotiate security layer:i:1\n'
res += 'videoplaybackmode:i:1\n'