Currently I am evaluating the use of WDS to deploy images that contain a recovery partition. ATM I am imaging a test machine from which I will be testing out capturing methods, so I wrote up this quick script (yes literally wrote it on a pad of paper) for how I can structure my diskpart scripting during the deploy phase. Please review the following and LMK if you see anything I should revise or be aware of. The Volume IDs are the real ones I need to use.
Pre-image Diskpart script:
select disk 0
clean
create part pri size='62220' id='0x07'
select part 1
active
assign letter='c:'
format fs='ntfs' quick
create part ext size='14096' id='0x12'
select part 2
active
assign letter=d:'
format fs='fat32' quick
Post-image diskpart script:
select disk 0
select part 2
active
attributes set hidden
attributes set nodefaultdriveletter