# irm https://files.mitchy.xyz/misc/ssh.txt | iex # yes i am indeed *this* lazy $dlpath = "$env:temp\putty32.exe" if (!(Test-Path $dlpath)) { Invoke-WebRequest -Uri https://the.earth.li/~sgtatham/putty/latest/w32/putty.exe -OutFile :dlpath -ErrorAction Stop } echo $dlpath Start-Process $dlpath "-ssh mitchy.xyz -P 62169 -C" exit