Try this:
REG.exe ADD "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0
Try this:
REG.exe ADD "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0
One big note: disable the hardware COM ports on the server, in BIOS, first!
The registry tweak below, helps. Reportedly it helps most if done on both server and client.
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters] "TcpMaxDataRetransmissions"=dword:00000010 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server] "KeepAliveEnable"=dword:00000001
This works well in a domain environment. Here’s the template:
psexec \\DESTINATION -u "DOMAIN\Username" -p "PASSWORD" cmd /c "msiexec.exe /i "\\FILESERVER\SHARE\APP.MSI" /q /qn /norestart"
DESTINATION is the hostname of the system upon which you desire to install the MSI.
DOMAIN is the name of the domain. A domain login with rights sufficient for software login and access to the share is required.
FILESERVER is the hostname of any system on the LAN which has the MSI on a valid file share.
SHARE is the name of the file share on FILESERVER containing the MSI.
APP.MSI needs to be replaced with the MSI filename.
This one appears to work very well:
Here is a great place for configuring X windows over SSH. This is a built-in remote control capability built into the very heart of the standard Unix/Linux GUI system.
Excellent information is here:
http://www.petri.co.il/use_rdp_client_to_connect_to_a_different_port.htm
RWW uses ports 4125 and 443.
All of the following ports, reportedly, have to be forwarded to the server:
25
443
444
1723
3389
4125
Try this registry entry on the client PC:
In HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Default\AddIns\RDPDR
Create a DWORD value named “FilterQueueType”. Its value should be “FFFFFFFF” (eight F’s), hexadecimal.
Works especially well for unusual printers, e.g., USB et cetera. Reportedly helps under XP, Vista, and 7.