Skip to content

Commit 19a628e

Browse files
author
Anthony Sansone
committed
Updated per @markbenvenuto review.
1 parent 4e5d73f commit 19a628e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

source/includes/steps-install-verify-files-windows.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,11 @@ content: |
6363
$Env:ProgramFiles\Sigcheck\sigcheck64.exe `
6464
-h $Env:HomePath\Downloads\mongodb-win32-x86_64-2008plus-ssl-v3.4-latest-signed.msi
6565
66-
``sigcheck`` returns this verifcation information for the latest
66+
.. note::
67+
Click :guilabel:`Agree` to accept the
68+
:abbr:`EULA (End User License Agreement)` when it displays.
69+
70+
``sigcheck`` returns this verification information for the latest
6771
release of MongoDB 3.4:
6872
6973
.. code-block:: bat
@@ -103,7 +107,7 @@ content: |
103107
.. code-block:: powershell
104108
105109
$sigHash = (Get-Content $Env:HomePath\Downloads\mongodb-win32-x86_64-2008plus-ssl-v3.4-latest-signed.msi.sha256 | Out-String).SubString(0,64).ToUpper(); `
106-
$fileHash = (Format-Table -Property Hash -InputObject (Get-FileHash $Env:HomePath\Downloads\mongodb-win32-x86_64-2008plus-ssl-v3.4-latest-signed.msi) -hidetableheaders | Out-String).Trim(); `
110+
$fileHash = (Get-FileHash $Env:HomePath\Downloads\mongodb-win32-x86_64-2008plus-ssl-v3.4-latest-signed.msi).Hash.Trim(); `
107111
echo $sigHash; echo $fileHash; `
108112
$sigHash -eq $fileHash
109113

0 commit comments

Comments
 (0)