#FileHash
yeah this was a great way to close out the night. just watching youtube on my phone while a circle spins on the monitor and i constantly wonder "did i check the filehash on that windows iso?"
November 12, 2025 at 6:10 AM
#Drupal module release: filehash 3.2.2 (2025-09-28) #PHP. See https://www.drupal.org/project/filehash/releases/3.2.2
September 28, 2025 at 3:00 AM
#Drupal module release: filehash 2.1.1 (2025-09-28) #PHP. See https://www.drupal.org/project/filehash/releases/2.1.1
September 28, 2025 at 3:00 AM
#Drupal module release: filehash 3.2.1 (2025-09-27) #PHP. See https://www.drupal.org/project/filehash/releases/3.2.1
September 27, 2025 at 7:30 PM
#Drupal module release: filehash 3.2.0 (2025-09-27) #PHP. See https://www.drupal.org/project/filehash/releases/3.2.0
September 27, 2025 at 7:30 AM
#Drupal module release: filehash 2.1.0 (2025-09-27) #PHP. See https://www.drupal.org/project/filehash/releases/2.1.0
September 27, 2025 at 7:30 AM
#Drupal module release: filehash 8.x-1.12 (2025-09-27) #PHP. See https://www.drupal.org/project/filehash/releases/8.x-1.12
September 27, 2025 at 7:30 AM
#Drupal module release: filehash 3.1.0 (2025-09-19) #PHP. See https://www.drupal.org/project/filehash/releases/3.1.0
September 19, 2025 at 6:30 PM
#Drupal module release: filehash 3.0.6 (2025-09-16) #PHP. See https://www.drupal.org/project/filehash/releases/3.0.6
September 16, 2025 at 10:00 PM
Zotero ist nicht ganz was ich suche.

Zwar kann man Sammlungen erstellen und ein "Buch" kann auch in mehren Sammlungen sein, an dieses Buch gebundene Notizen sind aber dann ebenfalls in allen Sammlungen des Buches.

Und das File-Management selbst ist eher beknackt, weil ohne Filehash 🙄
August 11, 2025 at 5:53 PM
#FireDaemon Lozenge 3.1.1 is available for download from firedaemon.com/download-fir.... This version includes UI updates, #OpenSSL 3.5.1, and #xxHash. Please check the Changelog for details.

#HashGenerator #KeyGenerator #Cryptography #SecurityTools #EncryptionKeys #FileHash #FreeSoftware
Download FireDaemon Lozenge for Microsoft Windows
FireDaemon Lozenge is a free utility based on OpenSSL 3 that allows you to calculate checksums and hashes, generate self-signed certificates, and certificate signing requests
www.firedaemon.com
July 17, 2025 at 6:31 AM
Dann ist der Server-Admin schlecht 🫠

Btw: mit hash verdingseln 🤔
Den Hash sollte man beim speichern nehmen. Auf ntfs-ebene, nicht im OS selbst.

Will ja ansonsten nicht komplette Datei einlesen. — Ich hab hier ne Filehash Extension für Explorer: das dauert wirklich sehr lang.
May 7, 2025 at 6:45 AM
The good ending epilogue: after 15 hours elapsed and counting, we're in the home stretch for backing up Drive #1!

I tested a few files manually using PowerShell's `Get-FileHash` utility and I think we're in the clear!! What a relief.
May 5, 2025 at 12:08 AM
It can, via the Get-FileHash cmdlet (which even uses SHA256 by default)

I would also rather use anything other than PowerShell - but, alas, work
March 10, 2025 at 11:55 AM
Generate a single file containing multiple MD5 hashes by filename with PowerShell

"; generated on $(get-date -f u)`n`n", (gci *.flac | Get-FileHash -Algorithm MD5 | select @{n='ffp';e={"{0}:{1}" -f $($_.path -split "\\" | select -Last 1), $_.hash }}).ffp | Set-Content audio.MD5 -Fo

#PowerShell
January 9, 2025 at 12:25 AM
PowerShell to generate file hashes, to check against source web site, for today's new files only. Start powershell, or pwsh.exe for v7, by typing it into explorer nav bar in the folder you want it to run

ls|? CreationTime -ge ([datetime]::Today)|Get-FileHash

ls = dir=get-child-item
?=where-object
December 4, 2024 at 9:01 AM
Powershell puzzle of the night: why is pwsh interferring with powershell's ability to find Get-FileHash?

github.com/PowerShell/P...
Pwsh is interferring with PowerShell ability to find Get-FileHash · PowerShell PowerShell · Discussion #24630
Recently run into a problem with using Get-FileHash as it seems to be unavailable in some contexts. After a lot of experimentation it seems that when pwsh indirectly launches powershell it interfer...
github.com
December 2, 2024 at 2:40 AM
Get-filehash is still the best way
December 1, 2024 at 12:23 AM
> Get-FileHash .\DealVent2024.xlsx -Algorithm SHA256

2B99DEC983B1CCF03BA78F1F620E3B627DDB1004DDB7DFEF5D22F2C5BBAB0DA8
November 28, 2024 at 4:23 PM
powershell does have a get-filehash command IIRC
November 26, 2024 at 11:15 AM
なおcksumとsum-bsdとsum-sysv以外は、ハッシュ値算出はPowerShellのGet-Filehashコマンドレットにさせてるだけ
June 27, 2024 at 11:23 PM
Updates on CRAN: bayesianVARs (0.1.3), filehash (2.4-6), FRESA.CAD (3.4.8), gamsel (1.8-3), gglgbtq (0.2.0), ggplot2.utils (0.3.2), pcutils (0.2.6), tsModel (0.6-2)
June 26, 2024 at 2:00 AM
CRAN updates: bayesianVARs filehash FRESA.CAD ggplot2.utils pcutils tsModel #rstats
June 25, 2024 at 10:02 PM
I'm all for helping, but this is a lot "antiranting".

PowerShell prefers types and real objects, because they'll generally be faster than .exes.

CRC is fairly old. Your exe is internal.

Want to hash a big file? Get-FileHash.

You seem to be barking up the wrong tree and mad at the lang.
October 14, 2023 at 7:37 PM