Has anyone successfully captured Windows 10 version 1607

Our environment is as follows -
MDT 2013 and MDT 2013 Update 1
WADK 10
MDT Bundle Creator 3.9
OS resource files and Win 10 reference image generated from SW_DVD5_WIN_ENT_10_1607_64BIT_English_MLF_X21-07102.ISO

The Windows 10 reference image was built on a VM and a laptop. Sysprep was halted during the Bigfix capture of the image on both the VM and laptop due to the error below. Checking to see if anyone else has an environment similar to ours and has successfully captured Windows 10 version 1607 before I open a case with Microsoft.

C:\windows\system32\sysprep\panther\setuperr.log

2016-09-09 12:47:16, Error SYSPRP setupdigetclassdevs failed with error 0
2016-09-09 12:47:20, Error SYSPRP ClipCleanUpState failed at stage Open with hr=c0020036
2016-09-09 12:47:20, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing ‘ClipCleanUpState’ from C:\Windows\System32\clipc.dll; dwRet = 0xc0020036
2016-09-09 12:47:20, Error SYSPRP ActionPlatform::ExecuteAction: Error in executing action; dwRet = 0xc0020036
2016-09-09 12:47:20, Error SYSPRP ActionPlatform::ExecuteActionList: Error in execute actions; dwRet = 0xc0020036
2016-09-09 12:47:20, Error SYSPRP SysprepSession::Execute: Error in executing actions from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml; dwRet = 0xc0020036
2016-09-09 12:47:20, Error SYSPRP RunPlatformActions:Failed while executing SysprepSession actions; dwRet = 0xc0020036
2016-09-09 12:47:20, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0xc0020036
2016-09-09 12:47:20, Error [0x0f00a8] SYSPRP WinMain:Hit failure while processing sysprep generalize internal providers; hr = 0xc0020036

The issue was resolved by identifying and removing the Out of the Box AppxPackages for all users.

#Remove Bingweather
Get-AppxPackage *bingweather* -AllUsers | Remove-AppxPackage
# Remove Zune
Get-AppxPackage *zune* -AllUsers | Remove-AppxPackage
#Remove Xbox App
Get-AppxPackage *xbox* -AllUsers | Remove-AppxPackage

Etc

Hi Don, thanks for reporting and sorry for not having answered before.
We captured this kinf of failure and updated our online doc

http://www.ibm.com/support/knowledgecenter/SS63NW_9.5.0/com.ibm.bigfix.lifecycle.doc/Lifecycle/OSD_Users_Guide/c_capture_images.html

Capture of a Windows 10 image fails (sysprep error) if the system has Windows Store-based applications installed. The error log displays which applications are causing the problem. You should uninstall these applications before you start the capture process. For more information about this restriction, check the Microsoft support documentation.

Thanks
Alessandro