From a11e1a76b83e893393f90ed6dd19f5f755b7f470 Mon Sep 17 00:00:00 2001 From: shuuri-labs <61762328+shuuri-labs@users.noreply.github.com> Date: Tue, 21 Apr 2026 16:40:26 +0200 Subject: [PATCH] fix(docs): correct code fence language for PowerShell blocks (#708) --- 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") ````