Changes between Version 7 and Version 8 of Windows RDP Config Settings


Ignore:
Timestamp:
03/12/24 05:17:50 (13 months ago)
Author:
Paul Kulda
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Windows RDP Config Settings

    v7 v8  
    730730||   || /max, /w, /h, /pos ||
    731731|| Will be   overruled by RDP+. ||   ||
     732
     733== RDP Calculating Screen Location ==
     734
     735* Basically use '''winposstr:s:0,1,110,55,1680,1050''' to center on 1920 x 1080 Monitor for the most part
     736
     737{{{
     738
     739
     740Calculating the Values for winposstr
     741
     742The numbers that you will use depend on how many monitors you have, the screen resolutions of each, and which monitor you have selected to be your primary monitor.
     743
     744Left edge position determines the monitor
     745
     746The first of the last four numbers, which is the most important, indicates the position of the left edge of the window. If your primary monitor is in the center and you have monitors to the left and right, you will use a negative number for the monitors to the left, and a positive number for the monitors to the right.
     747
     748For example, if you have two monitors to the left that each have a resolution of 1680 x 1050, use -1680 to place the session window on the monitor to the immediate left, and double that (-3360) to place the window on the leftmost monitor.
     749
     750winposstr:s:0,1,-1680,0,0,1050
     751
     752winposstr:s:0,1,-3360,0,-1680,1050
     753
     754If your primary monitor has a resolution of 1200 x 1920, use 1200 to place the window on the monitor on the immediate right. This works because that pixel position is where the primary monitor leaves off (and the monitor on the right begins).
     755
     756winposstr:s:0,1,1200,0,2880,1050
     757
     758If you have two monitors on the right with a resolution of 1680 x 1050, and want to place the window on the rightmost monitor, simply add 1200 to 1680 to get 2880.
     759
     760winposstr:s:0,1,2880,0,4560,1050
     761
     762Top and Bottom Edges
     763The other numbers only really come into play when the window is restored (not maximized) and can be adjusted to taste.
     764
     765The second number (third from the end) indicates the topmost edge of the window, so you can leave this number at 0 unless you have special requirements. The fourth (last) number is the vertical resolution (=bottom) of the window. You can leave this at the maximum vertical resolution of the monitor, as in the examples above.
     766
     767winposstr:s:0,1,1200,0, 2880,1050
     768
     769Right Edge
     770The right edge of the window is expressed by the next to the last number. Unless you prefer otherwise, this can be set to the same size as the maximized window.
     771
     772╔══════════════════╦════════════════════════════╦════════════════════════════════════╗
     773║     Monitor      ║ Right Edge Calculation     ║          Winposstr Value           ║
     774╠══════════════════╬════════════════════════════╬════════════════════════════════════╣
     775║ Leftmost         ║ -3360 + 1680 = -1680       ║ winposstr:s:0,1,-3360,0,-1680,1050 ║
     776║ Immediate left   ║ -1680 + 1680 = 0           ║ winposstr:s:0,1,-1680,0,0,1050     ║
     777║ Immediate right  ║ 1200 + 1680 = 2880         ║ winposstr:s:0,1,1200,0,2880,1050   ║
     778║ Rightmost        ║ 1200 + 1680 + 1680 = 4560  ║ winposstr:s:0,1,2880,0,4560,1050   ║
     779╚══════════════════╩════════════════════════════╩════════════════════════════════
     780}}}