From 9d8e3d0cffb8d1941516fe44e075f9993d481a31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Sat, 1 Nov 2025 11:49:31 +0200 Subject: [PATCH] Init.ps1 Update --- init.ps1 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/init.ps1 b/init.ps1 index 8b7e294..aeedc76 100644 --- a/init.ps1 +++ b/init.ps1 @@ -17,3 +17,17 @@ echo "Copy SSH Key" Get-Content "$Env:USERPROFILE\.ssh\keys\infra.pub" echo "" echo "" +echo "Install OpenSSH Server" +Add-WindowsCapability -Online -Name OpenSSH.Server +echo "" +echo "" +echo "Enable OpenSSH Server" +Set-Service -Name sshd -StartupType 'Automatic' +echo "" +echo "" +echo "Start OpenSSH Server" +Start-Service -Name sshd +echo "" +echo "" +echo "Install Debian" +wsl --install Debian