📜  .rdg (1)

📅  最后修改于: 2023-12-03 15:29:07.928000             🧑  作者: Mango

RDG文件格式介绍

简介

RDG (Remote Desktop Gateway)是由Microsoft开发的一种用于远程桌面连接的协议。RDG文件是用于在Windows Server上配置远程桌面连接和授权的文件格式。RDG文件中存储了连接信息、授权证书、计算机名、网关服务器等重要的连接参数。

文件格式

RDG文件使用XML格式存储,以下是一个示例:

<?xml version="1.0" encoding="utf-8"?>
<RDCMan programVersion="2.7" schemaVersion="3">
  <file>
    <properties>
      <name>Remote Desktops</name>
    </properties>
    <credentialsProfiles />
    <group>
      <properties>
        <name>Server Group</name>
      </properties>
      <server>
        <properties>
          <name>Server 1</name>
          <displayName>Server 1</displayName>
          <connectionSettings>
            <protocol>RDP</protocol>
            <authenticationLevel>2</authenticationLevel>
            <gatewaySettings>
              <useGateway>true</useGateway>
              <gatewayHostname>gateway.example.com</gatewayHostname>
              <gatewayUseConnectionCredentials>false</gatewayUseConnectionCredentials>
              <gatewayProfileName></gatewayProfileName>
            </gatewaySettings>
          </connectionSettings>
          <logonCredentials inherit="FromParent" />
        </properties>
      </server>
    </group>
  </file>
</RDCMan>
RDG文件的作用

RDG文件可以用于配置Windows Server上的远程桌面连接。在RDG文件中,可以设置连接参数、授权证书、网关服务器等信息。使用RDG文件连接远程桌面时,只需要打开RDG文件,选择需要连接的计算机即可。

如何编辑RDG文件

可以使用Microsoft自带的远程桌面连接软件来编辑RDG文件。打开软件后,点击“文件”->“打开”,即可选择想要编辑的RDG文件。也可以使用文本编辑器(如Notepad++、Sublime Text等)来编辑RDG文件。

以上是RDG文件格式的简要介绍,详细内容可参考官方文档