883670 - FIX: The Terminal Services service stops responding in
Windows Server 2003 and you receive an "The RPC service is
unavailable" error message when you try to connect to the terminal
server by using the Remote Desktop Connection program
http://support.microsoft.com/?kbid=883670
Last Wiki Answer Submitted: October 25, 2010 3:10 pm by Karl Gechlik9,815 pts.
All Answer Wiki Contributors: Karl Gechlik9,815 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.
Post any error you get in eventvwr
is netbios/tcpip enabled
Configure the registry value “MaxUserPort” to use for the maximum value of the dynamic client port range
Changed the TCPTimeWaiteDelay value to 60 seconds. It determines the time that must elapse before TCP can release a closed connection and reuse its resources
RPC (Remote Procedure Call) is used to allow a program running on one computer to access services on another networked computer. Microsoft added some of it’s own extensions to the standard RPC protocol and deeply intertwined RPC into the inter-process communication of Windows operating system components. So if RPC stops working, lots of other Windows features will fail as well.
In your case go to Control Panel / Performance and Maintenance / Administrative Tools / Services then double click on the Remote Procedure Call entry and either start the server, or set it to start automatically on system startup.
Post any error you get in eventvwr
is netbios/tcpip enabled
Configure the registry value “MaxUserPort” to use for the maximum value of the dynamic client port range
HKLMsystemCurrentControlSetServicesTCPIPParameters
Key: MaxUserport
Set the value to 65534 (decimal)
http://technet.microsoft.com/en-us/library/cc938196.aspx
Changed the TCPTimeWaiteDelay value to 60 seconds. It determines the time that must elapse before TCP can release a closed connection and reuse its resources
HKLMSYSTEMCurrentControlSetServicesTcpipParameters
Key: TcpTimedWaitDelay
Value : 60 (Decimal)
http://technet.microsoft.com/en-us/library/cc938217.aspx
RPC (Remote Procedure Call) is used to allow a program running on one computer to access services on another networked computer. Microsoft added some of it’s own extensions to the standard RPC protocol and deeply intertwined RPC into the inter-process communication of Windows operating system components. So if RPC stops working, lots of other Windows features will fail as well.
In your case go to Control Panel / Performance and Maintenance / Administrative Tools / Services then double click on the Remote Procedure Call entry and either start the server, or set it to start automatically on system startup.