Fix MDT 8443 Missing Capture Screen
- By : Dom
- Category : Deployment
- Tags: MDT

It is a known bug n MDT 8443 that the capture screen is missing. To correct the bug you need to edit the ZTIUtility.vbs file.
Edit the ZTIUtility.vbs File
Look in the scripts folder of your deployment share for the ZTIUtility.vbs file.
Deploymentshare \scripts\ZTIUtility.vbs.
Make a copy of this file and place it somewhere and name it ZTIUlilityOriginal.vbs for backup purposes.
Edit the ZTIUtility file in the scripts folder in step 2.
Fix the code
To fix the code you will need to search for a particular area in the file.
Search for the following:
If (oTS.SelectSingleNode(“//step[@type=’BDD_InstallOS’]”) is nothing) and (oTS.SelectSingleNode(“//step[@type=’BDD_UpgradeOS’]”) is nothing) then
change it to this
If (oTS.SelectSingleNode(“//step[@type=’BDD_InstallOS’ and @disable=’false’]”) is nothing) and (oTS.SelectSingleNode(“//step[@type=’BDD_UpgradeOS’ and @disable=’false’]”) is nothing) then
Save the File
Save the file.
No Comments