Creating a Fuji/WinFE external drive
This post walks through how to build a combined Fuji Cartridge and WinFE drive, giving you a single setup that can handle forensic imaging for both macOS and Windows systems. Having everything on one device makes it easier to switch between platforms without needing multiple drives or tools.
The focus here is on preparing the external drive, setting up the partitions, and getting the Fuji Cartridge and WinFE in place. By the end, you’ll have a flexible, portable solution that can be used across a variety of imaging scenarios.
Building the WinFE (Windows Forensic Environment) itself isn’t covered in this post. If you need help with that piece, you can follow the instructions available at https://www.winfe.net/build .
Bill of Materials (BOM)
Fuji: Forensic Unattended Juicy Imaging
WinFE: Windows Forensic Environment
balenaEtcher
Preparing a Fuji Cartridge drive
Begin with an empty external drive; in this example, a 2 TB device is used.
An elevated Command Line Interface (CLI) session should be opened. From the prompt, run diskpart and press Enter.
Once the DiskPart utility launches, the prompt will appear as follows:
DISKPART>
Execute the following commands in sequence:
Type: List Disk <enter>
Type: Select Disk X (X being your USB Hard Disk Drive) <Enter>
Type: Clean <Enter>
Type: Create Partition Primary Size = 256 <Enter>
Type: Exit <Enter>
At this stage, the disk layout should appear as follows:
Next, launch balenaEtcher and select Flash from file.
Browse to and select the FujiApp-1.2.0.dmg image file.
Next, Select target.
Choose the appropriate disk and confirm the selection.
Click Flash! to begin the imaging process.
When prompted, confirm by selecting Yes, I’m sure.
Upon successful completion, a confirmation screen will appear. Close the application.
The disk should now reflect the updated structure:
Preparing a WinFE bootable USB Hard Disk Drive.
Open another elevated CLI session and launch DiskPart again:
DISKPART>
At the DISKPART> prompt, execute the following:
Type: List Disk <enter>
Type: Select Disk X (X being your USB Hard Disk Drive) <Enter>
Create an additional partition:
Type: Create Partition Primary Size = 8000 <Enter>
Format the partition:
Type: Format FS=FAT32 Quick <Enter>
Assign a drive letter:
Type: Assign <Enter>
Create a final partition using the remaining space:
Type: Create Partition Primary <Enter>
Format this partition:
Type: Format FS=exFAT Quick <Enter>
Assign a drive letter:
Type: Assign <Enter>
Exit DiskPart:
Type: Exit <Enter>
The disk layout should now appear as follows:
Using File Explorer, right-click the FAT32 partition, select Properties, and assign the volume label WinFE, then click OK.
Next, right-click the exFAT partition, select Properties, and assign the volume label Fuji, then click OK.
The final disk configuration should resemble the following:
Navigate to the WinFE framework package. *Note: Building WinFE is outside the scope of this post"
F:\IntelWinFE\USB\x86-x64\
There should be a bunch of files and folders within this location (boot, efi, sources ....).
Copy all of these files and folders to the root of your newly prepared WINFE volume.
Return to the CLI, and type the following, do not include the trailing '' as part of the Hard Disk Drive Letter:
bootsect.exe /nt60 <FAT32 volume letter>: /force /mbr
The following is normal in the output:
Bootcode is only updated on MBR partitioned disks. A different partitioning scheme is used on this disk.
Optional Fuji Live
If the environment will be used with a live macOS system, copy the universal Fuji DMG file to the Fuji volume.



























