mirror of https://github.com/jumpserver/jumpserver
Merge pull request #11123 from jumpserver/pr@dev@fix_rdpfile
feat: rdp file 支持设置多屏显示pull/11128/head
commit
39d651dd9b
|
@ -64,6 +64,10 @@ class RDPFileClientProtocolURLMixin:
|
|||
'use redirection server name:i': '0',
|
||||
'smart sizing:i': '1',
|
||||
}
|
||||
# 设置多屏显示
|
||||
multi_mon = is_true(self.request.query_params.get('multi_mon'))
|
||||
if multi_mon:
|
||||
rdp_options['use multimon:i'] = '1'
|
||||
|
||||
# 设置磁盘挂载
|
||||
drives_redirect = is_true(self.request.query_params.get('drives_redirect'))
|
||||
|
|
Loading…
Reference in New Issue