Difference between revisions of "DigestIT 2004"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (Reverted edit of 216.147.222.194, changed back to last version by WPKGSysop)
m
Line 1: Line 1:
 
[http://digestit.kennethballard.com/ digestIT 2004] is a free Windows program that allows you to generate an [http://dret.net/glossary/md5 MD5 message hash] or an [http://www.pcmag.com/encyclopedia_term/0,2542,t=SHA1&i=51225,00.asp SHA-1 hash] for a file. An MD5 message hash, aka MD5 sum, and a SHA-1 hash are unique hexadecimal numbers that allow you to determine if a file has been altered. A silent installer and uninstaller for digestIT 2004 is provided below. Once it is installed, you can right-click on a file in Windows and choose "digestIT 2004" to generate either an MD5 hash or a SHA-1 hash. The software then provides you the opportunity to copy the hash to the Windows clipboard or save it to a file.
 
[http://digestit.kennethballard.com/ digestIT 2004] is a free Windows program that allows you to generate an [http://dret.net/glossary/md5 MD5 message hash] or an [http://www.pcmag.com/encyclopedia_term/0,2542,t=SHA1&i=51225,00.asp SHA-1 hash] for a file. An MD5 message hash, aka MD5 sum, and a SHA-1 hash are unique hexadecimal numbers that allow you to determine if a file has been altered. A silent installer and uninstaller for digestIT 2004 is provided below. Once it is installed, you can right-click on a file in Windows and choose "digestIT 2004" to generate either an MD5 hash or a SHA-1 hash. The software then provides you the opportunity to copy the hash to the Windows clipboard or save it to a file.
  
<pre>
+
<source lang="xml">
&lt;package
+
<package
 
   id="digestIT2004"
 
   id="digestIT2004"
 
   name="digestIT 2004"
 
   name="digestIT 2004"
 
   revision="1"
 
   revision="1"
 
   reboot="false"
 
   reboot="false"
   priority="5"&gt;
+
   priority="5">
  
&lt;check type="uninstall" condition="exists" path="digestIT 2004" /&gt;
+
<check type="uninstall" condition="exists" path="digestIT 2004" />
&lt;install cmd='msiexec /i "%SOFTWARE%\digestIT2004\digestIT 2004.msi" /qn'&gt;
+
<install cmd='msiexec /i "%SOFTWARE%\digestIT2004\digestIT 2004.msi" /qn' />
  &lt;exit code="0" /&gt;
+
<remove cmd='msiexec /x{5B119660-1788-11D8-8EB8-0050BF643EE7} /qn' />
&lt;/install&gt;
+
</package>
&lt;remove cmd='msiexec /x{5B119660-1788-11D8-8EB8-0050BF643EE7} /qn' /&gt;
+
</source>
&lt;/package&gt;
+
</pre>
+
  
 
The default installatation is "%PROGRAMFILES%\digestIT 2004" at least for Windows XP. I found it was installed in "C:\" when I installed it on a Windows 2000 Professional SP 4 system using wpkg, however. You can specify the installation directory in the digestIT 2004 entry in the packages.xml file by using an entry like the following in the install section:
 
The default installatation is "%PROGRAMFILES%\digestIT 2004" at least for Windows XP. I found it was installed in "C:\" when I installed it on a Windows 2000 Professional SP 4 system using wpkg, however. You can specify the installation directory in the digestIT 2004 entry in the packages.xml file by using an entry like the following in the install section:
  
<pre>
+
<source lang="xml">
&lt;install cmd='msiexec /i "%SOFTWARE%\digestIT2004\digestIT 2004.msi"
+
<install cmd='msiexec /i "%SOFTWARE%\digestIT2004\digestIT 2004.msi"
  /qn TARGETDIR="%PROGRAMFILES%\Utilities\File\digestIT 2004"'&gt;
+
  /qn TARGETDIR="%PROGRAMFILES%\Utilities\File\digestIT 2004"' />
  &lt;exit code="0" /&gt;
+
</source>
&lt;/install&gt;
+
</pre>
+
  
 
You could use the entry above to install the program into "C:\Program Files\Utilities\File\digestIT 2004". The installation process would create any of the subdirectories that did not exist.
 
You could use the entry above to install the program into "C:\Program Files\Utilities\File\digestIT 2004". The installation process would create any of the subdirectories that did not exist.

Revision as of 18:23, 8 February 2008

digestIT 2004 is a free Windows program that allows you to generate an MD5 message hash or an SHA-1 hash for a file. An MD5 message hash, aka MD5 sum, and a SHA-1 hash are unique hexadecimal numbers that allow you to determine if a file has been altered. A silent installer and uninstaller for digestIT 2004 is provided below. Once it is installed, you can right-click on a file in Windows and choose "digestIT 2004" to generate either an MD5 hash or a SHA-1 hash. The software then provides you the opportunity to copy the hash to the Windows clipboard or save it to a file.

<package
  id="digestIT2004"
  name="digestIT 2004"
  revision="1"
  reboot="false"
  priority="5">

 <check type="uninstall" condition="exists" path="digestIT 2004" />
 <install cmd='msiexec /i "%SOFTWARE%\digestIT2004\digestIT 2004.msi" /qn' />
 <remove cmd='msiexec /x{5B119660-1788-11D8-8EB8-0050BF643EE7} /qn' />
</package>

The default installatation is "%PROGRAMFILES%\digestIT 2004" at least for Windows XP. I found it was installed in "C:\" when I installed it on a Windows 2000 Professional SP 4 system using wpkg, however. You can specify the installation directory in the digestIT 2004 entry in the packages.xml file by using an entry like the following in the install section:

<install cmd='msiexec /i "%SOFTWARE%\digestIT2004\digestIT 2004.msi"
 /qn TARGETDIR="%PROGRAMFILES%\Utilities\File\digestIT 2004"' />

You could use the entry above to install the program into "C:\Program Files\Utilities\File\digestIT 2004". The installation process would create any of the subdirectories that did not exist.

Reference:

Installing and Uninstalling digestIT 2004 with WPKG