Just a question, are you doing the capture on a VM? That's what I was using and using ImageX.
In my Capture template I do the following:
1. Map a drive to where the imageX.exe is located
2. Map a drive to where the image is going to be created
3. and then Capture Image.
The command-line I used was:
/boot /compress fast /capture D: \\servername\directory\wimnamefile://\\plnapvmmde01\wim\wim\win7_64_102313.wim.wim "Drive C"
In my Deploy template I do the following:
1. Remove All Volume Assignments - diskpart.exe -s x:\ldclient\rmvol.txt
2. Map drive to .wim location (J:)
3. Run DrivePrep Script - diskpart.exe -s "J:\64BitTools\DrivePrep.txt"
4. Enable 8dot3name - format c: /fs:ntfs /q /s:enable /y
5. Deploy Image (command line)
/apply \\servername\directory\wimname.wim 1 C:
Post-OS installation section:
6. Run BCDBoot to create boot files in boot partition - bcdboot.exe C:\Windows /s S:
Hope I explained that so it's understandable!! :-)
Thanks!