Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(changelog): instances-added-openssh-server-is-now-enabled-on-window 2025-02-04 #4350

Merged
merged 5 commits into from
Feb 5, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: OpenSSH server is now enabled on Windows 2022 images
bene2k1 marked this conversation as resolved.
Show resolved Hide resolved
status: added
author:
fullname: ''
bene2k1 marked this conversation as resolved.
Show resolved Hide resolved
url: 'https://slack.scaleway.com'
date: 2025-02-04
category: compute
product: instances
---

The newest release of the Windows 2022 server and Windows 2022 core images now have the OpenSSH Server and OpenSSH Client packages installed by default.

The OpenSSH Server is installed and disabled by default for security purposes. It can be enabled at instance creation time by adding the tag `with-ssh` to the instance when it is created.

This is an example of a CLI command to start a server with OpenSSH Server enabled :
```
scw instance server create name=win2k22-core image=windows-server-2022-core tags.0=with-ssh type=POP2-2C-8G-WIN admin-password-encryption-ssh-key-id={ssh_key_id}
```
If your instance has been started without the tag and you want to enable OpenSSH Server, simply use the following Powershell command :

```
Start-Service sshd
```
You will then need to load the ssh keys configured in your project by using the ScalewayEcosystem command :
```
PS C:\Users\administrator> Scw-Fetch-SSH-Keys
bene2k1 marked this conversation as resolved.
Show resolved Hide resolved

Loading