diskpart.exe
    list disk                 'This will list your disk drives, 
                              ' note the number of your USB drive
    select disk #             'Replace # here with the number from above
    clean                     'This removes all partitions
    create partition primary
    select partition 1
    active
    format fs=NTFS QUICK
    assign                    'This assigns it a drive letter
    exit