长话短说,我们恢复了一堆服务器,其中一台是我的WDS服务器。除了在OU之间移动计算机对象的Web服务操作外,一切似乎都没问题。
在任务序列中调用两次;一旦开始将对象移动到暂存OU,并在结束时将其移动回原始OU。第一次通话效果很好。第二次调用每次都失败,这个愚蠢的错误对我没有帮助。
据我所知,它可以获得所需的所有数据。在它与Web服务通话之前似乎失败了,因为我没有得到任何日志来指示活动。我确定连接很好,因为一切都在同一台主机上。 我一直在谷歌搜索这几天,没有什么与我相关。
如何解决此错误? 请参阅以下信息:
的CustomSettings.ini
[Settings]
Priority=Default
Properties=MyCustomProperty, StagingOU, FinalOU, MachineObjectOU, ComputerAttributes, Computername, netbootGUID, ZENworksGUID, deploymentType
[Default]
SLShare=\\172.16.100.242\logs\TaskSequence\EndOfDeploy
SLShareDynamicLogging=\\172.16.100.242\logs\TaskSequence\Live
_SMSTSORGNAME=****
UserDataLocation=NONE
ComputerBackupLocation=NETWORK
AdminPassword=****
TimeZoneName=E. Australia Standard Time
FinishAction=REBOOT
WSUSServer=http://wsus.****:8530
EventService=http://172.16.100.242:9800
JoinDomain=****.****.****.****
DomainAdmin=****
DomainAdminPassword=****
StagingOU=LDAP://OU=Staging,DC=****,DC=****,DC=****,DC=****
BackupShare=\\172.16.100.242\DeploymentShare
BackupDir=Captures
BackupFile=%TaskSequenceID%_#month(date) & "-" & day(date) & "-" & year(date)#.wim
DoCapture=NO
OSInstall=Y
HideShell=NO
ApplyGPOPack=NO
SkipAdminPassword=YES
SkipProductKey=YES
SkipComputerName=YES
SkipDomainMembership=YES
SkipUserData=YES
SkipLocaleSelection=YES
SkipTimeZone=YES
SkipApplications=YES
SkipBitLocker=YES
SkipSummary=YES
SkipRoles=YES
SkipCapture=YES
SkipFinalSummary=YES
[GetCurrentComputerName]
WebService=http://172.16.100.242/ADWebService/AD.asmx/GetComputerNameByNetbootGuid
Parameters=netbootGUID
[GetCurrentComputerOU]
WebService=http://172.16.100.242/ADWebService/ad.asmx/GetComputerParentPath
Parameters=Computername
[MoveComputerToOU]
WebService=http://172.16.100.242/ADWebService/AD.asmx/MoveComputerToOU
Parameters=OSDComputerName,MachineObjectOU
OSDComputerName=Computername
MachineObjectOU=OUPath
MoveComputerToTargetOU.wsf
<job id="MoveToTargetOU">
<script language="VBScript" src="..\ZTIUtility.vbs"/>
<script language="VBScript" src="..\ZTIDataAccess.vbs"/>
<script language="VBScript">
' //***************************************************************************
' // ***** Script Header *****
' //
' // File: MoveToTargetOU.wsf
' //
' // Purpose: Move computer to OU specified in MDT by MachineObjectOU
' //
' // Usage: cscript MoveToTargetOU [/debug:true]
' //
' //
' // Customer History:
' // 1 MK 01/18/2009 changed to use Webservice instead of AD Scripting
' // 2 MK 08/28/2009 Updated example Scripts for MDT 2010
' // 3 MK 04/08/2010 Rewrote Script to fit to MDT 2010 standard scripts
' // Added IniFile entry
' //
'// *****结束标题***** '// *********************************************** ****************************
Option Explicit
RunNewInstance
'//----------------------------------------------------------------------------
'//
'// Global constant and variable declarations
'//
'//----------------------------------------------------------------------------
Dim iRetVal
'//----------------------------------------------------------------------------
'// End declarations
'//----------------------------------------------------------------------------
'//----------------------------------------------------------------------------
'// Main Class
'//----------------------------------------------------------------------------
Class MoveToTargetOU
'//----------------------------------------------------------------------------
'// Class instance variable declarations
'//----------------------------------------------------------------------------
' No instance variables are required
'//----------------------------------------------------------------------------
'// Constructor to initialize needed global objects
'//----------------------------------------------------------------------------
Private Sub Class_Initialize
' No initialization is required
End Sub
'//----------------------------------------------------------------------------
'// Main routine
'//----------------------------------------------------------------------------
Function Main
iRetVal = Success
Dim oService, oXML, sResult, sFinalOU
oLogging.CreateEntry "*** De-Staging: Start processing move to Final OU", LogTypeInfo
' Create the web service instance
Set oService = new WebService
oLogging.CreateEntry "*** De-Staging: Loading INI file and reading [MoveComputerToOU] section", LogTypeInfo
oLogging.CreateEntry "*** De-Staging: Read INI section, now setting Environment Properties", LogTypeInfo
oService.IniFile = "CustomSettings.ini"
oService.SectionName = "MoveComputerToOU"
' ADsPath of the container object (OU) where you want to move the current PC to
sFinalOU = oEnvironment.item("FinalOU")
oLogging.CreateEntry "*** De-Staging: Setting MachineObjectOU to Final OU: " & sFinalOU, LogTypeInfo
oEnvironment.item("MachineObjectOU") = sFinalOU
oLogging.CreateEntry "*** De-Staging: Now making the web service call: ", LogTypeInfo
' Make the web service call
Set oXML = oService.Query
If oXML is Nothing then
oLogging.CreateEntry "*** De-Staging: Unable to call MoveComputerToOU web service.", LogTypeError
iRetVal = Failure
Else
oXML.setProperty "SelectionNamespaces", "xmlns:mk='http://maikkoster.com/Deployment'"
sResult = UCase(oXML.SelectSingleNode("mk:boolean").Text)
If sResult <> "TRUE" then
oLogging.CreateEntry "*** De-Staging: Move was not successful", LogTypeError
iRetVal = Failure
Else
oLogging.CreateEntry "*** De-Staging: Successfully moved Computer to target OU", LogTypeInfo
End If
End if
Main = iRetVal
End Function
End Class
</script>
</job>
BDD.log
Setting variable OSDCOMPUTERNAME to value WITDM001 ZTISetVariable 30/04/2018 8:08:07 AM 0 (0x0000)
Property OSDCOMPUTERNAME is now = WITDM001 ZTISetVariable 30/04/2018 8:08:08 AM 0 (0x0000)
ZTISetVariable processing completed successfully. ZTISetVariable 30/04/2018 8:08:08 AM 0 (0x0000)
Event 41001 sent: ZTISetVariable processing completed successfully. ZTISetVariable 30/04/2018 8:08:09 AM 0 (0x0000)
Setting variable OUPath to value LDAP://OU=StagingDev,DC=****,DC=****,DC=****,DC=**** ZTISetVariable 30/04/2018 8:08:09 AM 0 (0x0000)
Property OUPath is now = LDAP://OU=StagingDev,DC=****,DC=****,DC=****,DC=**** ZTISetVariable 30/04/2018 8:08:09 AM 0 (0x0000)
ZTISetVariable processing completed successfully. ZTISetVariable 30/04/2018 8:08:09 AM 0 (0x0000)
Event 41001 sent: ZTISetVariable processing completed successfully. ZTISetVariable 30/04/2018 8:08:10 AM 0 (0x0000)
Setting variable FinalOU to value LDAP://OU=StagingDev,DC=****,DC=****,DC=****,DC=**** ZTISetVariable 30/04/2018 8:08:10 AM 0 (0x0000)
Property FinalOU is now = LDAP://OU=StagingDev,DC=****,DC=****,DC=****,DC=**** ZTISetVariable 30/04/2018 8:08:10 AM 0 (0x0000)
ZTISetVariable processing completed successfully. ZTISetVariable 30/04/2018 8:08:10 AM 0 (0x0000)
Event 41001 sent: ZTISetVariable processing completed successfully. ZTISetVariable 30/04/2018 8:08:12 AM 0 (0x0000)
*** De-Staging: Start processing move to Final OU MoveToTargetOU 30/04/2018 8:08:28 AM 0 (0x0000)
*** De-Staging: Loading INI file and reading [MoveComputerToOU] section MoveToTargetOU 30/04/2018 8:08:28 AM 0 (0x0000)
*** De-Staging: Read INI section, now setting Environment Properties MoveToTargetOU 30/04/2018 8:08:28 AM 0 (0x0000)
Using specified INI file = \\172.16.100.242\DeploymentShare\Control\CustomSettings.ini MoveToTargetOU 30/04/2018 8:08:28 AM 0 (0x0000)
CHECKING the [MoveComputerToOU] section MoveToTargetOU 30/04/2018 8:08:28 AM 0 (0x0000)
*** De-Staging: Setting MachineObjectOU to Final OU: LDAP://OU=StagingDev,DC=****,DC=****,DC=****,DC=**** MoveToTargetOU 30/04/2018 8:08:28 AM 0 (0x0000)
Property MachineObjectOU is now = LDAP://OU=StagingDev,DC=****,DC=****,DC=****,DC=**** MoveToTargetOU 30/04/2018 8:08:28 AM 0 (0x0000)
*** De-Staging: Now making the web service call: MoveToTargetOU 30/04/2018 8:08:29 AM 0 (0x0000)
ZTI ERROR - Unhandled error returned by MoveToTargetOU: The data necessary to complete this operation is not yet available.
(-2147483638 0x8000000A) MoveToTargetOU 30/04/2018 8:08:29 AM 0 (0x0000)
Event 41002 sent: ZTI ERROR - Unhandled error returned by MoveToTargetOU: The data necessary to complete this operation is not yet available.
(-2147483638 0x8000000A) MoveToTargetOU 30/04/2018 8:08:30 AM 0 (0x0000)
对不起,如果我错过了任何信息,谢谢你看看:)
编辑:所以它在Windows PE中运行得非常好,而不是在常规窗口中。我不知道我错过了什么!
答案 0 :(得分:0)
我们解决了这个问题。我们需要做两件事: 在ISS站点中重新输入我们的身份验证信息并重新应用文件级安全筛选,这在备份时会被删除。
这可以通过&#39; Connect as ...&#39;来确认。和&#39;测试设置...&#39;编辑站点应用程序设置时找到的选项。
话虽如此,我仍然不知道为什么Web服务在Windows PE中工作但在常规操作系统中不起作用...任何见解都会非常感激!