From fc8477dda8ec5465f4676b5124213942a494a463 Mon Sep 17 00:00:00 2001 From: Carmen Forsmann Date: Fri, 31 Mar 2023 16:23:23 -0600 Subject: [PATCH] Update wufb-reports-do.md --- windows/deployment/update/wufb-reports-do.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/deployment/update/wufb-reports-do.md b/windows/deployment/update/wufb-reports-do.md index ae6bce2542..be38540a6e 100644 --- a/windows/deployment/update/wufb-reports-do.md +++ b/windows/deployment/update/wufb-reports-do.md @@ -77,7 +77,7 @@ There are sevaral calculated values that appear on the Delivery Optimization rep In the **Efficiency By Group** subsection, the **GroupID** is displayed as an encoded SHA256 hash. You can create a mapping of decoded to encoded GroupIDs using the following PowerShell example: ```powershell -$text = "65f64d93-a6c1-446b-95c2-c6117378002c`0" ; +$text = "" ; $hashObj = [System.Security.Cryptography.HashAlgorithm]::Create('sha256') ; $dig = $hashObj.ComputeHash([System.Text.Encoding]::Unicode.GetBytes($text)) ; $digB64 = [System.Convert]::ToBase64String($dig) ; Write-Host "$text ==> $digB64" ```