Customizing Boot Disk

Note:

To customize Boot Disk image file you need basic skills in Command Line Scripts writing.

Example below shows how to customize a Boot Disk (WinPE image) containing KillDisk to change a default Erase Method and to add a Company Logo.

  1. Create settings file

    Create custom KILLDISK.INI file using documented parameters (Application Settings).

    Here is an example of an INI file which uses US DoD 5220.22-M (ECE) erase method with 10% verification, stores logs, reports and certificates to X:\\ location (X: virtual drive is the only known drive with guaranteed letter when boot disks starts), specifies Company Name and Logo Image file:

    [General]
    killMethod=3
    killVerification=true
    killVerificationPercent=10
    logName=X:\\killdisk.log
    showCert=true
    saveCert=true
    certPath=X:\\
    showLogo=true
    logoFile=X:\\MyCompanyLogo.png
    companyName=LSoft.NET
                        
  2. Create start up script

    Create KillDisk start up script which uses Command Line parameters.

    Here is an example of an CMD file which enumerates all drive letters, searches KILLDISK.INI file in User_Files folder, defines Drive Letter where Settings and Logo stored, copies Company Logo image file to known location and starts KillDisk with custom KILLDISK.INI file:

    @ECHO OFF
    FOR %%i IN (c d e f g h i j k l m n o p q r s t u v w y z) DO (IF EXIST %%i:\user_files\KILLDISK.INI ( SET CDROM=%%i:&& GOTO END ))
    :END
    copy %CDROM%\user_files\MyCompanyLogo.png X:\
    KillDisk.exe -ip="%CDROM%\user_files" 
                        
  3. Configure Boot Disk start up settings

    Start Active@ Boot Disk Creator to configure Boot Disk start up settings:

    Start Active@ Boot Disk Creator
    Click Windows Start menu and launch Active@ Boot Disk Creator from KillDisk folder.
    Select a Target
    Select a media for Boot Disk to be created on (CD/DVD/BD ROM, ISO image or USB drive) and click Next.
    Select Windows-based Boot Disk
    Make sure Windows-based Boot Disk check box is selected on a Target tab.
    Disable Default Application Auto-start
    Switch to System Boot Settings tab and select OFF for Default Application Start option.
    Add KILLDISK.INI file and Company Logo
    Switch to User's Files tab and click Add File(s)button to add your custom settings file KILLDISK.INI and Company Logo Image file (JPG, PNG, BMP formats). After files being added, application should look like:
    Add Custom Start up Script
    Switch to Startup Scripts tab and click Add File(s)button to add your custom script (CMD file) where you launch KillDisk with custom Command Line parameters. After file being added, application should look like:
    Click Next button to complete Boot Disk creation.
    Finalize Boot Disk
    Click Create button to burn CD/DVD/BD, or store Boot Disk to ISO file, or write Boot Disk to USB disk, depending on Target option selected on the first step.