Powershell From ColorNote to Joplin: A PowerShell Script to Export My Notes I've used the ColorNote app on Android for many years, but I recently decided it was time to move to another notes app. I quickly hit a wall: there was no easy way to move all my notes. I could share them one by one and copy them over, but
Windows Getting a file hash in powershell To get the MD5 hash of a file run the following command in powershell: get-filehash -algorithm md5 <filename> Similarly, to get the SHA1 hash run: get-filehash -algorithm sha1 <filename> If you just need the hash value output: (get-filehash -algorithm md5 <filename>).Hash