Run this on the 4090 โ it's the thing blocking every gen job from the new laptop.
Press Win + X, then click Terminal (Admin)
Older menu might say "Windows PowerShell (Admin)" โ same thing. Say yes to the UAC prompt.
C:\ProgramData\ssh is locked to SYSTEM and Administrators.
It's one line. If it wraps on screen that's just display โ don't break it up. Folder doesn't matter, the paths are absolute.
Add-Content "$env:ProgramData\ssh\administrators_authorized_keys" 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL5itYrv7voNM97RyfhXEb/OVS/6w4CPZdJLHz81O/6h killa-newlaptop-4090'; icacls "$env:ProgramData\ssh\administrators_authorized_keys" /inheritance:r /grant "Administrators:F" /grant "SYSTEM:F"
A couple of lines from icacls finishing with:
processed file: C:\ProgramData\ssh\administrators_authorized_keys
Successfully processed 1 files; Failed processing 0 files
| Access denied | The terminal isn't elevated. Close it, reopen with Win+X โ Terminal (Admin). |
| Cannot find path | C:\ProgramData\ssh doesn't exist, which would mean the OpenSSH server isn't
installed. Tell me โ that changes the fix, and it'd be odd since the box is answering on port 22. |
| Ran fine, key still rejected | Usually the file ended up UTF-16 or picked up a BOM from an earlier edit, which sshd silently ignores. Say the word and I'll give you a one-liner that rewrites it clean as ASCII. |
The public half of the laptop's keypair. Safe to paste anywhere โ it's public by design, the private half never leaves the laptop.
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL5itYrv7voNM97RyfhXEb/OVS/6w4CPZdJLHz81O/6h killa-newlaptop-4090
administrators_authorized_keys and not ~/.ssh?
Windows OpenSSH ignores a user's own authorized_keys for any account in the
Administrators group and reads that one central file instead. That single quirk is what's had
the key bouncing all week.