After booting to WDS and starting the Lite Touch boot WIM on the client, as soon as it gets past the initial screen (select keyboard) it fails:
A VBScript Runtime Error has occuired:
Error: 438 = object doesnt support this property or method
VBscript code:
-------------
'//
*******************************************
******************88
'//
'// copyright (c) microsoft corporation. All rights reserved.
'//
'// microsoft deployment toolkit solution accelerator
'//
'// file: deploywiz_installation.vbs
'//
'//version 6.3.8330.1000
'//
'// purpose: main client deployment wizard initialisation routines
'//
'//
*****************************
****************8
option explicit
Dim iVerMajor
outility.GetMajorVersion(property("imagebuild"))
iVerMajor = oUtility.VersionMajor
Function InitialiseProductKey
'figure out how to initialise the pane.
If property ("productkey") <> "" or iVerMajor < 6 then
locproductkey.disabled = false
locproductkey.value = pro
All occurred since i upgraded from MDT 2012 beta 1 to 2013 update 1 and then 2...
Windows Server 2008Windows 7Windows 10SCCM
Last Comment
CHI-LTD
8/22/2022 - Mon
David Johnson, CD
from my deploywiz_productkeyVista.vbs
If Property("ProductKey") <> "" or iVerMajor < 6 then locProductKey.disabled = false locProductKey.value = Property("ProductKey") ProductKey.value = locProductKey.value If iVerMajor > 6 then PKRadio3.click locOverrideProductKey.disabled = true OverrideProductKey.value = "" End if
Open in new window