From b14f6b8467b1113652db73a00268f75bef473764 Mon Sep 17 00:00:00 2001 From: Tejaswi Kandula Date: Mon, 26 Aug 2024 08:55:12 -0700 Subject: [PATCH] disable multi mon support --- src/bastion/azext_bastion/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bastion/azext_bastion/custom.py b/src/bastion/azext_bastion/custom.py index 12c0327ec5b..33243b4eea5 100644 --- a/src/bastion/azext_bastion/custom.py +++ b/src/bastion/azext_bastion/custom.py @@ -237,7 +237,7 @@ def _generate_rdp_file(port): rdp_file_content = ( f"full address:s:localhost:{port}\n" f"alternate full address:s:localhost:{port}\n" - "use multimon:i:1\n" + "use multimon:i:0\n" ) rdpfilepath = os.path.join(tempfile.gettempdir(), f'conn_{uuid.uuid4().hex}.rdp')