Downloads:
128,711
Downloads of v 6.0.0.3402:
37,011
Last Update:
04 Feb 2022
Package Maintainer(s):
Software Author(s):
- Implbits Software LLC
Tags:
hashtab checksum hash md5 sha1 sha2 ripemd haval whirlpool sha256 file embedded- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
HashTab
- 1
- 2
- 3
6.0.0.3402 | Updated: 04 Feb 2022
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
128,711
Downloads of v 6.0.0.3402:
37,011
Maintainer(s):
Software Author(s):
- Implbits Software LLC
HashTab 6.0.0.3402
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Implbits Software LLC. The inclusion of Implbits Software LLC trademark(s), if any, upon this webpage is solely to identify Implbits Software LLC goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install HashTab, run the following command from the command line or from PowerShell:
To upgrade HashTab, run the following command from the command line or from PowerShell:
To uninstall HashTab, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download hashtab --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade hashtab -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade hashtab -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install hashtab
win_chocolatey:
name: hashtab
version: '6.0.0.3402'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'hashtab' do
action :install
source 'INTERNAL REPO URL'
version '6.0.0.3402'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller hashtab
{
Name = "hashtab"
Version = "6.0.0.3402"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'hashtab':
ensure => '6.0.0.3402',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 21 Oct 2024.
HashTab provides OS extensions to calculate file hashes.
To use, just right-click on any file and select Properties
. The new tab called “File Hashes” is Hashtab!
Features
- Calculate and display hash values from over two dozen popular hashing algorithms like MD5, SHA1, SHA2, RipeMD, HAVAL and Whirlpool. Now, SHA3 too!
- The hash comparison tool supports drag and drop, copy and paste and even has a built-in browse option.
- Translated into 27 languages and counting, Hashtab has been downloaded millions of times from over 200 different countries.
- The perfect way to validate the integrity of a file download. Or use it to quickly compare local files and compute hashes for use in other programs.
- Purposely designed to feel like a native feature of Windows. Simply select any file, go to properties, and use the new “File Hashes” tab.
- Save hashes to checksum files
Discontinued
Implbits Software, LLC is going out of business. "Soon", a release of Hashtab as an Open Source project will be put on Github. Until then, this Chocolatey package may be the only place to get the verifiable installer.
$ErrorActionPreference = 'Stop'
$Bits = Get-OSArchitectureWidth
[array]$key = Get-UninstallRegistryKey -SoftwareName "$env:ChocolateyPackageName*"
if ($key.Count -eq 1) {
$Folder = Split-Path $key[0].UninstallString
$DLL = Get-ChildItem $Folder -Filter "*.dll" | Where-Object {$key[0].Name -match "$Bits-[0-9.]+\.dll"}
try {
& $env:SystemRoot\System32\regsvr32.exe /u /s $DLL.FullName
if ($Bits -eq 64) {
& $env:SystemRoot\SysWoW64\regsvr32.exe /u /s $($DLL.FullName -replace "Hashtab64-","HashTab32-")
}
} catch {Throw "HashTab could not be stopped to uninstall. Try rebooting first."}
if (Get-Process Explorer -Module | Where-Object {$_.ModuleName -match 'hashtab'}) {
$locked = $true
Write-Host "Waiting (up to 20 seconds) for in-use $env:ChocolateyPackageName libraries to be released."
Write-Host "Please be patient."
$seconds = 0
} else { $locked = $false }
While ($locked) {
if ($seconds -le 20) {
Start-Sleep -Seconds 1
$seconds++
if (-not (Get-Process Explorer -Module | Where-Object {$_.ModuleName -match 'hashtab'})) {
$locked = $false
Write-Host "Libraries unlocked after $seconds seconds."
}
} else {
$locked = $false
Write-Warning "Libraries not unlocking. Uninstall/upgrade may fail."
Write-Warning "Make sure no file property windows are open."
}
}
}
md5: 62130C39647BC30A03F654459E9FEE2D | sha1: 6AF44F2FAD30D5DF85CEEE01CED80085F7C67DC0 | sha256: 85CAA9EA0BB91DA273E4D02B5F0A1C1736CC7314C4F2C839882339CC69DDAF10 | sha512: 39AD192D40C9DC6DA974F8F1C4E6955022C1A31670D4C30E5C819CF11C915AC50EBF8975807810BA08398804669FCFE5A0623B33021717AC37CDF37AA82ABCC4
From: Installer License Agreement dialog
LICENSE
EVALUATION AND NON-COMMERCIAL END USER LICENSE AGREEMENT
IMPORTANT! BE SURE TO CAREFULLY READ AND UNDERSTAND ALL OF THE RIGHTS AND RESTRICTIONS SET FORTH IN THIS END-USER LICENSE AGREEMENT ("EULA"). YOU WILL BE ASKED TO REVIEW AND EITHER ACCEPT OR NOT ACCEPT THE TERMS OF THE EULA. YOU ARE NOT AUTHORIZED TO USE THIS SOFTWARE UNLESS AND UNTIL YOU ACCEPT THE TERMS OF THIS EULA.
This EULA is a binding legal agreement between you and Implbits Software, LLC (hereinafter "Licensor") for the materials accompanying this EULA, including the accompanying computer software, associated media, printed materials and any "online" or electronic documentation (hereinafter the "Software"). By installing the Software, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install or attempt to use the Software.
1. Grant of License
The Software is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The Software is licensed, not sold. This EULA grants you the following rights:
A. You may install, use, access, display and run the Software, on a multiple computers, workstations or terminals ("Computers")
B. Your license rights under this EULA are non-exclusive. All rights not expressly granted herein are reserved by Licensor.
C. You may redistribute free unmodified copies of the Software. Software redistribution must include this EULA.
E. You may not sell the Software to any third party without Licensor's prior express written consent.
2. Price and Payment
There is no license fee if the Software is installed on your personal Computers or if the software is installed on Computers owned and operated by a non-commercial, charitable, or chartered educational organization. After a 30 day evaluation, all other users and organizations must purchas a license key or uninstall and discontinue using the Software. For more information on obtaining a commercial license key, please visit http://implbits.com or contact [email protected].
3. Support Services
Licensor may provide you with support services related to the Software ("Support Services"), at its discretion. Use of Support Services, if any, is governed by Licensor's policies and programs described in any user’s manual, in online documentation, and/or in other Licensor-provided materials. Any supplemental Software code provided to you as a part of Support Services will be considered part of the Software and subject to the terms of this EULA. With respect to technical information you provide to Licensor as part of the Support Services, Licensor may use such information for its business purposes, including for product support and development. Licensor will not utilize such technical information in a form that personally identifies you except to the extent necessary to provide you with support.
4. Replacement, Modification and/or Upgrades
Licensor may, from time to time, and for a fee, replace, modify or upgrade the Software. When accepted by you, any such replacement or modified Software code or upgrade to the Software will be considered part of the Software and subject to the terms of this EULA (unless this EULA is superceded by a further EULA accompanying such replacement or modified version of or upgrade to the Software).
5. Termination
You may terminate this EULA at any time by destroying all your copies of the Software. Your license to the Software automatically terminates if you fail to comply with the terms of this agreement. Upon termination, you are required to remove the Software from your computer and destroy any copies of the Software in your possession.
6. Copyright
A. All title and copyrights in and to the Software (including but not limited to any images, photographs, animations, video, audio, music and text incorporated into the Software), the accompanying printed materials, and any copies of the Software, are owned by Licensor or its suppliers. This EULA grants you no rights to use such content. If this Software contains documentation that is provided only in electronic form, you may print one copy of such electronic documentation. Except for any copies of this EULA, you may not copy the printed materials accompanying the Software.
B. You may not reverse engineer, de-compile, disassemble, alter, duplicate, modify, rent, lease, loan, sublicense, make copies of, create derivative works from the Software in whole or part.
7. Export Restrictions
You may not export, ship, transmit or re-export software in violation of any applicable law or regulation including but not limited to Export Administration Regulations issued by the U. S. Department of Commerce.
8. Disclaimer of Warranties
LICENSOR AND ITS SUPPLIERS PROVIDE THE SOFTWARE "AS IS" AND WITH ALL FAULTS, AND HEREBY DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT LIMITED TO ANY (IF ANY) IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE OR LACK OF WORKMANLIKE EFFORT. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, OF QUIET ENJOYMENT, OR OF NONINFRINGEMENT. THE ENTIRE RISK ARISING OUT OF THE USE OR PERFORMANCE OF THE SOFTWARE IS WITH YOU.
9. Limitation of Damages
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR OR ITS SUPPLIERS BE LIABLE FOR ANY CONSEQUENTIAL, INCIDENTAL, DIRECT, INDIRECT, SPECIAL, PUNITIVE OR OTHER DAMAGES WHATSOEVER ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY TO USE THE SOFTWARE AND WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, EVEN IF LICENSOR OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THIS EXCLUSION OF DAMAGES WILL BE EFFECTIVE EVEN IF ANY REMEDY FAILS OF ITS ESSENTIAL PURPOSE.
10. Arbitration
Any dispute arising under this EULA will be subject to binding arbitration by a single Arbitrator with the American Arbitration Association (AAA), in accordance with its relevant industry rules, if any. The parties agree that this EULA will be governed by and construed and interpreted in accordance with the laws of the State of Utah. The arbitration will be held in Utah. The Arbitrator will have the authority to grant injunctive relief and specific performance to enforce the terms of this EULA. Judgment on any award rendered by the Arbitrator may be entered in any Court of competent jurisdiction.
11. Severability
If any term of this EULA is found to be unenforceable or contrary to law, it will be modified to the least extent necessary to make it enforceable, and the remaining portions of this Agreement will remain in full force and effect.
12. No Waiver
No waiver of any right under this EULA will be deemed effective unless contained in writing signed by a duly authorized representative of the party against whom the waiver is to be asserted, and no waiver of any past or present right arising from any breach or failure to perform will be deemed to be a waiver of any future rights arising out of this EULA.
13. Entire Agreement
This EULA constitutes the entire agreement between the parties with respect to its subject matter, and supersedes all prior agreements, proposals, negotiations, representations or communications relating to the subject matter. Both parties acknowledge that they have not been induced to enter into this EULA by any representations or promises not specifically stated herein.
By clicking the "I accept" button below, you agree to the terms of this EULA.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Implbits Software, LLC (the author of Hashtab) is out of business. The
website (and download) are no longer online. The SHA256 checksum/hash
of the installer embedded in this package can be verified against the
hash as shown on the last snapshot of the website available on the
Internet Archive "Wayback Machine":
https://web.archive.org/web/20220118193833/http://implbits.com/
Former Direct Download:
Version : 6.0.0.34
URL : http://implbits.com/products/hashtab/./HashTab_v6.0.0.34_Setup.exe
SHA256 : 85CAA9EA0BB91DA273E4D02B5F0A1C1736CC7314C4F2C839882339CC69DDAF10
Log in or click on link to see number of positives.
- HashTab_v6.0.0.34_Setup.exe (85caa9ea0bb9) - ## / 65
- hashtab.6.0.0.3402.nupkg (d109796f7514) - ## / 60
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
HashTab 6.0.0.3402 | 37011 | Friday, February 4, 2022 | Approved | |
HashTab 6.0.0.3401 | 19787 | Sunday, April 8, 2018 | Approved | |
HashTab 6.0.0.34 | 60463 | Monday, July 17, 2017 | Approved | |
HashTab 6.0.0.28 | 8991 | Wednesday, November 9, 2016 | Approved | |
HashTab 5.2.0.14 | 2459 | Thursday, August 13, 2015 | Approved |
Copyright © 2016 Implbits Software
This package has no dependencies.
Ground Rules:
- This discussion is only about HashTab and the HashTab package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or HashTab, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.