Created
April 26, 2019 16:15
-
-
Save julioz/7398ee4a2dc4cbb89642cb67597d8a20 to your computer and use it in GitHub Desktop.
Decrypt BitLocker disk on Mac OS (tested on High Sierra)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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