For connecting to networked resources, eg. SMB, SSH, Wireguard
SSH
Remember to not use strict host checking for automating ssh login.
ssh -o StrictHostKeyChecking=no $target- every subsequent logins will be immediate
Tabby Terminal
winget install eugeny.tabbyBy default it will import SSH config are config file.. But for complete configuration and settings, it stores config file at
%appdata%/tabby/config.yaml
Copying all the content to the computer will restore operation.
SSH Server
Add-WindowsCapability -Online -Name OpenSSH.ServerEnable —now
Set-Service -Name sshd -StartupType 'Automatic'
Start-Service sshdSMB
Iperf3
Iperf used for network testing, for instruction on how to use instead of installation refer to iperf3
winget install ar51an.iperf3