-
Notifications
You must be signed in to change notification settings - Fork 779
Which Win32-OpenSSH versions released with which Windows releases? #2053
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
At least one past OpenSSH update quietly happened as part of a monthly Cumulative Update, and was not linked to any Feature Update or change of Windows version:
Therefore I suspect the table you want needs to just list the Cumulative Update KBs that updated OpenSSH, not the Windows version. At present, you have to go to the announcement page of each KB and check the list of changed files in order to see if they updated OpenSSH for Windows. |
👍 for the idea of such a table.
Interesting, that both KB release notes did not mention the OpenSSH update. 👎 If I understand correctly as a Win/OpenSSH newbie, there are basically two "version branches": Did I basically understand that correctly? |
Also: is there any chance to drop the "beta" from releases or, preferably, add the binaries that are distributed with Windows installs/updates as additional non-beta binaries? |
I just took a lot of time, to experience errors in Win7 with all Windows updates installed, to find out later, that an older release of OpenSSH has to be used with Win7. It's the 9.2.2.0 - so it would be nice, to have such things mentioned on the installation page https://github.com/PowerShell/Win32-OpenSSH/wiki/Install-Win32-OpenSSH where it just says, that Windows versions from 7 on will be supported - so you usually will try the newest release, first. |
I gave autogenerating this a whirl on Linux (requires wimlib and wine) and ISOs downloaded via MSDN Universal, or whatever it's called nowadays: # e.g. ISOMOUNT=/cdrom WIMMOUNT=~/mnt/tmp
for f in *.iso; do
echo $f
sudo mount -o ro $f $ISOMOUNT
wimmount $ISOMOUNT/sources/install.wim 1 $WIMMOUNT
WINEDEBUG=-all WINEPATH=$WIMMOUNT/Windows/System32 wine \
$WIMMOUNT/Windows/System32/OpenSSH/ssh.exe -V
fusermount -u $WIMMOUNT
sleep 2
sudo umount $ISOMOUNT
done
That's basically all the information I need. I'm not sure how to collaboratively maintain this table — I guess it might belong on the wiki, but collaboratively editing it will be a little ick? |
According to random person on Reddit, Win11 2024H2 comes with
|
Does anyone know where to find the update schedule for the next major version? |
Summary of the new feature / enhancement
It would be very helpful to know which Win32-OpenSSH clients were packaged with which versions of Windows 10, 11, or Server. This information is alluded to with specific other issues (e.g. #1693), but I'm not aware of a comprehensive table. (Did I miss it?)
My motivation is as follows. I maintain SSH support for a product which presently supports Windows 10 1607 and later, and Windows Server 2016 and later. I would like to optionally make use of
StrictHostKeyChecking accept-new
which was added in OpenSSH 7.6p1. There is a ragged trailing edge to the support: depending on which Windows version included OpenSSH 7.6p1 (or later), it may be acceptable to always assume that at least that version is present, and tell our users to manually install a newer version from GitHub if necessary. This would help simplify implementation and testing. But if too many Windows versions are affected, that option may not be tenable.Proposed technical implementation details (optional)
A page on the wiki that looks like this, identifying what OpenSSH version you get when you run
ssh -V
on each OS (the OpenSSH versions are placeholders):Alternative: a PowerShell script that lets us obtain this information ourselves.
The text was updated successfully, but these errors were encountered: