If you want to forward packet from your windows server to local server you can use this command
Use case : i want to forward If user call 192.168.100.233
port 8006
it will be forwarded to 192.168.100.254
port 8006
netsh interface portproxy add v4tov4 listenport=8006 listenaddress=192.168.100.233 connectport=8006 connectaddress=192.168.100.254
netsh interface portproxy show all
netsh interface portproxy delete v4tov4 listenport=8006 listenaddress=192.168.100.233