0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

MacからWinへのリモートデスクトップ

Posted at

RDPの設定

Win->Winへのリモートデスクトップはほとんど困ることがないけど、Mac->Winだと主にキーボード周りで変更しないとつらい。

  1. Karabiner-Elementsで「ろ」を「¥」に変えておく

Windows用のキーボードではこの位置に「¥」があるけど、MacのキーボードはShiftを押しても押さなくても「_」になるので変えておく

を参考に、適当なルールをインポートしておいて、そのjsonファイルを変更して次の記述を追加しておく。

    {
      "description": "「ろ」を「¥」に置き換える",
      "manipulators": [
        {
          "type": "basic",
          "from": {
            "key_code": "international1"  
          },
          "to": [
            {
              "key_code": "international3"
            }
          ]
        }
      ]
    },

2.RDP先のWinで「noyen.exe」を起動しておく

Macの「¥」とWinの「¥」はキーコードが違って、このままだとWinでバックスラッシュが入力できない。そこで、次のソフトを起動しておく。

3.puttyなどのソフトは文字がぼやけて見えるので、その対策

Win側で設定を開いて、「ぼやけた表示のアプリを修正します」と検索して、下記のように「鮮明に表示」のオプションを「オフ」にする!

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?