I have remote access to my server and have tried the connection tester to my PC with the same user account and everything is good. Tried all 3 different ways and they all passed.
I have 66 out of 99(+servers) computer in the red that are not scaned. Only 24 computer scanned. Most of them are caused by the WMI error access denied. 33 of the 66 is the accessed denied. I know that the other half is a firewall issue which can be fix easily but, the other 33 is what keeps me boggle to why it will not get scanned properly. Any other suggestions would be greateful.
I double check the GPO for firewall and remote desktop and they seem fine. It's been a couple days now. I even tried using some vbs script on my PC which is not scan by the Lansweeper server.
' Remote Desktop Enable script
Const ENABLE_CONNECTIONS = 1
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery _
("Select * from Win32_TerminalServiceSetting")
For Each objItem in colItems
errResult = objItem.SetAllowTSConnections(ENABLE_CONNECTIONS)
Next
' Firewall Disable script
dim fwMgr
Set firewall = CreateObject("HNetCfg.FwMgr")
Set firewallPolicy = firewall.LocalPolicy.CurrentProfile
firewallPolicy.FirewallEnabled = FAlSE ' FALSE to disable
Anything else would be appreciated. Thanks.