# VScode multiples ssh solution
if u gonna ssh host A and then ssh hostB using VScode Remote explorer.
Place this in your `.ssh/config` file
Host HostA
HostName hostA
User userA
Host HostB
HostName hostB
User userB
ProxyCommand C:\Windows\System32\OpenSSH\ssh.exe -q -W %h:%p yyy
if u use
ProxyCommand ssh. -q -W %h:%p yyy
may encounter `posix_spawn: No such file or directory`.