RDP equivalent to SSH port forwarding?
Solution 1:
No, it is not possible with RDP.
You can install an SSH server on windows and continue to use SSH.
Alternatively, you can use netsh to do TCP forwarding as described in this answer on SO:
netsh interface portproxy add v4tov4 listenport=81 listenaddress=127.0.0.1 connectport=81 connectaddress=10.90.228.163
Note that this will behave different ftom SSH: The connection to the connectaddress/port will originate from the machine it is listening on, instead of the target machine. Also, it will not be encrypted. This is rather a Windows equivalent for IPtables portforwarding, than for an SSH tunnel.