Page tree

Versions Compared

Key

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

...

File Name

Size (bytes)

MD5 Sum

jiraclient-3_5_1.dmg16526620b6994e97026a410c8927dec195f8c3d8
jiraclient-3_5_1.exe23653632c6f27fc603b6d196c9fa3f24daca62ea
jiraclient-3_5_1.tar.gz377306306140ce0af931a05fec10b4f3c45fe3f8
jiraclient-3_5_1_without_jre.exe6348544f98dbc3b7b5d734483c252d025d024f1
jiraclient-3_5_1_without_jre.tar.gz15887119723e44a82b9e9e8dd91204493bc3bc59
jiraclient-3_5_1.zip17241837aff2b71605213426b45f471d73dc7ec0

jiraclient-3_5.dmg

15627287

cae5239c0a117dfa4903d682eb84887e

jiraclient-3_5.exe

24109312

1d5fe30ad1888ea7be9a1fd7e67778df

jiraclient-3_5.tar.gz

36883637

fd1ed57496e4c49586f22f674a90f63b

jiraclient-3_5_without_jre.exe

6803200

4b317478a263b41d65b7a964a7bd9b23

jiraclient-3_5_without_jre.tar.gz

15036864

7bf57f920f9abb65c89758596898d647

jiraclient-3_5.zip

16392265

0ee9a6418171dc21a13602569f561254

...

Open Powershell (on Vista/7 press Start and type powershell; on XP, use Start | Run and type powershell there) and run there the following script. To paste the script to the console, copy the script to the Clipboard and then right-click in the console window. 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 { if($stream) { $stream.close() } }