Jump to content

Recommended Posts

Posted (edited)

Just tried to RDP from my desktop to our SIMS server and I get "This computer can't connect to the remote computer. Try connecting again. If the problem continues, contact the owner of the remote computer or your network administrator"

 

Both technician machines have this issue. Nothing appears to be wrong with the SIMS Server as it is a VM and I can get to it via the Host. I have even rebooted it but still cannot get remote access.

 

I am wondering if this could be a Windows Update that has caused this? Having said that, I can remote onto other servers just fine.

 

Any ideas please?

 

edit: This is from Windows 7 desktop to Server 2012 R2

Edited by fiza
Posted

How long ago was it last updated? There were some patches that broke RDP but that was like last year the ones I last remember anyway.

 

Can you remote to it from another Server OS? (Wasn't sure if you meant RDP from the HOST or like local access) As it was only clients that got affected by the patch I'm referring to

 

Steve

  • Thanks 1
Posted
How long ago was it last updated? There were some patches that broke RDP but that was like last year the ones I last remember anyway.

 

Can you remote to it from another Server OS? (Wasn't sure if you meant RDP from the HOST or like local access) As it was only clients that got affected by the patch I'm referring to

 

Steve

Regularly updated. I cannot remote to it from another server either.

Can you remote to it via the ip address?

Nope.

Check the Windows Firewall is disabled.

Disabled

Posted (edited)

Can a Windows 10 client connect to the server?

 

From the affected server, via the VM host connection, what results do you get when you issue this command (from the cmd prompt).

netstat -a | find "3389"

 

EDIT: Also, just double check the network on the affected server is domain, assuming it's joined to your domain, otherwise it should be private

Powershell

Get-NetConnectionProfile

Edited by mrwoberts
Posted
Can a Windows 10 client connect to the server?

 

From the affected server, via the VM host connection, what results do you get when you issue this command (from the cmd prompt).

netstat -a | find "3389"

 

EDIT: Also, just double check the network on the affected server is domain, assuming it's joined to your domain, otherwise it should be private

Powershell

Get-NetConnectionProfile

 

For the first test I can see the server is listening on 3389

 

For the second test I get "Provider Load Failure"

 

What does that mean please?

 

- - - Updated - - -

 

Are all the VMs on the host affected ?

No other VMs connect fine remotely.

Posted
For the first test I can see the server is listening on 3389

 

For the second test I get "Provider Load Failure"

 

What does that mean please?

 

You need to run the (native) 64 bit version of Powershell, not the Powershell (x86).

Posted
You need to run the (native) 64 bit version of Powershell, not the Powershell (x86).

 

Ok, ran that just now ;

 

sims rdp issue.jpg

Posted (edited)

Looks good.

 

Can you just confirm whether a Windows 10 PC is able to RDP into that server?

 

Also, can you see if the 3389 connection is 'connectable', using this Powershell script (.PS1) from an affected client PC

 

$Connection = New-Object Net.Sockets.TcpClient

try {

   $Connection.Connect("localhost",3389)

   if ($Connection.Connected) {

       $Response = "Open"
       $Connection.Close()
   }
}

catch [system.Management.Automation.MethodInvocationException] {

   $Response = "Closed / Filtered"
}

Write-Host $Response

$Connection = $null

 

And can you post the output of these two Powershell commands

Get-ItemProperty 'HKLM:SYSTEM\CurrentControlSet\Control\Terminal Server'

and

Get-ItemProperty 'HKLM:SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' | Select-Object PortNumber

Edited by mrwoberts
  • Thanks 1
Posted

Actually, this looks like a simpler way to test a remote connection

 

Powershell

 Test-NetConnection -ComputerName "fqdn_of_your_sims_server" -Port 3389

  • Thanks 1
Posted
Looks good.

 

Can you just confirm whether a Windows 10 PC is able to RDP into that server?

 

Also, can you see if the 3389 connection is 'connectable', using this Powershell script (.PS1) from an affected client PC

 

I have run the first script from an affected machine. I get the result "open"

 

From where should I run the 2nd and 3rd commands? From an affected machine or the server?

 

If I try to connect from a Windows 10 machine it still fails but I get a different message " An Internal Error has occurred"

Posted
Just spoken to our SIMS Support unit and they were the last ones to remote in on Monday to do the SIMS Spring Update. They said they had to reboot the server and then apply additional SIMS patches/upload reports. They did this successfully. Today they are unable to remote in either.
Posted
Our SIMS Support Unit also use Dameware RDP and they are able to remote in using that over the VPN but the MS RDP client does not work.
Posted

When you say you're trying to RDP from desktop to server, are you using the Dameware software, or the Microsoft RDC client?

I don't know anything about the Dameware software, but could we perhaps take that out of the equation for the minute - temporarily remove it from the SIMS server ....

  • Thanks 1
Posted
When you say you're trying to RDP from desktop to server, are you using the Dameware software, or the Microsoft RDC client?

I don't know anything about the Dameware software, but could we perhaps take that out of the equation for the minute - temporarily remove it from the SIMS server ....

 

For the SIMS Unit to connect : This is the set up. We have Cisco AnyConnect as our VPN software. They make a connection using that to our Firewall and then use an RDP client to make the connection to the SIMS Server via the VPN. If they use the MS RDP client then they get the same error as us. If they use the DameWare RDP client then they can successfully connect.

 

We only use the MS RDP client and we cannot connect.

 

We dont have any Dameware software installed on the server. It is purely an RDP client the SIMS Unit use to connect.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...