web-dev-qa-db-ja.com

Windows 10リモートデスクトップセッションがランダムに予期せず終了する

LAN経由でデスクトップを自分のWindow 10 Surfaceラップトップにリモートで接続し(ラップトップからOutlookを使用するため)、デスクトップPCからリモートデスクトップ経由でSurfaceラップトップで送信/メールを作成できるようにします。これは2年以上前から正常に機能しています。最近、Surface 10はリモートデスクトップセッションを1日あたり2〜3回ランダムに終了し始めました。最悪の部分は、実行中のすべてのアプリケーションも終了するため、最終的にOutlookセッションにリモートデスクトップを戻すことができなくなった場合です。下書きの電子メールをたくさん失ったので、これはイライラさせられます。 (1分ごとに保存するようにOutlookを設定しましたが、これを修正したいのですが)。

RDP経由ですぐに再度ログインしようとすると、次のようになることがあります。

The number of connections to this computer is limited and all connections are in use right now. Try connecting later or contact your system administrator.

しばらく待ってから再試行すると、再度ログインできますが、すべてのアプリケーションが終了しました。おそらく、ユーザーセッションがログアウトして再度ログインしているのでしょう–わかりません。

システムイベントログセキュリティでは失敗した試行はなく、強制的にログオフされます。 100を超える監査成功セキュリティイベントに同時に気づきました。

Credential Manager credentials were read.
Subject:
    Security ID:        DOMAIN\My Name
    Account Name:       My Name
    Account Domain:     DOMAIN
    Logon ID:           0x1A293A3D8
    Read Operation:     Enumerate Credentials
This event occurs when a user performs a read operation on stored credentials in Credential Manager.

その後、次のようになります。

An account was logged off.
Logon Type:         3

This event is generated when a logon session is destroyed. 
It may be positively correlated with a logon event using the Logon ID value. 
Logon IDs are only unique between reboots on the same computer.

今回のWindowsシステムイベントには、いくつかのエラーが表示されます。

The server {AAC1009F-AB33-48F9-9A21-7F5B88426A2E} did not register with DCOM within the required timeout.
The system is exiting connected standby 

Reason: Input Keyboard.
A timeout was reached (30000 milliseconds) while waiting for the Sync Host_1a14de225 service to connect.
A timeout was reached (30000 milliseconds) while waiting for the Windows Push 

Notifications User Service_1a14de225 service to connect.
The Clipboard User Service_1a14de225 service failed to start due to the following error: 
The service did not respond to the start or control request in a timely fashion.
A timeout was reached (30000 milliseconds) while waiting for the Clipboard User Service_1a14de225 service to connect.

The Connected Devices Platform User Service_1a14de225 service failed to start due to the following error: 
The service did not respond to the start or control request in a timely fashion.
A timeout was reached (30000 milliseconds) while waiting for the Connected Devices Platform User Service_1a14de225 service to connect.

The Clipboard User Service_1a14de225 service terminated unexpectedly. 
It has done this 1 time(s). 
The following corrective action will be taken in 3000 milliseconds: 
Restart the service.

The Sync Host_1a14de225 service terminated unexpectedly. 
It has done this 1 time(s).
The following corrective action will be taken in 10000 milliseconds: 
Restart the service.

The Windows Push Notifications User Service_1a14de225 service terminated unexpectedly.
It has done this 1 time(s).
The following corrective action will be taken in 10000 milliseconds:
Restart the service.
3
Mister Cook

次のレジストリ設定を検討してください。

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters]
"TcpMaxDataRetransmissions"=dword:00000010

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server]
"KeepAliveInterval"=dword:00000001
"KeepAliveEnable"=dword:00000001

一部の設定は記事で定義されています TCPキープアライブ について知っておきたいこと:

KeepAliveInterval
このパラメーターは、TCP=応答が受信されるまでのキープアライブ再送信の間隔を決定します。

TcpMaxDataRetransmissions
このパラメーターは、接続を中止する前に、個々のデータセグメント(接続要求セグメントではない)を再送信する回数を制御しますTCP

0
harrymc