Share via

RDP Connection issue?

Sohil Ahmed 1 Reputation point
2026-04-06T04:16:40.24+00:00

I regularly connect to a Windows Server at my office using Remote Desktop (RDP). On my personal laptop running Windows 11, I use a multi-monitor setup with two external displays.

I would like more flexible control over how monitors are used during an RDP session. Specifically, I want to dedicate only my two external monitors to the remote session, while keeping my laptop’s built-in screen available for local tasks.

Currently, multi-monitor RDP either uses all monitors, or use only one. An option to easily select specific monitors for the remote session would greatly improve productivity and usability for users with multi-display setups.

Windows for business | Windows Client for IT Pros | User experience | Remote desktop clients
0 comments No comments

3 answers

Sort by: Most helpful
  1. VPHAN 31,830 Reputation points Independent Advisor
    2026-04-08T14:25:23.32+00:00

    Hi Sohil Ahmed,

    How is your issue going? Has it been resolved yet? If it has, please consider accepting the answer as it helps others sharing the same problem benefit too. Thank you :)

    VP

    Was this answer helpful?

    0 comments No comments

  2. VPHAN 31,830 Reputation points Independent Advisor
    2026-04-06T05:39:45.8166667+00:00

    Hi Sohil Ahmed,

    To achieve this specific monitor configuration, you can bypass the standard Remote Desktop graphical interface limitations by editing the connection file directly. First, open the Command Prompt on your local Windows 11 laptop and execute the command mstsc.exe /l. This will output a list of all currently connected displays along with their numerical system IDs. Identify and make a note of the specific integer values assigned to your two external monitors.

    Next, open the standard Remote Desktop Connection application, input your target Windows Server details, and use the Save As option to generate an .rdp configuration file on your desktop. Right-click this newly created file and open it using Notepad to manually adjust the connection parameters. You will need to verify or add the parameter use multimon:i:1 to ensure the remote session is permitted to span across multiple screens.

    To restrict the session to your chosen displays, append a new line to the file reading selectedmonitors:s:X,Y, replacing the placeholders with the numerical IDs you retrieved from the command prompt. Ensure the first number you define is the monitor you want to act as the primary display for the remote session. Save the document and close Notepad. Double-clicking this customized file will launch your remote session strictly on the designated external screens while keeping your built-in laptop display completely isolated for local applications.

    Hope this answer brought you some useful information. If it did, please hit “accept answer”. Should you have any questions, feel free to leave a comment.

    VP

    Was this answer helpful?

    0 comments No comments

  3. Q&A Assist
    2026-04-06T04:16:51.9+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    Selecting only the two external monitors for an RDP session while leaving the laptop’s internal display for local use is supported via RDP properties; it is not limited to “all monitors or just one.”

    Use the selectedmonitors RDP property together with use multimon:

    1. On the Windows 11 laptop, list monitor IDs:
      • Open Command Prompt.
      • Run:
             mstsc.exe /l
        
      • Note the IDs of the two external monitors that should be used for the remote session.
    2. Edit or create an .rdp file for the server connection:
      • Save the RDP connection from Remote Desktop Connection (mstsc) to a file.
      • Open the .rdp file in a text editor.
      • Add or edit these lines (replace X,Y with the external monitor IDs from step 1):
             use multimon:i:1
             selectedmonitors:s:X,Y
        
      • Save the file.
    3. Connect using that .rdp file:
      • Double-click the edited .rdp file to start the session.
      • The remote desktop will span only the specified external monitors.
      • The laptop’s built‑in display remains available for local apps.

    Notes:

    • use multimon:i:1 must be enabled for selectedmonitors to work.
    • The selected displays must be contiguous, and the first ID in selectedmonitors becomes the primary display in the remote session.

    If using Windows App or the newer Remote Desktop app, the same RDP properties apply, as they support multiple monitor configurations, custom and dynamic display resolutions, and scaling.


    References:

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.