File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,11 @@ content: |
63
63
$Env:ProgramFiles\Sigcheck\sigcheck64.exe `
64
64
-h $Env:HomePath\Downloads\mongodb-win32-x86_64-2008plus-ssl-v3.4-latest-signed.msi
65
65
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
67
71
release of MongoDB 3.4:
68
72
69
73
.. code-block:: bat
@@ -103,7 +107,7 @@ content: |
103
107
.. code-block:: powershell
104
108
105
109
$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(); `
107
111
echo $sigHash; echo $fileHash; `
108
112
$sigHash -eq $fileHash
109
113
You can’t perform that action at this time.
0 commit comments