Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tksh164/rdclauncher
RDC launcher allows to use the Remote Desktop client as like the Remote Desktop Connection. You can leverage the benefit of the Remote Desktop client.
https://github.com/tksh164/rdclauncher
csharp rdc-launcher rdp rdp-client rdp-connection remote-desktop windows wpf wvd
Last synced: about 2 months ago
JSON representation
RDC launcher allows to use the Remote Desktop client as like the Remote Desktop Connection. You can leverage the benefit of the Remote Desktop client.
- Host: GitHub
- URL: https://github.com/tksh164/rdclauncher
- Owner: tksh164
- License: mit
- Created: 2021-03-05T15:07:01.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-28T17:41:29.000Z (about 1 year ago)
- Last Synced: 2023-10-28T18:31:55.707Z (about 1 year ago)
- Topics: csharp, rdc-launcher, rdp, rdp-client, rdp-connection, remote-desktop, windows, wpf, wvd
- Language: C#
- Homepage:
- Size: 824 KB
- Stars: 12
- Watchers: 2
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
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.
## 📋 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](https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/clients/windowsdesktop). 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](https://github.com/tksh164/rdclauncher/releases/latest).
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](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/unblock-file) cmdlet.
```powershell
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](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.archive/expand-archive) cmdlet.```powershell
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. |```xml
3389
False
True
False
```- The history file located at `%LocalAppData%\rdclauncher\rdclauncher.exe_Url_\\user.config`. Delete this file if you want to delete the history.
## 🔨 Build from source
You can build the project using [Visual Studio 2022](https://visualstudio.microsoft.com/).
## ⚖ License
Copyright (c) 2021-present Takeshi Katano. All rights reserved. This software is released under the [MIT License](https://github.com/tksh164/rdclauncher/blob/master/LICENSE).
Disclaimer: The codes stored herein are my own personal codes and do not related my employer's any way.