aboutsummaryrefslogtreecommitdiffstats
path: root/src/c_exec.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/c_exec.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/c_exec.go b/src/c_exec.go
index 6829d94..5afca7a 100644
--- a/src/c_exec.go
+++ b/src/c_exec.go
@@ -146,6 +146,12 @@ func c_format_rdp(host *HostNode, pass string) ([]string, []string) {
if host.Dynamic == true {
cmd_fmt = append(cmd_fmt, "/dynamic-resolution")
}
+ if host.FullScr == true {
+ cmd_fmt = append(cmd_fmt, "/f")
+ }
+ if host.MultiMon == true {
+ cmd_fmt = append(cmd_fmt, "/multimon:force")
+ }
if host.Drive != nil {
for share, path := range host.Drive {
cmd_fmt = append(cmd_fmt, "/drive:" + share + "," + path)