Copy your Wireguard config to this notepad window (create the file when it says it doesn't exist)
Copy to Clipboard
notepad "C:\Program Files\WireGuard\Data\Configurations\wg0.conf" Make sure the file got converted to a .dpapi file by running: Copy to Clipboard
dir "C:\Program Files\WireGuard\Data\Configurations" Install the service by running: Copy to Clipboard
sc config WireGuardTunnel$wg0 start=demand Start the connection by running: Copy to Clipboard
sc start WireGuardTunnel$wg0 Stop the connection by running: Copy to Clipboard
sc stop WireGuardTunnel$wg0 These instructions were from here (although it has several typos) https://warlord0blog.wordpress.com/2023/11/10/using-wireguard-as-a-non-administrator-on-windows/#:~:text=WireGuard%20does%20not%20work%20on,has%20installed%20and%20configured%20it. |