Releases: PowerShell/Win32-OpenSSH
v0.0.12.0
This is a pre-release (non-production ready)
Includes:
- Fixes to several redirection related issues with ssh.exe and sftp.exe
- Following will now work
- ssh ... > out.txt
- $o = ssh ... (in Powershell)
- sftp -b .... > out.txt
- Following will now work
- Removal of ssh-lsa.dll. There is now no reboot restriction on setup.
and other misc issues listed here
Note
It seems that the key based authentication is not working for docker containers. For docker scenarios, continue using v0.0.11.0 until this issue is fixed.
v0.0.11.0
This is a pre-release (non-production ready)
Includes:
- Latest changes from OpenSSH main repo (synced to 7.5p1)
- Fix to Sshfs issue introduced in 0.0.9.0
- Support for ssh redirection in Powershell ($o = ssh ... )
- Install-sshd.ps1 support for Nano
and other misc issues listed here
NOTE - Breaking Change
- Due to a security issue that got fixed in this release, SSHD account now needs read access to "authorized_keys. Otherwise pubkey authentication will fail. Do the following:
$authorizedKeyPath = "c:\users\user\.ssh\authorized_keys"
$acl = get-acl $authorizedKeyPath
$ar = New-Object System.Security.AccessControl.FileSystemAccessRule("NT Service\sshd", "Read", "Allow")
$acl.SetAccessRule($ar)
Set-Acl $authorizedKeyPath $acl
v0.0.10.0
This is a pre-release (non-production ready)
Includes:
- Fix to remote commadline issue introduced in 0.0.9.0
- Various terminal related issues
Wiki added to help understand TTY/PTY implementation in Windows
List of closed issues here
v0.0.9.0
v0.0.8.0
v0.0.7.0
v0.0.6.0
_This is a pre-release (non-production ready)_
Includes fixes to regression in v0.0.5.0 and minor issues in scp and sftp.
v0.0.5.0
_This is a pre-release (non-production ready)_
Regression Alert - installation will be broken if installed in "Program Files"
This release integrates all the latest changes in OpenSSH-Portable master into Win32 port. As detailed in Project Status, all development is being done in https://github.com/PowerShell/openssh-portable. For any contributions, please submit pull requests to PowerShell/openssh-portable.
This release also includes general fixes to reliability issues in scp and sftp scenarios. Wild cards now work in sftp as well as Windows styled paths.
Note: Log files are now populated in a "logs" folder in bin root.
See other improvements here
v0.0.4.0
_This is a pre-release (non-production ready)_
This release integrates all the latest changes in OpenSSH-Portable V7.3 into Win32 port. As detailed in Project Status, all development is being done in https://github.com/PowerShell/openssh-portable. For any contributions, please submit pull requests to PowerShell/openssh-portable.
See other improvements here
v0.0.3.0
_This is a pre-release (non-production ready)_
This release adds Unicode support in interactive shell, scp and sftp.
- Interactive TTY ssh session now accurately transmits and renders Unicode characters (cmd.exe code page may need to be changed for the appropriate locale)
- sftp and scp now supports Unicode directories and file names.
See other improvements here