Skip to content

Latest commit

 

History

History
94 lines (63 loc) · 4.26 KB

README.md

File metadata and controls

94 lines (63 loc) · 4.26 KB

RDC Launcher app icon.

Remote Desktop Client Launcher

RDC Launcher allows to use the MSRDC as like the MSTSC.



Important

RDC Launcher doesn't work with the latest MSRDC.

Try Alter✨ if you are looking for a similar remote desktop client. Alter has a similar feel and usability to the RDC Launcher and it doesn't depend on MSRDC.



🗨 About

RDC Launcher allows to use the Remote Desktop client (msrdc) as like the Remote Desktop Connection (mstsc). You can leverage the benefit of the Remote Desktop client. e.g. Advanced display settings, window title naming.

Screenshot of the app.

Screenshot of the advanced display settings in the Remote Desktop client.

📋 Prerequisites

  • Windows 11 or Windows 10
  • .NET Framework 4.7.2 or later
    • Windows 11 and Windows 10 have the .NET Framework 4.7.2 or later by default.
  • Remote Desktop client (MSRDC)
    • You can download the Remote Desktop client installer from the Microsoft's web page. Download it from the Windows 64-bit link if you use 64-bit Windows, also download it from the Windows 32-bit link if you use 32-bit Windows.

📥 Install

  1. Download an app's zip file.

  2. After the download the zip file, you can unblock the zip file by check Unblock from the file's property or using Unblock-File cmdlet.

    Unblock-File rdclauncher-x.y.z.zip
  3. Extract to files from the zip file. You can extract files from the Extract All... context menu in the File Explorer or using Expand-Archive cmdlet.

    Expand-Archive rdclauncher-x.y.z.zip
  4. Locate to the extracted files to anywhere you like.

If you don't need this app anymore, you can uninstall it by delete the located folder.

💡 Tips

  • RDC Launcher launch at the center of screen of the mouse cursor located on.

  • You can change the default settings by edit the rdclauncher.exe.config that placed in the same place as the application's executable file (rdclauncher.exe).

    Setting name Value in the default settings file Description
    PortNumber 3389 The default port number for RDP connections when not specified the port number.
    DefaultFitSessionToWindowEnabled False If set True, the Fit session to window checkbox is checked by default.
    DefaultUpdateResolutionOnResizeEnabled True If set True, the Update resolution on resize checkbox is checked by default.
    DefaultFullScreenEnabled False If set True, the Full screen checkbox is checked by default.
    <setting name="PortNumber" serializeAs="String">
        <value>3389</value>
    </setting>
    
    <setting name="DefaultFitSessionToWindowEnabled" serializeAs="String">
        <value>False</value>
    </setting>
    
    <setting name="DefaultUpdateResolutionOnResizeEnabled" serializeAs="String">
        <value>True</value>
    </setting>
    
    <setting name="DefaultFullScreenEnabled" serializeAs="String">
        <value>False</value>
    </setting>
  • The history file located at %LocalAppData%\rdclauncher\rdclauncher.exe_Url_<random-string>\<version>\user.config. Delete this file if you want to delete the history.

🔨 Build from source

You can build the project using Visual Studio 2022.

⚖ License

Copyright (c) 2021-present Takeshi Katano. All rights reserved. This software is released under the MIT License.

Disclaimer: The codes stored herein are my own personal codes and do not related my employer's any way.