# Set the Timezone

*Sometimes, the modification of the time zone is not available in the graphical interface of Windows. No worries, let's use Powershell.*

---

On the computer or server you wish to change the time zone, run the following command:

```powershell
Set-TimeZone -Id "Romance Standard Time"
```

In this example, I set the time zone to the **Romance Standard Time**, which is the time zone for **Europe/Brussels**.

You can list all available time zones with the following command:

```powershell
Get-TimeZone -ListAvailable
```