Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@julioz
Created April 26, 2019 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save julioz/7398ee4a2dc4cbb89642cb67597d8a20 to your computer and use it in GitHub Desktop.
Save julioz/7398ee4a2dc4cbb89642cb67597d8a20 to your computer and use it in GitHub Desktop.
Decrypt BitLocker disk on Mac OS (tested on High Sierra)
diskutil list # find the parition ID marked as Windows NTFS disk
# if ID is disk3s1, then, input disk password after running
sudo dislocker -V /dev/disk3s1 -u -- externalhdd/
# this will output partition reference
sudo hdiutil attach -imagekey diskimage-class=CRawDiskImage -nomount externalhdd/dislocker-file
# Create disk directory
sudo mkdir /Volumes/ExternalHDD
# if partition reference is /dev/disk4, then
sudo mount -t ntfs /dev/disk4 /Volumes/ExternalHDD/
# Disk should be accessible via Finder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment