I wrote a program to dump the Primary Volume Descriptor from a .bin file in IsoBuster format. Can be helpful to quickly dump the PVD to a file without needing to open IsoBuster, or used programmatically.
https://gist.github.com/anonymous/2a308 … 0b829a9c92
I have created a small batch file "PVD_Dumper.bat" which I drag and drop a .bin file to and it dumps the PVD to a text file in the same directory as the .bin file. This is the batch file:
"%~dp0\PVD_Dumper.py" %1 > "%~dp1\%~n1_PVD.txt"
I attached both the batch file and python file to this post for easy download.
Requirements: Python 3.x
PVD_Dumper.py