Working on Setting up SSH

This commit is contained in:
TheFlyingFool 2024-05-21 14:57:57 -05:00
parent ec4dc76a4c
commit b86e9453cf

View File

@ -126,6 +126,15 @@ do {
InstallTheApps $Apps InstallTheApps $Apps
Update-Profile Update-Profile
Write-Host "Make sure SSH Client is installed"
Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0
Write-Host "Create SSH Key"
ssh-keygen -t ed25519
Write-Host "Start SSH Agent"
Get-Service ssh-agent | Set-Service -StartupType Automatic
Start-Service ssh-agent
ssh-add $env:USERPROFILE\.ssh\id_ed25519
} }
"2" { "2" {
$apps = @( # Game Launchers $apps = @( # Game Launchers