What am I doing wrong?
#1
Code:
./hashcat64.bin -m6223 -a3 vol.tc -i --increment-min 5 --increment-max 9 -1 custom.hcchr -2 custom1.hcchr  ?u?1?1?1?2?2?2?2?2

I want the first letter to be a capital A-Z. When I run this the first character includeds lower case and numbers. Am I doing something wrong?

Thanks.
#2
I'm not able to reproduce this.

Code:
$ hashcat -a 3 --stdout -i --increment-min 5 --increment-max 9 -1 custom.hcchr -2 custom1.hcchr  ?u?1?1?1?2?2?2?2?2 | head -100000 | cut -b1 | sort -u | xargs
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
~