Downloads:
287,250
Downloads of v 2.5.0.0:
102,198
Last Update:
15 Dec 2022
Package Maintainer(s):
Software Author(s):
- Maël Hörz
Tags:
hxd editor hex file adminHxD - Hex Editor and Disk Editor (Install)
- 1
- 2
- 3
2.5.0.0 | Updated: 15 Dec 2022
Downloads:
287,250
Downloads of v 2.5.0.0:
102,198
Software Author(s):
- Maël Hörz
HxD - Hex Editor and Disk Editor (Install) 2.5.0.0
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Maël Hörz. The inclusion of Maël Hörz trademark(s), if any, upon this webpage is solely to identify Maël Hörz 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 HxD - Hex Editor and Disk Editor (Install), run the following command from the command line or from PowerShell:
To upgrade HxD - Hex Editor and Disk Editor (Install), run the following command from the command line or from PowerShell:
To uninstall HxD - Hex Editor and Disk Editor (Install), 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 hxd --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 hxd -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 hxd -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 hxd
win_chocolatey:
name: hxd
version: '2.5.0.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'hxd' do
action :install
source 'INTERNAL REPO URL'
version '2.5.0.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller hxd
{
Name = "hxd"
Version = "2.5.0.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'hxd':
ensure => '2.5.0.0',
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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 15 Dec 2022.
HxD is a carefully designed and fast hex editor which, additionally to raw disk editing and modifying of main memory (RAM), handles files of any size.
The easy to use interface offers features such as searching and replacing, exporting, checksums/digests, insertion of byte patterns, a file shredder, concatenation or splitting of files, statistics and much more.
Editing works like in a text editor with a focus on a simple and task-oriented operation, as such functions were streamlined to hide differences that are purely technical.
For example, drives and memory are presented similar to a file and are shown as a whole, in contrast to a sector/region-limited view that cuts off data which potentially belongs together. Drives and memory can be edited the same way as a regular file including support for undo. In addition memory-sections define a foldable region and inaccessible sections are hidden by default.
Furthermore a lot of effort was put into making operations fast and efficient, instead of forcing you to use specialized functions for technical reasons or arbitrarily limiting file sizes. This includes a responsive interface and progress indicators for lengthy operations.
Package Specifics
All package versions will download and install the latest HxD version since the software vendor only provides a generic URI without version information.
$ErrorActionPreference = 'Stop'
$packageName = $env:chocolateyPackageName
$softwareName = 'HxD Hex Editor*'
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName
if ($key.Count -eq 1) {
$key | ForEach-Object {
$packageArgs = @{
packageName = $packageName
fileType = 'exe'
silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'
validExitCodes = @(0)
file = "$($_.UninstallString.Trim('"'))"
softwareName = $softwareName
}
Uninstall-ChocolateyPackage @packageArgs
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName may have been uninstalled by other means"
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) uninstaller registry keys found"
Write-Warning "Please inform the package maintainer that the following keys were matched:"
$key | ForEach-Object { Write-Warning "- $($_.DisplayName): $($_.InstallLocation)" }
Write-Error "$packageName uninstallation failed"
}
Log in or click on link to see number of positives.
- HxD.2.5.0.0.nupkg (14628453345c) - ## / 65
- HxDSetup.zip (5065041c7b03) - ## / 67
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 |
---|---|---|---|---|
HxD - Hex Editor and Disk Editor (Install) 2.5.0.0 | 102198 | Thursday, December 15, 2022 | Approved | |
HxD - Hex Editor and Disk Editor (Install) 2.4.0.0 | 115753 | Wednesday, March 18, 2020 | Approved | |
HxD - Hex Editor and Disk Editor (Install) 2.3.0.0 | 21799 | Sunday, July 7, 2019 | Approved | |
HxD - Hex Editor and Disk Editor (Install) 2.2.1.0 | 16496 | Monday, February 18, 2019 | Approved | |
HxD - Hex Editor and Disk Editor (Install) 2.2.0.0 | 2018 | Thursday, January 17, 2019 | Approved | |
HxD - Hex Editor and Disk Editor (Install) 2.1.0.0 | 3732 | Thursday, September 27, 2018 | Approved | |
HxD - Hex Editor and Disk Editor (Install) 2.0.0.0 | 2566 | Friday, August 17, 2018 | Approved | |
HxD - Hex Editor and Disk Editor (Install) 2.0-rc | 578 | Sunday, November 5, 2017 | Exempted | |
HxD - Hex Editor and Disk Editor (Install) 1.7.7.20170419 | 10973 | Wednesday, April 19, 2017 | Approved | |
HxD - Hex Editor and Disk Editor (Install) 1.7.7.020161002 | 2343 | Sunday, October 2, 2016 | Approved | |
HxD - Hex Editor and Disk Editor (Install) 1.7.7.020160904 | 1082 | Monday, September 5, 2016 | Approved | |
HxD - Hex Editor and Disk Editor (Install) 1.7.7.020160827 | 908 | Saturday, August 27, 2016 | Approved | |
HxD - Hex Editor and Disk Editor (Install) 1.7.7.020150909 | 2159 | Wednesday, September 9, 2015 | Approved | |
HxD - Hex Editor and Disk Editor 1.7.7.0 | 4514 | Saturday, September 15, 2012 | Approved |
Copyright © 2003-2021 Maël Hörz
This package has no dependencies.
Ground Rules:
- This discussion is only about HxD - Hex Editor and Disk Editor (Install) and the HxD - Hex Editor and Disk Editor (Install) 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 HxD - Hex Editor and Disk Editor (Install), 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.