From c3257e2146304c52e588c6de2fd28bcc0f13b1ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?l=C3=B6=C3=B6ps?= Date: Fri, 9 Feb 2024 13:16:17 -0500 Subject: [PATCH] docs(windows-client): add Windows registry command (#1658) Add Windows registry command to create the `Tailscale IPN` path before setting properties. --- docs/windows-client.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/windows-client.md b/docs/windows-client.md index fcb8c0e5..38d330b0 100644 --- a/docs/windows-client.md +++ b/docs/windows-client.md @@ -18,6 +18,7 @@ You can set these using the Windows Registry Editor: Or via the following Powershell commands (right click Powershell icon and select "Run as administrator"): ``` +New-Item -Path "HKLM:\SOFTWARE\Tailscale IPN" New-ItemProperty -Path 'HKLM:\Software\Tailscale IPN' -Name UnattendedMode -PropertyType String -Value always New-ItemProperty -Path 'HKLM:\Software\Tailscale IPN' -Name LoginURL -PropertyType String -Value https://YOUR-HEADSCALE-URL ```