SSH devices

Set up on Windows

go to Apps & features > Optional features > make sure OpenSSH client/server is installed > go to or run services.msc > OpenSSH server service and set it up for automatic run on boot or whatever I want (or run command Set-Service -Name sshd -StartupType 'Automatic').

If ssh Server is installed but not running, the run command is Start-Service sshd (powershell)

Optionally If I have windows linux subsystem I can probably ssh into that and use the more familiar bash terminal commands

setup on android

copy files over

scp command
scp RemoteUser@192.168.56.2:C:/Users/Administrator/Desktop/test.txt Desktop copies a fiel from remote desktop to local desktop
or vice versa scp hello.txt RemoteUser@192.168.56.2:C:/Users/Administrator/Desktop/hello-copy.txt