Jordan Borean
Jordan Borean
There is no solution to this, if you authenticate to the server without providing the password for the user then you cannot unlock the DPAPI store for that user and...
Sure you can ask but trying to tunnel credentials or storing them in some reversible fashion is just as risky as sending the credentials in your command. PSRemoting ssh connections...
It's not in any way supported by MS or the PowerShell team but I came up with a wrapper that can give you what you want https://gist.github.com/jborean93/7d4cb107fa06251b080fa10ec844893e. You would place...
Have you run msiexec with logging enabled to try and find out why it is bailing out? ```powershell msiexec /i OpenSSH-Win64-v8.9.1.0.msi /L*V C:\path\to\install.log ADDLOCAL=Client ``` When it fails you can...
Accessing the private key store requires interaction with DPAPI which is not possible under an ssh key auth logon. This is due to what you've read online where the logon...
Also using `msiexec.exe /i C:\path\to\installer.msi /L*V C:\path\to\log.txt` (as administrator) and sharing that log file will help greatly in trying to figure out what went wrong.
Yea I just found out that it's actually sending an NTLM v1 message with extended session security instead of an NTLM v2 message but I haven't looked into that just...
Interesting that you say that Apple has fixed a lot of bugs. I've never actually been able to generate a successful NTLM auth on macOS in their Heimdal implementation. The...
Yea that implementation definitely works with MIT krb5. I’m trying to make a Python spnego library that works on Linux and just trying to test out the various gssapi implementations...
Are you able to share what Ansible version or `ansible.windows` version you are running with. The `win_updates` plugin has been rewritten in recent versions to try and handle failures such...