Max Kozlov

Results 183 comments of Max Kozlov

One more related feature. Now we do not have fingerprint in created sessiion will be fine if we can get it ``` powershell $session = New-SSHSession .... $session.Fingerprint ``` or...

Do you really think that this amount of data provided will somehow help solve your problem or improve the product?

is the `$ servers` variable just one server or a list of servers? are they all available for connection? have you tried connecting to them one at a time? try...

take a look to https://github.com/sshnet/SSH.NET/wiki/ScpClient:-Remote-path-transformation May be it your case But since SCP session is private for module You should test it like there https://github.com/darkoperator/Posh-SSH/issues/349#issuecomment-708946450 ``` powershell # ... $client.RemotePathTransformation...

Its new to library may be we need expose this session parameter in NewBaseSession() if it will be useful

If the `-Force` switch solve your problem, try to connect server with this flag and without it at the same time with the `-verbose` flag and compare hostkey algorithms and...

as far I remember `XXX-SCPItem` already exists in v2.2 but you always can test module version ``` Powershell (Get-Module Posh-SSH -List).Version ```

I think there is something wrong with `/C:/`. first "/" or ":"

During the quick look, I had a few remarks 1. What is the purpose of using `$ImportModule` instead of `Add-Type` ? 2. `SSHRegistryKeyStore` is implemented in powershell, because c# requires...

So, some more background information and history - At first there was only the `RequiredAssemblies` setting. - At this point, PSv7 loaded all DLLs from the specified path, and PSv5.1...