Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Open Powershell and paste the following script there; don't forget to change location of the downloaded file accordingly.

Code Block
$stream = new-object io.filestream "X:\downloads\jiraclient-2_3_6.exe",Open; try { -join ([security.cryptography.MD5]::Create().ComputeHash($stream) |% {$_.ToString("x2")}) } finally { $stream.close() }