πST400/LK100/MINI PRO Password Reset
Password reset and data initialization guide for ST400, LK100, and MINI PRO models.
Last updated
Password reset and data initialization guide for ST400, LK100, and MINI PRO models.
These models share the same keypad interface and menu structure. If you have forgotten your password, use one of the three methods below.
Total Data Erasure All methods listed below will permanently delete all data on the drive. Recovery is impossible. Proceed only if you have a backup or do not need the existing data.
This is the simplest method and does not require disassembling the device or manual keypad cycles.
Connect your IODD to a Windows PC.
Launch the IODD Admin Manager application.
Navigate to the Emergency tab.
Follow the prompts to complete the Confirmation Procedure (Click counting).
Execute Erase All Data.
This will wipe the password, encryption keys, and all stored data, returning the device to its factory state.
Supported Models: ST400 / LK100 / MINI PRO
If you don't have access to a PC with Admin Manager, you can force a hardware reset via the keypad.
Power on the device to the Password Input Screen.
Enter the sequence: 1 β 2 β 3 β 4 β 5 β 6 β 7 β 8 β 9 β 0.
Repeat this entire 10-digit cycle 15 times.
If you make a single mistake during the 15 cycles, you must restart from the very beginning.
Success: When the screen displays "1st Partition" (1st Partition) or "No Supported Partition" (No Supported Partition), the encryption has been successfully wiped.
This method bypasses the keypad cycles by connecting the internal drive directly to a PC.
Disassemble: Open the case and remove the internal HDD/SSD.
Connect: Plug the drive into a PC via a SATA-to-USB adapter or internal SATA port.
The "GPT-First" Principle:
Encryption metadata is stored in the GPT area. You must initialize the disk as GPT first to clear the lock.
After the GPT wipe, you can re-initialize it to your preferred style (MBR or GPT).
Format: Create at least one partition and format it as NTFS or exFAT.
Tools Needed
PC + Software
None
Tools + SATA Adapter
Effort
Very Low
High (150+ presses)
Medium (Disassembly)
Best For
Most Users
No PC Access
Advanced Users
Post-Reset Setup After the wipe, the device is in a factory-new state. You must set a new password and perform Drive Initialization before use.
Safe Removal To prevent filesystem corruption (ASSERT errors) in the future, always use the OS Safely Remove Hardware function.
Last updated
# Run Command Prompt as Administrator
$ diskpart
$ list disk
$ select disk N # Check the size to select the correct IODD disk!
$ clean
# Force wipe encryption by converting to GPT
$ convert gpt
# Optional: Re-convert to MBR if needed
$ convert mbr
$ create partition primary
$ format fs=ntfs quick # or fs=exfat quick
$ exit