From cf6ab8c70f8a40b22257e60c323521a9a29344a0 Mon Sep 17 00:00:00 2001 From: Ashley Mensah Date: Tue, 21 Apr 2026 16:37:01 +0200 Subject: [PATCH] fix(docs): correct code fence language for PowerShell blocks --- src/pages/help/troubleshooting-client.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/help/troubleshooting-client.mdx b/src/pages/help/troubleshooting-client.mdx index e181d7b3..b8b5d1cb 100644 --- a/src/pages/help/troubleshooting-client.mdx +++ b/src/pages/help/troubleshooting-client.mdx @@ -306,7 +306,7 @@ sudo netbird service start You need to run the following commands with an elevated PowerShell or `cmd.exe` window. -```shell +```powershell [Environment]::SetEnvironmentVariable("NB_LOG_LEVEL", "debug", "Machine") netbird service restart ``` @@ -360,7 +360,7 @@ netbird service stop In case you need to configure environment variables, you need to add them as system variables so they get picked up by the agent on the next psexec run: -```shell +```powershell [Environment]::SetEnvironmentVariable("PIONS_LOG_DEBUG", "all", "Machine") ````