From 8105feaafd7117ed39dfef0d7c3841251ca2bd06 Mon Sep 17 00:00:00 2001 From: John Kaiser <35939694+CoveMiner@users.noreply.github.com> Date: Wed, 9 Oct 2019 15:40:24 -0700 Subject: [PATCH 1/2] Update wake-on-lan-for-surface-devices.md --- .../wake-on-lan-for-surface-devices.md | 26 +++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/devices/surface/wake-on-lan-for-surface-devices.md b/devices/surface/wake-on-lan-for-surface-devices.md index ddc39aa7c2..8f18428732 100644 --- a/devices/surface/wake-on-lan-for-surface-devices.md +++ b/devices/surface/wake-on-lan-for-surface-devices.md @@ -9,9 +9,10 @@ ms.sitesec: library author: dansimp ms.author: dansimp ms.topic: article -ms.date: 01/03/2018 -ms.reviewer: +ms.date: 10/10/2019 +ms.reviewer: scottmca manager: dansimp +ms.audience: itpro --- # Wake On LAN for Surface devices @@ -41,6 +42,7 @@ The following devices are supported for WOL: * Surface Laptop 2 * Surface Go * Surface Go with LTE Advanced +* Surface Studio (See Surface Studio instructions below) ## WOL driver @@ -57,6 +59,26 @@ To extract the contents of SurfaceWOL.msi, use the MSIExec administrative instal `msiexec /a surfacewol.msi targetdir=C:\WOL /qn` +## Surface Studio instructions + +To enable WOL on Surface Studio, you must use the following procedure + +1. Create the following registry keys: + + ``` +; Set CONNECTIVITYINSTANDBY to 1: +[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\F15576E8-98B7-4186-B944-EAFA664402D9] +"Attributes"=dword:00000001 +; Set EnforceDisconnectedStandby to 0 and AllowSystemRequiredPowerRequests to 1: +[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power] +"EnforceDisconnectedStandby"=dword:00000000 +"AllowSystemRequiredPowerRequests"=dword:00000001 +``` + +2. Run the following command + + ```powercfg /SETACVALUEINDEX SCHEME_BALANCED SUB_NONE CONNECTIVITYINSTANDBY 1``` + ## Using Surface WOL The Surface WOL driver conforms to the WOL standard, whereby the device is woken by a special network communication known as a magic packet. The magic packet consists of 6 bytes of 255 (or FF in hexadecimal) followed by 16 repetitions of the target computer’s MAC address. You can read more about the magic packet and the WOL standard on [Wikipedia](https://wikipedia.org/wiki/Wake-on-LAN#Magic_packet). From ba47b2ecc0753279650889be09714f6c8ac77330 Mon Sep 17 00:00:00 2001 From: John Kaiser <35939694+CoveMiner@users.noreply.github.com> Date: Thu, 10 Oct 2019 10:40:45 -0700 Subject: [PATCH 2/2] Update wake-on-lan-for-surface-devices.md --- devices/surface/wake-on-lan-for-surface-devices.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/devices/surface/wake-on-lan-for-surface-devices.md b/devices/surface/wake-on-lan-for-surface-devices.md index 8f18428732..0c63bbe4b5 100644 --- a/devices/surface/wake-on-lan-for-surface-devices.md +++ b/devices/surface/wake-on-lan-for-surface-devices.md @@ -6,6 +6,7 @@ ms.prod: w10 ms.mktglfcycl: manage ms.pagetype: surface, devices ms.sitesec: library +ms.localizationpriority: medium author: dansimp ms.author: dansimp ms.topic: article @@ -42,7 +43,7 @@ The following devices are supported for WOL: * Surface Laptop 2 * Surface Go * Surface Go with LTE Advanced -* Surface Studio (See Surface Studio instructions below) +* Surface Studio (see Surface Studio instructions below) ## WOL driver