Tess Gauthier

Results 130 comments of Tess Gauthier

Great! It seems like this might be related to the crypto libraries used with each OpenSSH and their implementations of [[email protected]](mailto:[email protected]) - see https://github.com/PowerShell/Win32-OpenSSH/issues/1359. Do you know if the server...

Does this repro outside of the Remote-SSH VS code extension, with a CLI-based ssh client on Mac & a Windows ssh server?

@akainth015 - looks like these changes break the CI during the E2E test setup, can you look into that? At a quick glance, it's not clear to me if it's...

> Are there more up-to-date instructions? The commands related to testing, on the [wiki page](https://github.com/PowerShell/Win32-OpenSSH/wiki/Run-OpenSSH-Pester-Tests) related to testing error as follows. > > ``` > Import-Module: The specified module 'OpenSSHUtils'...

hmm, are you using Windows PowerShell (5.1) or PowerShell core (7.4)? Can you try the following, based on https://github.com/PowerShell/openssh-portable/blob/latestw_all/.azdo/ci.yml#L198: Import-Module -Name "D:\openssh-portable\contrib\win32\openssh\AzDOBuildTools" -Force Invoke-OpenSSHTests -OpenSSHBinPath "D:\openssh-portable\bin\x64\debug"

Can you try manually copying both `OpenSSHUtils.psm1` and `OpenSSHUtils.psd1` to `C:\Program Files\WindowsPowerShell\Modules\OpenSSHUtils\1.0.0.1` and rerunning in Windows PowerShell?

> @tgauth Would it be fine if we guard the different code paths with `#ifdef HAVE_AFUNIX_H` ? I don't see why not. If you haven't seen it yet, can add...

> @tgauth Thanks for the quick feedback! I added the `HAVE_AFUNIX_H` guard. Visual Studio doesn't seem to be picking up the `#define` statement from config.h.vs, is there anything else I...

> @tgauth Yes, I can confirm that config.h in the root got updated. > > ``` > /* Use PIPES instead of a socketpair() */ > #define USE_PIPES 1 >...