I had to capture a BIOS image and a UEFI image from a VM ( gold images ).
Then its down to the partitioning - i have custom diskpart scripts running this configuration. ( windows 7 though ). Running that and i have no issues.
My method which i am trying to get documented for the community automatically chooses BIOS or UEFI images and partitions accordingly. Its not using the LANDesk GUI options but custom powershell code. However Diskpart is Diskpart so the below is what i use for UEFI.
SELECT DISK #
CLEAN
CONVERT GPT
CREATE PARTITION EFI size=100
FORMAT LABEL="System Reserved"
ASSIGN LETTER=S:
FORMAT QUICK FS=FAT32
CREATE PARTITION MSR SIZE=128
CREATE PART PRI
ASSIGN LETTER=C:
FORMAT FS=NTFS LABEL="OS" QUICK
EXIT