Skip to content

Commit 82f2868

Browse files
authored
Merge pull request #5823 from computezrmle/computezrmle-vrde-property
Set virtualbox vrde-property
2 parents da545cd + 18fe538 commit 82f2868

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

samples/vboxwrapper/vbox_vboxmanage.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -800,6 +800,9 @@ int VBOX_VM::create_vm() {
800800
command += "--vrdeauthlibrary default ";
801801
command += "--vrdeauthtype null ";
802802
command += "--vrdeport " + string(buf) + " ";
803+
if (is_virtualbox_version_newer(7, 0, 99)) {
804+
command += "--vrde-property \"Security/Method=RDP\" ";
805+
}
803806

804807
retval = vbm_popen(command, output, "remote desktop");
805808
if (retval) return retval;

0 commit comments

Comments
 (0)