Tess Gauthier
Tess Gauthier
@rkitover, it has not. There were some adjacent changes to [OpenSSHUtils.psm1](https://github.com/PowerShell/openssh-portable/blob/latestw_all/contrib/win32/openssh/OpenSSHUtils.psm1) that might be causing the modification to the error, but I'd have to look into that a little closer...
@Berkey, I'm not totally sure I'm repro'ing this correctly, so my apologies if this isn't helpful. I tried to connect to "targetserverIP" (customPort) via "jumphostIP" (defaultPort) I am able to...
@rkitover, could you run the following commands PowerShell? ``` $systemSid = Get-UserSID -WellKnownSidType ([System.Security.Principal.WellKnownSidType]::LocalSystemSid) $adminsSid = Get-UserSID -WellKnownSidType ([System.Security.Principal.WellKnownSidType]::BuiltinAdministratorsSid) $currentUserSid = Get-UserSID -User "$($env:USERDOMAIN)\$($env:USERNAME)" ``` Based on that error message,...
@rkitover, disregard my previous comment - I was able to repro this issue. Over SSH, I found that the env:USERDOMAIN was set to WORKGROUP, while the actual value, in my...
@rkitover - after discussing with the console team, this sounds like an issue with ConPTY that was fixed starting with Windows OS build 18275. Windows Server 2019 is build 17763,...
https://github.com/PowerShell/openssh-portable/tree/latestw_all/regress/pesterTests/utilities/askpass_util To use it, set the following environment variables: $env:ASKPASS_PASSWORD = $env:SSH_ASKPASS_REQUIRE = "force" $env:SSH_ASKPASS = With those set, the ssh_user should be able to ssh without being prompted for...
Can you provide the sshd logs as well? Steps for running sshd in debug are [here](https://github.com/PowerShell/Win32-OpenSSH/wiki/Troubleshooting-Steps)
To make sure I understand the issue correctly - you setup key-based authentication per the provided link, but now neither key-based or password authentication works? Can you provide the error...
Can you try running the following: `msbuild openssh.wixproj` It may require the full path to your msbuild.exe, like this: `"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe"` Note that the MSIs are generated...
@twangboy, can you verify that io.h was installed with the SDK? It should be located here: `${env:ProgramFiles(x86)}\Windows Kits\10\Include\10.0.17763.0\ucrt\io.h` If it was not installed, can you uninstall the SDK, retry the...