We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents da545cd + 18fe538 commit 82f2868Copy full SHA for 82f2868
samples/vboxwrapper/vbox_vboxmanage.cpp
@@ -800,6 +800,9 @@ int VBOX_VM::create_vm() {
800
command += "--vrdeauthlibrary default ";
801
command += "--vrdeauthtype null ";
802
command += "--vrdeport " + string(buf) + " ";
803
+ if (is_virtualbox_version_newer(7, 0, 99)) {
804
+ command += "--vrde-property \"Security/Method=RDP\" ";
805
+ }
806
807
retval = vbm_popen(command, output, "remote desktop");
808
if (retval) return retval;
0 commit comments