Tag Archives: netsh

HOWTO redirect TCP connections on Windows

Recently I needed to redirect TCP connections and data streams to another PC. It is useful when you have PC1 and PC2 visible on the same LAN and can only see PC1 from outside.  In these cases, you have to use PC1 to reach PC2. Open a Command Prompt with administrative access rights and type the following: netsh interface portproxy add v4tov4 listenaddress=<local address/name> listenport=<localport> … Continue reading HOWTO redirect TCP connections on Windows »

HOWTO Recover a stored WiFi password

Sometimes it is useful to recover a password from its Windows stored WiFi profiles. We can do this by opening an administrative Command Prompt and typing this command to list all stored profiles: netsh wlan show profile Then type the following command with the proper profile name: netsh wlan show profile name=<profile_name> key=clear You can find it in the Security Settings section in the listed … Continue reading HOWTO Recover a stored WiFi password »