Jump to content


jamitupya

BUILD and Capture Windows 7 Enterprise for VDI

Recommended Posts

So Anyweb asked me in this post to describe where and how i would used this in one of my task Sequences. I will use a current Windows 7 LAB in vNEXT to describe this. Now its not perfect as its currently under construction. The purpose of this LAB is to dynamically provision VM's in Citrix XenDesktop and to add these Desktops to the Pooled Desktop.

 

 

For the purposes of this however we will limit the scope to just building and provisioning the vDesktop, without any Backend Infra or adding the vDesktop to Citrix.

 

You will need to create Two (2) Packages for these scripts to be distributed. I used to dynamically update the scripts from the source since they are so small, however i find this just as quick in SCCM 2012/vNEXT.

 

PACKAGE 1: Customized Build Scripts.

The folder Structure is as Follows:

SCRIPTSDIR.jpg

 

 

PRESETUP

presetup.png

 

 

POSTSETUP

postsetup.png

 

 

TOOLS

TOOLSDIR.jpg

 

 

CLEANUPSCRIPTS

cleanup.png

 

 

PACKAGE 2: Customized Deploy Scripts (GoProduction)

The folder Structure is as Follows:

(To be Attached later)

 

The TASK SEQUENCE.

TS.jpg

 

As you can See its mostly just standard, but down the bottom is where we start running commands.

BUILD Windows 7 ENT for VDI Image.xml

 

 

 

Begin:

Firstly we install our Runtimes and Frameworks like Java, Silverlight, etc. I have just included the command lines here as normally we will copy the data locally to the PC, STORE a COPY and then run a VBS file to do the installation. this is helpfull for troubleshooting and allowing SLOWLINK re-installation and repairs of packages. However in this LAB everthing will be in the DC so speed and data transfers are of no consequence.

 

After these are completed we begin installing software, We are only going to install Adobe, Lync Client and Office 2010. Again i have included only command lines so you can see how it is done, and the methods are generally the same throughout.

 

Next we begin customizing the WIM FILE. This is where we copy the scripts and start running them. This looks like a small amount of things that happens here however it is quite substantial and we are in the process of moving everything to powershell from vbscript. We still utilize .cmd files to launch most of the tools as its easier to track the process with multiple open windows.

 

 

INSTALL-ImageFilesV0.2.cmd

@echo off
cls

echo.
echo BEGIN BUILD of Windows 7 Enterprise VDI Image.
echo Version v0.2
echo.

echo.
echo Apply Versioning Information
echo Allows you to see which BUILD TS the Image is
echo.
regedit /s %~d0%~p0BuildVersionV0.2.reg

echo.
echo Copy Profile Customized Sysprep File
echo.
del /f /q C:\Windows\system32\sysprep\panther\unattend.xml
del /f /q C:\Windows\system32\sysprep\unattend.xml
del /f /q C:\WINDOWS\Panther\unattend.xml
del /f /q C:\WINDOWS\MININT\unattend.xml
xcopy /y %~d0%~p0unattend.xml C:\Windows\system32\sysprep\

echo.
echo Copying Standard Operating System Based Customisations
echo
xcopy /y %~d0%~p0Corporate.jpg C:\WINDOWS\Web\Wallpaper\
xcopy /y %~d0%~p0Corporate.Theme C:\WINDOWS\Resources\Themes\

echo.
echo Copying PRE-SYSPREP FILES
echo.
xcopy /y /e /i %~d0%~p0PRESETUP\*.* C:\PRESETUP\

echo.
echo Copying post-sysprep files
echo.
xcopy /y /e /i %~d0%~p0POSTSETUP\*.* C:\POSTSETUP\
REM You can include anything you want here. MAP a network drive and copy A/V, other agents, etc. here if you have a need to run locally.

echo.
echo Copying cleanup scripts 
echo.
xcopy /y /e /i %~d0%~p0CleanupScripts\*.* C:\WINDOWS\Temp\

echo.
echo Copying Tools
echo.
xcopy /y /e /i %~d0%~p0Tools\*.* C:\WINDOWS\

exit

 

 

BuildVersionV0.2.reg

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Corporate\Build]
"Name"="Win7ent_Off2010_VDI_SCCMToolSet"
"Build"="0.2"
"BuildDate"="01/10/2010"
"BuildOwner"="Virtual Desktop Engineering"

 

 

 

CALL-Pre-Setup

Pre-SysprepCmds.cmd

 


@echo off
cls

cd\

cd PRESETUP

echo.
echo *****************************
echo
echo Running PRE SYSPREP commands
echo
echo *****************************
echo.

echo.
echo Set OEM Information
echo.
regedit /s OEM.reg

echo.
echo Enable features based on customer request
echo.
start /wait EnableWindowsFeatures.cmd

echo.
echo Remove US English
echo.
regedit /s RemoveUSEnglish.reg

echo.
echo Remove Shortcuts
echo.
del /f /q "C:\ProgramData\Microsoft\Windows\Start Menu\Default Programs.lnk"
del /f /q "C:\ProgramData\Microsoft\Windows\Start Menu\Windows Update.lnk"
del /f /q "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Accessories\System Tools\System Restore.lnk"
rmdir /s /q "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Maintenance"
rmdir /s /q "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Games"

echo.
echo Adding Shortcuts
echo.
xcopy /Y "BGInfo.lnk" "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup"


echo.
echo Customise Current Profile
echo Set Corporate Theme
echo Close the Theme setting window to set the Theme
echo.
rem start C:\WINDOWS\Resources\Themes\Corporate.Theme


echo.
echo ***********************************
echo
echo Running PRE configuration commands
echo
echo ***********************************
echo.

echo.
echo Waiting for 30 seconds
echo.
ping 127.0.0.1 -n 31 > %TEMP%null

echo.
echo Copy Default User Picture
echo.
rename "C:\ProgramData\Microsoft\User Account Pictures\user.bmp" user.bmp.bk
xcopy /y user.bmp "C:\ProgramData\Microsoft\User Account Pictures\"

echo.
echo Set NumLock Off
echo.
regedit /s HKCU_ControlPanel_Keyboard.reg

echo.
echo Set Default Keyboard
echo.
regedit /s HKCU_CTF.reg

echo.
echo Set Explorer View and Start Menu Options
echo.
regedit /s HKCU_Explorer_Advanced.reg

echo.
echo Set Keyboard Layout
echo.
regedit /s HKCU_KeyboardLayout.reg

echo.
echo Set Language Bar Options
echo.
regedit /s HKCU_LangBar.reg

echo.
echo Set Media Player first Run preference
echo.
regedit /s HKCU_MediaPlayerFirstRun.reg

echo.
echo Set Default Locale
echo.
REG DELETE "HKU\.Default\Software\Microsoft\CTF\Assemblies" /f
regedit /s HKU_DOT_DEFAULT_CTF.reg

echo.
echo Set Default NumLock off
echo.
REG DELETE "HKU\.DEFAULT\Control Panel\Keyboard" /f
regedit /s HKU_DOT_DEFAULT_ControlPanel_Keyboard.reg

echo.
echo Set Default Keyboard
echo.
REG DELETE "HKU\.Default\Keyboard Layout" /f
regedit /s HKU_DOT_DEFAULT_KeyboardLayout.reg

echo.
echo Set Default Wallpaper to avoid blank background for default users
echo.
REG LOAD HKU\DefaultUser C:\Users\Default\NTUSER.DAT
REG IMPORT HKDU_ControlPanel_Desktop.reg
REG UNLOAD HKU\DefaultUser

echo.
echo Removes MS Office Registration Info
echo.
regedit /s Remove_MS_Off_UserInfo.reg

echo.
echo Add MS Office Registration only for Company
echo Will prompt for name and initials
echo.
regedit /s Add_MS_Off_CompanyInfo.reg

echo.
echo Disable Windows Media Player Network Sharing Service
echo Requirement for Win 7 Sysprep
echo.
net stop WMPNetworkSvc
sc config WMPNetworkSvc start= disabled

echo .
echo Adding Local Admins
echo Requirement for Autologon
echo .
CreateLocalAdmins.cmd


cls

echo.
echo Pause to customise anything else in your image
echo Check to make sure NumLock is off for the user
echo Check Windows Updates 
echo Check to see if all PRE SYSPREP apps are installed
echo.
pause

echo.
echo Waiting for 30 seconds
echo.
ping 127.0.0.1 -n 31 > %TEMP%null

exit

 

SET-SpecialLogonScreen

SetSpecialLogonScreen.cmd

 

[size=3]
xcopy /y %~d0%~p0CorporateBuild.jpg C:\WINDOWS\system32\oobe\Info\backgrounds\

regedit /s "%~d0%~p0EnableLogonInWindows7.reg"

regini -b "%~d0%~p0SetBackgroundPermission.ini"

exit[/size]

 

EnableLogonInWindows7.reg


Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\Background]
"OEMBackground"=dword:00000001

 

 

SET-AutoLogon

desktopadminautologon.cmd



On Error Resume Next

Dim WshShell
Set WshShell = Wscript.CreateObject("Wscript.Shell")
Dim objFileSys
Set objFileSys = CreateObject("Scripting.FileSystemObject")
Dim oNetwork
Set oNetwork = CreateObject("WScript.Network")

WshShell.RegWrite "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\AutoAdminLogon", "1"
WshShell.RegWrite "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\DefaultUserName", "desktopadmin" 
WshShell.RegWrite "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\DefaultPassword", "password"
WshShell.RegWrite "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\DefaultDomainName", "."

 

 

CustomiseDefaultProfile.cmd


@ECHO OFF
REM *****************************************************
REM  Script configures the Default User Profile
REM *****************************************************

REM Load the default profile hive
REG LOAD HKU\Default C:\Users\Default\NTUSER.DAT
REM Configure the default user profile
REM Customise Wallpaper Theme Screensaver

REG IMPORT HKDUser\HKU_ControlPanel_Desktop.reg
REG IMPORT HKDUser\HKU_Themes.reg
REG IMPORT HKDUser\HKU_Software_MSWin_DWM.reg
REG IMPORT HKDUser\HKU_ControlPanel_Colors.reg
REG IMPORT HKDUser\HKU_ControlPanel_Cursors.reg

REM Set Keyboard Layout Settings
REG DELETE "HKU\Default\Keyboard Layout" /f
REG IMPORT HKDUser\HKU_KeyboardLayout.reg

REM Turn off NumLock as a default
REG IMPORT HKDUser\HKU_ControlPanel_Keyboard.reg

REM Turn off Language bar
REG IMPORT HKDUser\HKU_LangBar.reg

REM Set Default Language
REG DELETE "HKU\Default\Software\Microsoft\CTF\Assemblies" /f
REG IMPORT\HKDUser\HKU_CTF.reg

REM Set Explorer Settings
REG IMPORT HKDUser\HKU_Explorer_Advanced.reg

REM Set Media Player Settings
REG IMPORT HKDUser\HKU_MediaPlayer.reg

REM Unload the default profile hive
REG UNLOAD HKU\Default

exit

 

 

WSUS-WindowsUpdate

WindowsUpdate.cmd


@echo off
cls

cd\

cd PRESETUP

echo.
echo Connects machine to WSUS SOEBUILD Group
echo Runs the powershell script WSUSNow to obtain updates and install 
echo.

regedit /s %~d0%~p0wsusWin7SOEBuild.reg

PowerShell set-executionpolicy remotesigned -force

start /wait PowerShell "& {%~d0%~p0WSUSNow.ps1}"

exit

 

 

 

WSUSNow.ps1

I cannot provided this file as it is very proprietary. Basically it connects to your WSUS Server and downloads the mandatory updates , downloads and installs.

 

 

WSUS-Cleanup

WSUSCleanup.cmd

[/size]

@echo off
cls

echo. 
echo WSUS Cleanup before image capture
echo Avoids duplicate WSUS entries
echo.

REG DELETE "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /f

REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v AccountDomainSid /f

REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v PingID /f

REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f

exit[size=3]
[/size]
[size=3]

 

 

 

That's the Basics of building our image upto the point of Capturing... once sysprep kicks in we run a heap of other things, but you'll be able to figure out what and where in the next part. Another week or so and i'll get it up.

 

 

I have included the .ZIP of all the reg files, but these should be customized to what you wish to setup. Yes, we use GPO to apply alot of this also, however alot of this is easily locked into the image so we do.

PRESETUP.zip

Share this post


Link to post
Share on other sites

Hey Niall would you be able to post a guide and your version of your deployments scripts? I'm very intruiged to see it all working. I have my own customization requirements in deployments. I want to know how to implement all of this in the deployment process and not the capture process!

 

I put it all in and i added the scripts into the TS. However it fails to execute the *.cmd files during OSD. It says it cannot find the file, although if i go look once the deployment has failed but the OS installs you can clearly see that all the required files are in C:\Windows\Delta\*

 

Any ideas?

 

-Brendan

Share this post


Link to post
Share on other sites

post your smsts.log file and we can have a look,

as regards what I use, look at the BitLocker and Multifuntion windows-noob.com HTA FrontEnd's, they contain scripts/logic in the task sequence that pretty much does all I need

Share this post


Link to post
Share on other sites

Here is the SMSTS Log, hope it helps. Would you also like a copy of the Task Sequence so you can see exactly what im doing?

 

<![LOG[LOGGING: Finalize process ID set to 732]LOG]!><time="16:18:13.030+480" date="01-23-2012" component="TSBootShell" context="" type="1" thread="736" file="tslogging.cpp:1495">
<![LOG[==============================[ TSBootShell.exe ]==============================]LOG]!><time="16:18:13.030+480" date="01-23-2012" component="TSBootShell" context="" type="1" thread="736" file="bootshell.cpp:956">
<![LOG[succeeded loading resource DLL 'X:\sms\bin\x64\1033\TSRES.DLL']LOG]!><time="16:18:13.030+480" date="01-23-2012" component="TSBootShell" context="" type="1" thread="736" file="util.cpp:910">
<![LOG[Debug shell is enabled]LOG]!><time="16:18:13.030+480" date="01-23-2012" component="TSBootShell" context="" type="1" thread="736" file="bootshell.cpp:967">
<![LOG[Waiting for PNP initialization...]LOG]!><time="16:18:13.077+480" date="01-23-2012" component="TSBootShell" context="" type="1" thread="768" file="bootshell.cpp:60">
<![LOG[booted from network (PXE)]LOG]!><time="16:18:13.280+480" date="01-23-2012" component="TSBootShell" context="" type="1" thread="768" file="configpath.cpp:198">
<![LOG[Found config path X:\sms\data\]LOG]!><time="16:18:13.280+480" date="01-23-2012" component="TSBootShell" context="" type="1" thread="768" file="bootshell.cpp:545">
<![LOG[booting from removable media, not restoring bootloaders on hard drive]LOG]!><time="16:18:13.280+480" date="01-23-2012" component="TSBootShell" context="" type="1" thread="768" file="bootshell.cpp:556">
<![LOG[Executing command line: wpeinit.exe -winpe]LOG]!><time="16:18:13.280+480" date="01-23-2012" component="TSBootShell" context="" type="1" thread="768" file="bootshell.cpp:761">
<![LOG[The command completed successfully.]LOG]!><time="16:18:23.326+480" date="01-23-2012" component="TSBootShell" context="" type="1" thread="768" file="bootshell.cpp:843">
<![LOG[starting DNS client service.]LOG]!><time="16:18:23.326+480" date="01-23-2012" component="TSBootShell" context="" type="1" thread="768" file="bootshell.cpp:589">
<![LOG[Executing command line: X:\sms\bin\x64\TsmBootstrap.exe /env:WinPE /configpath:X:\sms\data\]LOG]!><time="16:18:23.841+480" date="01-23-2012" component="TSBootShell" context="" type="1" thread="768" file="bootshell.cpp:761">
<![LOG[The command completed successfully.]LOG]!><time="16:18:23.841+480" date="01-23-2012" component="TSBootShell" context="" type="1" thread="768" file="bootshell.cpp:843">
<![LOG[==============================[ TSMBootStrap.exe ]==============================]LOG]!><time="16:18:23.904+480" date="01-23-2012" component="TSMBootstrap" context="" type="1" thread="824" file="tsmbootstrap.cpp:966">
<![LOG[Command line: X:\sms\bin\x64\TsmBootstrap.exe /env:WinPE /configpath:X:\sms\data\]LOG]!><time="16:18:23.904+480" date="01-23-2012" component="TSMBootstrap" context="" type="0" thread="824" file="tsmbootstrap.cpp:967">
<![LOG[succeeded loading resource DLL 'X:\sms\bin\x64\1033\TSRES.DLL']LOG]!><time="16:18:23.904+480" date="01-23-2012" component="TSMBootstrap" context="" type="1" thread="824" file="util.cpp:910">
<![LOG[succeeded loading resource DLL 'X:\sms\bin\x64\TSRESNLC.DLL']LOG]!><time="16:18:23.904+480" date="01-23-2012" component="TSMBootstrap" context="" type="1" thread="824" file="resourceutils.cpp:152">
<![LOG[PXE Boot with Root = X:\]LOG]!><time="16:18:23.919+480" date="01-23-2012" component="TSMBootstrap" context="" type="1" thread="824" file="tsmbootstrap.cpp:899">
<![LOG[Executing from PXE in WinPE]LOG]!><time="16:18:23.919+480" date="01-23-2012" component="TSMBootstrap" context="" type="0" thread="824" file="tsmbootstrap.cpp:914">
<![LOG[Loading TsPxe.dll from X:\sms\bin\x64\TsPxe.dll]LOG]!><time="16:18:23.919+480" date="01-23-2012" component="TSMBootstrap" context="" type="0" thread="824" file="tsmbootstraputil.cpp:1274">
<![LOG[TsPxe.dll loaded]LOG]!><time="16:18:23.919+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsmbootstraputil.cpp:1284">
<![LOG[Device has PXE booted]LOG]!><time="16:18:23.919+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspxe.cpp:122">
<![LOG[Variable Path: \SMSTemp\2012.01.23.11.18.02.0001.{C16D6DE3-1C6B-4DC8-B765-A47B3888E858}.boot.var]LOG]!><time="16:18:23.919+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspxe.cpp:134">
<![LOG[Variable Key Len: 69]LOG]!><time="16:18:23.919+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspxe.cpp:141">
<![LOG[succesfully added firewall rule for Tftp]LOG]!><time="16:18:23.935+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="fwopen.cpp:123">
<![LOG[Executing: X:\sms\bin\x64\smstftp.exe -i 192.168.1.2 get \SMSTemp\2012.01.23.11.18.02.0001.{C16D6DE3-1C6B-4DC8-B765-A47B3888E858}.boot.var X:\sms\data\variables.dat]LOG]!><time="16:18:23.935+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspxe.cpp:177">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="16:18:23.997+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="commandline.cpp:228">
<![LOG[set command line: "X:\sms\bin\x64\smstftp.exe" -i 192.168.1.2 get \SMSTemp\2012.01.23.11.18.02.0001.{C16D6DE3-1C6B-4DC8-B765-A47B3888E858}.boot.var X:\sms\data\variables.dat]LOG]!><time="16:18:23.997+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="commandline.cpp:705">
<![LOG[Executing command line: "X:\sms\bin\x64\smstftp.exe" -i 192.168.1.2 get \SMSTemp\2012.01.23.11.18.02.0001.{C16D6DE3-1C6B-4DC8-B765-A47B3888E858}.boot.var X:\sms\data\variables.dat]LOG]!><time="16:18:23.997+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="commandline.cpp:801">
<![LOG[Process completed with exit code 0]LOG]!><time="16:18:24.060+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="commandline.cpp:1098">
<![LOG[succesfully removed firewall rule for Tftp]LOG]!><time="16:18:24.060+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="fwopen.cpp:146">
<![LOG[successfully downloaded pxe variable file.]LOG]!><time="16:18:24.060+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspxe.cpp:187">
<![LOG[we are booted using PXE]LOG]!><time="16:18:24.060+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:2551">
<![LOG[we are booted using PXE and we use a generated password]LOG]!><time="16:18:24.060+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:2556">
<![LOG[Loading Media Variables from "X:\sms\data\variables.dat"]LOG]!><time="16:18:24.060+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsremovablemedia.cpp:322">
<![LOG[CryptDecrypt (hKey, 0, 1, 0, pData, &dwDecryptedLen), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\smscrypt\windes.cpp,150)]LOG]!><time="16:18:24.060+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="windes.cpp:150">
<![LOG[sMS::Crypto::DES::DecryptBuffer( (BYTE*)pszPassword, (DWORD)(wcslen(pszPassword)*sizeof(WCHAR)), encryptedBuffer.getBuffer(), (DWORD)encryptedBuffer.size(), pbDecryptedBuffer, dwDecryptedBufferSize ), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\tscore\tsremovablemedia.cpp,387)]LOG]!><time="16:18:24.060+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsremovablemedia.cpp:387">
<![LOG[Verifying media password.]LOG]!><time="16:18:24.060+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:270">
<![LOG[Loading Media Variables from "X:\sms\data\variables.dat"]LOG]!><time="16:18:24.060+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsremovablemedia.cpp:322">
<![LOG[Found network adapter "Intel(R) 82566DM-2 Gigabit Network Connection" with IP Address 192.168.1.103.]LOG]!><time="16:18:24.091+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsmbootstraputil.cpp:426">
<![LOG[Loading Media Variables from "X:\sms\data\variables.dat"]LOG]!><time="16:18:24.091+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsremovablemedia.cpp:322">
<![LOG[CryptDecrypt (hKey, 0, 1, 0, pData, &dwDecryptedLen), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\smscrypt\windes.cpp,150)]LOG]!><time="16:18:24.091+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="windes.cpp:150">
<![LOG[sMS::Crypto::DES::DecryptBuffer( (BYTE*)pszPassword, (DWORD)(wcslen(pszPassword)*sizeof(WCHAR)), encryptedBuffer.getBuffer(), (DWORD)encryptedBuffer.size(), pbDecryptedBuffer, dwDecryptedBufferSize ), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\tscore\tsremovablemedia.cpp,387)]LOG]!><time="16:18:24.091+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsremovablemedia.cpp:387">
<![LOG[Entering TSMediaWizardControl::GetPolicy.]LOG]!><time="16:18:24.091+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsmediawizardcontrol.cpp:511">
<![LOG[Environment scope "Global\{51A016B6-F0DE-4752-B97C-54E6F386A912}" successfully created]LOG]!><time="16:18:24.091+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="environmentscope.cpp:305">
<![LOG[Environment scope "Global\{BA3A3900-CA6D-4ac1-8C28-5073AFC22B03}" successfully created]LOG]!><time="16:18:24.091+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="environmentscope.cpp:305">
<![LOG[setting LogMaxSize to 1000000]LOG]!><time="16:18:24.091+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:539">
<![LOG[setting LogMaxHistory to 1]LOG]!><time="16:18:24.091+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:540">
<![LOG[setting LogLevel to 0]LOG]!><time="16:18:24.091+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:541">
<![LOG[setting LogEnabled to 1]LOG]!><time="16:18:24.091+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:542">
<![LOG[setting LogDebug to 1]LOG]!><time="16:18:24.091+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:543">
<![LOG[Loading variables from the Task Sequencing Removable Media.]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:563">
<![LOG[Loading Media Variables from "X:\sms\data\variables.dat"]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsremovablemedia.cpp:322">
<![LOG[setting SMSTSMP TS environment variable]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:580">
<![LOG[setting _SMSMediaGuid TS environment variable]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:580">
<![LOG[setting _SMSTSBootMediaPackageID TS environment variable]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:580">
<![LOG[setting _SMSTSHTTPPort TS environment variable]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:580">
<![LOG[setting _SMSTSHTTPSPort TS environment variable]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:580">
<![LOG[setting _SMSTSIISSSLState TS environment variable]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:580">
<![LOG[setting _SMSTSLaunchMode TS environment variable]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:580">
<![LOG[setting _SMSTSMediaPFX TS environment variable]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:580">
<![LOG[setting _SMSTSPublicRootKey TS environment variable]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:580">
<![LOG[setting _SMSTSSiteCode TS environment variable]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:580">
<![LOG[setting _SMSTSSiteSigningCertificate TS environment variable]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:580">
<![LOG[setting _SMSTSUseFirstCert TS environment variable]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:580">
<![LOG[setting _SMSTSx64UnknownMachineGUID TS environment variable]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:580">
<![LOG[setting _SMSTSx86UnknownMachineGUID TS environment variable]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:580">
<![LOG[Root CA Public Certs=]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:591">
<![LOG[Missing root CA environment variable from variables file]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:597">
<![LOG[Custom hook from X:\\TSConfig.INI is ]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:646">
<![LOG[No hook is found to be executed before downloading policy]LOG]!><time="16:18:24.262+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:670">
<![LOG[Authenticator from the environment is empty.]LOG]!><time="16:18:24.278+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:809">
<![LOG[Need to create Authenticator Info using PFX]LOG]!><time="16:18:24.278+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:821">
<![LOG[set media certificate in transport]LOG]!><time="16:18:24.309+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:9196">
<![LOG[set authenticator in transport]LOG]!><time="16:18:24.309+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:7568">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_aut?MPKEYINFORMATION]LOG]!><time="16:18:24.325+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:24.340+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:8734">
<![LOG[Default CSP is Microsoft Enhanced RSA and AES Cryptographic Provider]LOG]!><time="16:18:24.356+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:1592">
<![LOG[Default CSP Type is 24]LOG]!><time="16:18:24.356+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:1593">
<![LOG[New settings:]LOG]!><time="16:18:24.356+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:892">
<![LOG[	site=BCA,, MP=http://BCA-SCCM-DS.SCCM.live, ports: http=80,https=443]LOG]!><time="16:18:24.356+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:893">
<![LOG[	certificates are received from MP.]LOG]!><time="16:18:24.356+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:898">
<![LOG[Getting MP time information]LOG]!><time="16:18:24.356+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:985">
<![LOG[set authenticator in transport]LOG]!><time="16:18:24.356+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:7568">
<![LOG[Requesting client identity]LOG]!><time="16:18:24.372+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:5591">
<![LOG[setting message signatures.]LOG]!><time="16:18:24.372+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:18:24.372+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:18:24.372+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:24.403+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:8734">
<![LOG[Decompressing reply body.]LOG]!><time="16:18:24.418+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:2360">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="16:18:24.418+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 409, uncompressed size 2508.]LOG]!><time="16:18:24.418+480" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="ccmzlib.cpp:647">
<![LOG[-60 -60]LOG]!><time="16:18:24.418+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:5773">
<![LOG[server time zone info: -600, , [0 0 0 0 0 0 0 0], 0, , [0 0 0 0 0 0 0 0], -60]LOG]!><time="16:18:24.418+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:5846">
<![LOG[Client Identity: ]LOG]!><time="16:18:24.418+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:5957">
<![LOG[Netbios name: ]LOG]!><time="16:18:24.418+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:5973">
<![LOG[Current time: 2012-01-24 00:18:24.418 TZ:Pacific Standard Time Bias:0480]LOG]!><time="16:18:24.418+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:1052">
<![LOG[Current time zone info: 480, Pacific Standard Time, [0 0 0 0 0 0 0 0], 0, , [0 0 0 0 0 0 0 0], 0]LOG]!><time="16:18:24.418+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:1056">
<![LOG[Adjusting the system time: -64799.835 seconds]LOG]!><time="16:18:24.418+480" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:1084">
<![LOG[Time zone info set to: -600, , [0 0 0 0 0 0 0 0], 0, , [0 0 0 0 0 0 0 0], -60]LOG]!><time="10:18:24.418-600" date="01-24-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:1094">
<![LOG[New time: 2012-01-23 06:18:24.582]LOG]!><time="16:18:24.582-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:1134">
<![LOG[Current time: 2012-01-23 06:18:24.582 TZ: Bias:-600]LOG]!><time="16:18:24.582-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:1140">
<![LOG[Downloading policy from http://BCA-SCCM-DS.SCCM.live.]LOG]!><time="16:18:24.769-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:1149">
<![LOG[initializing HTTP transport.]LOG]!><time="16:18:24.769-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:785">
<![LOG[   Setting URL = http://BCA-SCCM-DS.SCCM.live.]LOG]!><time="16:18:24.769-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:786">
<![LOG[   Setting Ports = 80,443.]LOG]!><time="16:18:24.769-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:789">
<![LOG[   Setting CRL = false.]LOG]!><time="16:18:24.769-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:792">
<![LOG[   Setting Server Certificates.]LOG]!><time="16:18:24.769-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:809">
<![LOG[set authenticator in transport]LOG]!><time="16:18:24.769-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:7568">
<![LOG[   Setting Media Certificate.]LOG]!><time="16:18:24.769-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:817">
<![LOG[Preparing Client Identity Request.]LOG]!><time="16:18:24.784-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:570">
<![LOG[	Setting transport.]LOG]!><time="16:18:24.784-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:573">
<![LOG[	Setting SourceID = 48e0fd7e-1808-4aa3-aba3-cd518daf5df6.]LOG]!><time="16:18:24.784-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:577">
<![LOG[	Setting site code = BCA.]LOG]!><time="16:18:24.784-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:582">
<![LOG[	Setting SMBIOS GUID = 45B0163E-E25C-11DD-BBDA-7D4AEBF80023.]LOG]!><time="16:18:24.987-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:606">
<![LOG[	Adding MAC Address 00:23:7D:4A:EB:F8.]LOG]!><time="16:18:25.003-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:625">
<![LOG[Executing Client Identity Request.]LOG]!><time="16:18:25.003-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:633">
<![LOG[Requesting client identity]LOG]!><time="16:18:25.003-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:5591">
<![LOG[setting message signatures.]LOG]!><time="16:18:25.018-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:18:25.018-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:18:25.018-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:25.034-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:8734">
<![LOG[Decompressing reply body.]LOG]!><time="16:18:25.034-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:2360">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="16:18:25.034-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 406, uncompressed size 2508.]LOG]!><time="16:18:25.034-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="ccmzlib.cpp:647">
<![LOG[-60 -60]LOG]!><time="16:18:25.034-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:5773">
<![LOG[server time zone info: -600, , [0 0 0 0 0 0 0 0], 0, , [0 0 0 0 0 0 0 0], -60]LOG]!><time="16:18:25.034-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:5846">
<![LOG[Client Identity: ]LOG]!><time="16:18:25.034-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:5957">
<![LOG[Netbios name: ]LOG]!><time="16:18:25.034-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:5973">
<![LOG[Client GUID = , Netbios name = , State = Known]LOG]!><time="16:18:25.034-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:653">
<![LOG[using unknown machine GUID: 989e408e-9e3f-4209-af6d-d16b77dc4a2e]LOG]!><time="16:18:25.221-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:867">
<![LOG[GetSystemEnclosureChassisInfo: IsFixed=TRUE, IsLaptop=FALSE]LOG]!><time="16:18:25.221-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libmachineinfo.cpp:169">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:25.237-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:481">
<![LOG[Computed HardwareID=2:6EF49D3C36B8701EC98E9B537CE4665729C49497
Win32_SystemEnclosure.SerialNumber=AUD90303RV
Win32_SystemEnclosure.SMBIOSAssetTag=AUD90303RV
Win32_BaseBoard.SerialNumber=AUD90303RV
Win32_BIOS.SerialNumber=AUD90303RV
Win32_NetworkAdapterConfiguration.MACAddress=00:23:7D:4A:EB:F8]LOG]!><time="16:18:25.237-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libmachineinfo.cpp:907">
<![LOG[Hardware ID: 2:6EF49D3C36B8701EC98E9B537CE4665729C49497]LOG]!><time="16:18:25.237-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:391">
<![LOG[Preparing the Client DDR Message]LOG]!><time="16:18:25.237-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:443">
<![LOG[	Setting SourceID = 48e0fd7e-1808-4aa3-aba3-cd518daf5df6.]LOG]!><time="16:18:25.237-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:451">
<![LOG[sending the Client DDR message.]LOG]!><time="16:18:25.237-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:533">
<![LOG[sending Report]LOG]!><time="16:18:25.237-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:6916">
<![LOG[<Report><ReportHeader><Identification><Machine><ClientInstalled>0</ClientInstalled><ClientType>1</ClientType><Unknown>1</Unknown><ClientID>GUID:af8befb3-c352-4413-9e5e-0e3e02cb368c</ClientID><ClientVersion>4.00.0000.0000</ClientVersion><NetBIOSName>Unknown</NetBIOSName><CodePage>437</CodePage><SystemDefaultLCID>1033</SystemDefaultLCID></Machine></Identification><ReportDetails><ReportContent>Inventory Data</ReportContent><ReportType>Full</ReportType><Date>20120123061825.000000+000</Date><Version>1.0</Version><Format>1.1</Format></ReportDetails><InventoryAction ActionType="Predefined"><InventoryActionID>{00000000-0000-0000-0000-000000000003}</InventoryActionID><Description>Discovery</Description><InventoryActionLastUpdateTime>20120123061825.000000+000</InventoryActionLastUpdateTime></InventoryAction>
</ReportHeader>
<ReportBody><Instance ParentClass="CCM_ClientIdentificationInformation" Class="CCM_ClientIdentificationInformation" Namespace="root\ccm" Content="New"><CCM_ClientIdentificationInformation><HardwareID1>2:6EF49D3C36B8701EC98E9B537CE4665729C49497</HardwareID1></CCM_ClientIdentificationInformation></Instance><Instance ParentClass="Win32_NetworkAdapterConfiguration" Class="Win32_NetworkAdapterConfiguration" Namespace="root\cimv2" Content="New"><Win32_NetworkAdapterConfiguration><MACAddress>00:23:7D:4A:EB:F8</MACAddress></Win32_NetworkAdapterConfiguration></Instance><Instance ParentClass="Win32_ComputerSystemProduct" Class="Win32_ComputerSystemProduct" Namespace="root\cimv2" Content="New"><Win32_ComputerSystemProduct><UUID>45B0163E-E25C-11DD-BBDA-7D4AEBF80023</UUID></Win32_ComputerSystemProduct></Instance></ReportBody>
</Report>
]LOG]!><time="16:18:25.237-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:6917">
<![LOG[setting message signatures.]LOG]!><time="16:18:25.252-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:18:25.252-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:18:25.252-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:25.268-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:8734">
<![LOG[submitted new client identity: GUID:af8befb3-c352-4413-9e5e-0e3e02cb368c]LOG]!><time="16:18:25.268-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:892">
<![LOG[Preparing Policy Assignment Request.]LOG]!><time="16:18:25.268-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:900">
<![LOG[	Setting transport.]LOG]!><time="16:18:25.268-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:901">
<![LOG[	Setting site code = BCA.]LOG]!><time="16:18:25.268-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:904">
<![LOG[	Setting client ID = 989e408e-9e3f-4209-af6d-d16b77dc4a2e.]LOG]!><time="16:18:25.268-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:906">
<![LOG[   Setting site signing Certificate.]LOG]!><time="16:18:25.268-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:911">
<![LOG[setting SiteSigningCertificateContext]LOG]!><time="16:18:25.268-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:2510">
<![LOG[Executing Policy Assignment Request.]LOG]!><time="16:18:25.268-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:924">
<![LOG[sending RequestAssignments]LOG]!><time="16:18:25.268-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:2787">
<![LOG[setting message signatures.]LOG]!><time="16:18:25.268-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:18:25.268-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:18:25.268-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:8734">
<![LOG[Decompressing reply body.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:2360">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 34033, uncompressed size 166030.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="ccmzlib.cpp:647">
<![LOG[Request client ID: 989e408e-9e3f-4209-af6d-d16b77dc4a2e]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:2841">
<![LOG[Response client ID: 989e408e-9e3f-4209-af6d-d16b77dc4a2e]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:2842">
<![LOG[Retrieving Policy Assignments:]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:929">
<![LOG[	Processing Policy Assignment {642f6f2d-6857-4dbf-a6ce-6730406b42b6}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {1b899c79-6935-45b8-98c4-8b25db6daf6c}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {36bb7a79-8082-444c-9037-d23dc0bfb6d8}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {8a47a5b8-1637-4b55-a8e5-317540f2667a}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {57ecb63f-eea5-49b6-b894-b1e58e88de2e}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {c8acf45f-6cc7-439c-b661-7195bc91879c}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {326e70e6-f60e-495b-8147-c8213bdf593e}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {bcc91b43-36b2-49ca-a9d6-4058a6c85e4c}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {cbb6ff59-0504-4db9-a375-227832c5b198}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {86e62a83-f1eb-4a2d-90a3-56cfbc6c9a75}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {4c412854-2563-423e-8b98-9c1cc6cafe89}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {84d4146b-bad0-493f-8763-163f61bf49a3}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {3618f113-b2d2-4ed5-a39a-6f56529c9054}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {78a544df-4189-4e6e-92a7-14bc0a082f19}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {8780dd4c-74d7-4996-82e5-b2908c8aeb4e}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {81921ef9-d60a-46ac-89e6-58a30fdb9c15}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {dccb4f9d-d8a3-40d2-9dd7-950422c21a23}.]LOG]!><time="16:18:25.346-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {64aa0ea3-9339-442a-83c9-35ae1f247559}.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {264c3dcd-af3c-4e7f-af18-9b2e02054b1e}.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {31c79f04-b329-449d-8afe-2af6be15829a}.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {7109d39e-c33d-482c-b0e0-ecf335c4e888}.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {eaf25e72-635c-41fe-8a92-adc47385a090}.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {9c6958b2-bd36-415c-8d02-76f706f7601a}.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {1b5ce6dc-54fb-4785-bef3-d5767b82b9d7}.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {a1490ee5-3c79-4d71-b855-84e0e57efcb8}.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {1bb12a94-298f-46df-9172-07dc6fd967aa}.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {eac0a39b-f8da-4e36-8cba-ec9a91271d9d}.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment {18dd24dc-c7e7-428c-b32d-de3ff4b463ac}.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment BCA20000-BCA00003-3B5BFFE2.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment BCA2001D-BCA00021-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA2001D-BCA00004-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment BCA2001E-BCA00022-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA2001E-BCA00004-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA2001D-BCA0001F-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA2001E-BCA00020-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment BCA20020-BCA00027-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA20020-BCA00004-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA20020-BCA00026-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment BCA20022-BCA0002B-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA20022-BCA00004-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA20022-BCA0002A-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment BCA20023-BCA0002D-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA20023-BCA00004-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA20023-BCA0002C-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment BCA20024-BCA0002F-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA20024-BCA00004-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA20024-BCA0002E-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment BCA20025-BCA00031-710732A7.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA20024-BCA00032-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment BCA20026-BCA00038-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA20026-BCA00004-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA20026-BCA00037-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment BCA20027-BCA0003B-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA20027-BCA00004-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA20027-BCA0003A-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment BCA0000A-{7c2c6294-f4ad-4bd4-a921-b75e73f8f2da}.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment BCA20028-BCA0003D-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA20028-BCA00004-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[	Processing Policy Assignment DEP-BCA20028-BCA0003C-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:938">
<![LOG[successfully read 59 policy assignments.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:952">
<![LOG[Downloading policy body BCA2001D-BCA00021-6F6BCC28.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?BCA2001D-BCA00021-6F6BCC28.2_00.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?BCA2001D-BCA00021-6F6BCC28.2_00]LOG]!><time="16:18:25.362-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:25.377-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:8734">
<![LOG[Found a secure policy.]LOG]!><time="16:18:25.393-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4557">
<![LOG[Trying to decode policy.]LOG]!><time="16:18:25.393-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4561">
<![LOG[Policy decoded.]LOG]!><time="16:18:25.393-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4596">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:25.393-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:25.393-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?BCA2001D-BCA00021-6F6BCC28.2_00]LOG]!><time="16:18:25.393-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: BCA2001D-BCA00021-6F6BCC28]LOG]!><time="16:18:25.393-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:25.393-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:25.393-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2030">
<![LOG[Downloading policy body BCA2001E-BCA00022-6F6BCC28.]LOG]!><time="16:18:25.408-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:25.408-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:25.408-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?BCA2001E-BCA00022-6F6BCC28.2_00.]LOG]!><time="16:18:25.408-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:25.408-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?BCA2001E-BCA00022-6F6BCC28.2_00]LOG]!><time="16:18:25.408-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:25.424-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:8734">
<![LOG[Found a secure policy.]LOG]!><time="16:18:25.440-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4557">
<![LOG[Trying to decode policy.]LOG]!><time="16:18:25.440-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4561">
<![LOG[Policy decoded.]LOG]!><time="16:18:25.440-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4596">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:25.440-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:25.440-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?BCA2001E-BCA00022-6F6BCC28.2_00]LOG]!><time="16:18:25.440-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: BCA2001E-BCA00022-6F6BCC28]LOG]!><time="16:18:25.440-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:25.440-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:25.440-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2030">
<![LOG[Downloading policy body BCA20020-BCA00027-6F6BCC28.]LOG]!><time="16:18:25.440-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:25.440-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:25.440-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?BCA20020-BCA00027-6F6BCC28.2_00.]LOG]!><time="16:18:25.440-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:25.455-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?BCA20020-BCA00027-6F6BCC28.2_00]LOG]!><time="16:18:25.455-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:25.471-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:8734">
<![LOG[Found a secure policy.]LOG]!><time="16:18:25.471-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4557">
<![LOG[Trying to decode policy.]LOG]!><time="16:18:25.471-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4561">
<![LOG[Policy decoded.]LOG]!><time="16:18:25.486-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4596">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:25.486-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:25.486-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?BCA20020-BCA00027-6F6BCC28.2_00]LOG]!><time="16:18:25.486-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: BCA20020-BCA00027-6F6BCC28]LOG]!><time="16:18:25.486-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:25.486-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:25.486-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2030">
<![LOG[Downloading policy body BCA20022-BCA0002B-6F6BCC28.]LOG]!><time="16:18:25.486-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:25.486-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:25.486-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?BCA20022-BCA0002B-6F6BCC28.1_00.]LOG]!><time="16:18:25.486-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:25.486-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?BCA20022-BCA0002B-6F6BCC28.1_00]LOG]!><time="16:18:25.486-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:25.502-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:8734">
<![LOG[Found a secure policy.]LOG]!><time="16:18:25.518-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4557">
<![LOG[Trying to decode policy.]LOG]!><time="16:18:25.518-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4561">
<![LOG[Policy decoded.]LOG]!><time="16:18:25.518-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4596">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:25.518-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:25.518-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?BCA20022-BCA0002B-6F6BCC28.1_00]LOG]!><time="16:18:25.518-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: BCA20022-BCA0002B-6F6BCC28]LOG]!><time="16:18:25.518-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:25.518-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:25.518-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2030">
<![LOG[Downloading policy body BCA20023-BCA0002D-6F6BCC28.]LOG]!><time="16:18:25.518-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:25.518-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:25.518-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?BCA20023-BCA0002D-6F6BCC28.2_00.]LOG]!><time="16:18:25.518-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:25.518-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?BCA20023-BCA0002D-6F6BCC28.2_00]LOG]!><time="16:18:25.518-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:25.549-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:8734">
<![LOG[Found a secure policy.]LOG]!><time="16:18:25.549-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4557">
<![LOG[Trying to decode policy.]LOG]!><time="16:18:25.549-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4561">
<![LOG[Policy decoded.]LOG]!><time="16:18:25.549-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4596">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:25.549-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:25.549-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?BCA20023-BCA0002D-6F6BCC28.2_00]LOG]!><time="16:18:25.564-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: BCA20023-BCA0002D-6F6BCC28]LOG]!><time="16:18:25.564-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:25.564-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:25.564-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2030">
<![LOG[Downloading policy body BCA20024-BCA0002F-6F6BCC28.]LOG]!><time="16:18:25.564-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:25.564-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:25.564-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?BCA20024-BCA0002F-6F6BCC28.2_00.]LOG]!><time="16:18:25.564-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:25.564-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?BCA20024-BCA0002F-6F6BCC28.2_00]LOG]!><time="16:18:25.564-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:25.580-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:8734">
<![LOG[Found a secure policy.]LOG]!><time="16:18:25.596-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4557">
<![LOG[Trying to decode policy.]LOG]!><time="16:18:25.596-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4561">
<![LOG[Policy decoded.]LOG]!><time="16:18:25.596-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4596">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:25.596-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:25.596-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?BCA20024-BCA0002F-6F6BCC28.2_00]LOG]!><time="16:18:25.596-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: BCA20024-BCA0002F-6F6BCC28]LOG]!><time="16:18:25.596-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:25.596-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:25.596-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2030">
<![LOG[Downloading policy body BCA20026-BCA00038-6F6BCC28.]LOG]!><time="16:18:25.596-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:25.596-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:25.596-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?BCA20026-BCA00038-6F6BCC28.2_00.]LOG]!><time="16:18:25.596-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:25.596-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?BCA20026-BCA00038-6F6BCC28.2_00]LOG]!><time="16:18:25.596-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:25.627-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:8734">
<![LOG[Found a secure policy.]LOG]!><time="16:18:25.627-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4557">
<![LOG[Trying to decode policy.]LOG]!><time="16:18:25.627-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4561">
<![LOG[Policy decoded.]LOG]!><time="16:18:25.642-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4596">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:25.642-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:25.642-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?BCA20026-BCA00038-6F6BCC28.2_00]LOG]!><time="16:18:25.642-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: BCA20026-BCA00038-6F6BCC28]LOG]!><time="16:18:25.642-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:25.642-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:25.642-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2030">
<![LOG[Downloading policy body BCA20027-BCA0003B-6F6BCC28.]LOG]!><time="16:18:25.642-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:25.642-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:25.642-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?BCA20027-BCA0003B-6F6BCC28.3_00.]LOG]!><time="16:18:25.642-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:25.642-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?BCA20027-BCA0003B-6F6BCC28.3_00]LOG]!><time="16:18:25.642-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:25.674-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:8734">
<![LOG[Found a secure policy.]LOG]!><time="16:18:25.689-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4557">
<![LOG[Trying to decode policy.]LOG]!><time="16:18:25.689-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4561">
<![LOG[Policy decoded.]LOG]!><time="16:18:25.689-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4596">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:25.689-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:25.689-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?BCA20027-BCA0003B-6F6BCC28.3_00]LOG]!><time="16:18:25.689-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: BCA20027-BCA0003B-6F6BCC28]LOG]!><time="16:18:25.689-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:25.689-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:25.689-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2030">
<![LOG[Downloading policy body BCA20028-BCA0003D-6F6BCC28.]LOG]!><time="16:18:25.689-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:25.689-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:25.705-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?BCA20028-BCA0003D-6F6BCC28.2_00.]LOG]!><time="16:18:25.705-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:25.705-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?BCA20028-BCA0003D-6F6BCC28.2_00]LOG]!><time="16:18:25.705-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:25.736-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:8734">
<![LOG[Found a secure policy.]LOG]!><time="16:18:25.736-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4557">
<![LOG[Trying to decode policy.]LOG]!><time="16:18:25.736-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4561">
<![LOG[Policy decoded.]LOG]!><time="16:18:25.752-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4596">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:25.752-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:25.752-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?BCA20028-BCA0003D-6F6BCC28.2_00]LOG]!><time="16:18:25.752-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: BCA20028-BCA0003D-6F6BCC28]LOG]!><time="16:18:25.752-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:25.752-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:25.752-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2030">
<![LOG[This Task sequence is set for DownloadOnDemand]LOG]!><time="16:18:25.752-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:3079">
<![LOG[skipping Task Sequence BCA00021 because it is disabled.]LOG]!><time="16:18:25.752-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:1198">
<![LOG[This Task sequence is set for DownloadOnDemand]LOG]!><time="16:18:25.752-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:3079">
<![LOG[skipping Task Sequence BCA00022 because it is disabled.]LOG]!><time="16:18:25.752-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:1198">
<![LOG[This Task sequence is set for DownloadOnDemand]LOG]!><time="16:18:25.752-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:3079">
<![LOG[skipping Task Sequence BCA00027 because it is disabled.]LOG]!><time="16:18:25.752-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:1198">
<![LOG[This Task sequence is set for DownloadOnDemand]LOG]!><time="16:18:25.752-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:3079">
<![LOG[This Task sequence is set for DownloadOnDemand]LOG]!><time="16:18:25.767-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:3079">
<![LOG[skipping Task Sequence BCA0002D because it is disabled.]LOG]!><time="16:18:25.767-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:1198">
<![LOG[This Task sequence is set for DownloadOnDemand]LOG]!><time="16:18:25.767-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:3079">
<![LOG[This Task sequence is set for DownloadOnDemand]LOG]!><time="16:18:25.767-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:3079">
<![LOG[skipping Task Sequence BCA00038 because it is disabled.]LOG]!><time="16:18:25.767-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:1198">
<![LOG[This Task sequence is set for DownloadOnDemand]LOG]!><time="16:18:25.767-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:3079">
<![LOG[skipping Task Sequence BCA0003B because it is disabled.]LOG]!><time="16:18:25.767-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:1198">
<![LOG[This Task sequence is set for DownloadOnDemand]LOG]!><time="16:18:25.767-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:3079">
<![LOG[Retrieving collection variable policy.]LOG]!><time="16:18:25.767-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:1460">
<![LOG[Downloading policy body BCA0000A-{7c2c6294-f4ad-4bd4-a921-b75e73f8f2da}.]LOG]!><time="16:18:25.767-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:25.767-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:25.767-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?BCA0000A-{7c2c6294-f4ad-4bd4-a921-b75e73f8f2da}.1_00.]LOG]!><time="16:18:25.767-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:25.767-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?BCA0000A-{7c2c6294-f4ad-4bd4-a921-b75e73f8f2da}.1_00]LOG]!><time="16:18:25.783-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:25.783-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libsmsmessaging.cpp:8734">
<![LOG[Found a secure policy.]LOG]!><time="16:18:25.783-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4557">
<![LOG[Trying to decode policy.]LOG]!><time="16:18:25.783-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4561">
<![LOG[Policy decoded.]LOG]!><time="16:18:25.783-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4596">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="16:18:25.783-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 530, uncompressed size 1710.]LOG]!><time="16:18:25.783-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="ccmzlib.cpp:647">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32780, HashSize: 32 ]LOG]!><time="16:18:25.783-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 32, Computed Hash size: 32 ]LOG]!><time="16:18:25.783-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?BCA0000A-{7C2C6294-F4AD-4BD4-A921-B75E73F8F2DA}.1_00]LOG]!><time="16:18:25.783-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: BCA0000A-{7C2C6294-F4AD-4BD4-A921-B75E73F8F2DA}]LOG]!><time="16:18:25.783-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:25.783-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:25.783-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:2030">
<![LOG[Found 1 collection variables.]LOG]!><time="16:18:25.783-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1468">
<![LOG[Retrieving machine variable policy.]LOG]!><time="16:18:25.798-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tspolicy.cpp:1479">
<![LOG[Found 0 machine variables.]LOG]!><time="16:18:25.798-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tspolicy.cpp:1487">
<![LOG[setting machine/collection variables in the task sequencing environment.]LOG]!><time="16:18:25.798-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="utils.cpp:138">
<![LOG[Adding collection variable OSDComputerName (Precedence = 9)]LOG]!><time="16:18:25.798-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="utils.cpp:170">
<![LOG[Exiting TSMediaWizardControl::GetPolicy.]LOG]!><time="16:18:25.798-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsmediawizardcontrol.cpp:1335">
<![LOG[Running Wizard in Interactive mode]LOG]!><time="16:18:25.798-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediawizardcontrol.cpp:2386">
<![LOG[Loading Media Variables from "X:\sms\data\variables.dat"]LOG]!><time="16:18:25.798-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsremovablemedia.cpp:322">
<![LOG[CryptDecrypt (hKey, 0, 1, 0, pData, &dwDecryptedLen), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\smscrypt\windes.cpp,150)]LOG]!><time="16:18:25.798-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="windes.cpp:150">
<![LOG[sMS::Crypto::DES::DecryptBuffer( (BYTE*)pszPassword, (DWORD)(wcslen(pszPassword)*sizeof(WCHAR)), encryptedBuffer.getBuffer(), (DWORD)encryptedBuffer.size(), pbDecryptedBuffer, dwDecryptedBufferSize ), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\tscore\tsremovablemedia.cpp,387)]LOG]!><time="16:18:25.798-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsremovablemedia.cpp:387">
<![LOG[Activating Welcome Page.]LOG]!><time="16:18:25.798-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsmediawelcomepage.cpp:131">
<![LOG[Loading bitmap]LOG]!><time="16:18:25.798-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmbootstrap.cpp:1061">
<![LOG[WelcomePage::OnWizardNext()]LOG]!><time="16:18:28.419-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsmediawelcomepage.cpp:340">
<![LOG[Loading Media Variables from "X:\sms\data\variables.dat"]LOG]!><time="16:18:28.419-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsremovablemedia.cpp:322">
<![LOG[CryptDecrypt (hKey, 0, 1, 0, pData, &dwDecryptedLen), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\smscrypt\windes.cpp,150)]LOG]!><time="16:18:28.419-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="windes.cpp:150">
<![LOG[sMS::Crypto::DES::DecryptBuffer( (BYTE*)pszPassword, (DWORD)(wcslen(pszPassword)*sizeof(WCHAR)), encryptedBuffer.getBuffer(), (DWORD)encryptedBuffer.size(), pbDecryptedBuffer, dwDecryptedBufferSize ), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\tscore\tsremovablemedia.cpp,387)]LOG]!><time="16:18:28.419-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsremovablemedia.cpp:387">
<![LOG[skipping Confirmation Page.]LOG]!><time="16:18:28.419-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsmediaconfirmationpage.cpp:170">
<![LOG[Activating Task Sequence Selection Page.]LOG]!><time="16:18:28.419-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsmediataskselectionpage.cpp:112">
<![LOG[TaskSelectionPage::OnWizardNext()]LOG]!><time="16:18:32.850-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsmediataskselectionpage.cpp:137">
<![LOG[Activating Variables Selection Page.]LOG]!><time="16:18:32.850-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsmediavariablesselectionpage.cpp:149">
<![LOG[Activating Resolve Progress Page.]LOG]!><time="16:18:34.082-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsmediaresolveprogresspage.cpp:76">
<![LOG[ResolveProgressPage::OnWizardNext()]LOG]!><time="16:18:34.082-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsmediaresolveprogresspage.cpp:113">
<![LOG[spawned thread 800 to resolve task sequence dependencies.]LOG]!><time="16:18:34.082-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediaresolveprogresspage.cpp:142">
<![LOG[No content source files for selected task sequence.]LOG]!><time="16:18:34.082-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:3316">
<![LOG[Getting policy for CCM_SoftwareDistribution[AdvertID="BCA20028", PackageID="BCA00004", ProgramID="*"]]LOG]!><time="16:18:34.082-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2379">
<![LOG[Downloading policy body DEP-BCA20028-BCA00004-6F6BCC28.]LOG]!><time="16:18:34.082-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:34.082-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:34.082-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?DEP-BCA20028-BCA00004-6F6BCC28.1_00.]LOG]!><time="16:18:34.082-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:34.082-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?DEP-BCA20028-BCA00004-6F6BCC28.1_00]LOG]!><time="16:18:34.082-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:8734">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?DEP-BCA20028-BCA00004-6F6BCC28.1_00]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: DEP-BCA20028-BCA00004-6F6BCC28]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2030">
<![LOG[Getting content hash value for reference package BCA00004 from policy]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:2455">
<![LOG[successfully resolved policy for BCA00004.]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2510">
<![LOG[Resolving content location for BCA00004]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2527">
<![LOG[Getting network access account.]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1788">
<![LOG[Downloading policy body {64aa0ea3-9339-442a-83c9-35ae1f247559}.]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?{64aa0ea3-9339-442a-83c9-35ae1f247559}.4_00.]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?{64aa0ea3-9339-442a-83c9-35ae1f247559}.4_00]LOG]!><time="16:18:34.098-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.113-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:8734">
<![LOG[Found a secure policy.]LOG]!><time="16:18:34.113-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4557">
<![LOG[Trying to decode policy.]LOG]!><time="16:18:34.113-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4561">
<![LOG[Policy decoded.]LOG]!><time="16:18:34.113-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4596">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:34.113-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:34.113-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?{64AA0EA3-9339-442A-83C9-35AE1F247559}.4_00]LOG]!><time="16:18:34.113-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: {64AA0EA3-9339-442A-83C9-35AE1F247559}]LOG]!><time="16:18:34.113-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:34.113-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:34.113-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2030">
<![LOG[Found NetworkAccessUsername/NetworkAccessPassword from NAAConfig CCM_NetworkAccessAccount]LOG]!><time="16:18:34.113-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1702">
<![LOG[Network Access Account has a non-empty value]LOG]!><time="16:18:34.113-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1734">
<![LOG[Getting local network information.]LOG]!><time="16:18:34.113-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="resolvesource.cpp:2002">
<![LOG[DhcpGetOriginalSubnetMask entry point is supported.]LOG]!><time="16:18:34.113-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmiputil.cpp:117">
<![LOG[begin checking Alternate Network Configuration]LOG]!><time="16:18:34.113-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="ccmiputil.cpp:1069">
<![LOG[spNamespace.Open(sNamespacePath), HRESULT=8004100e (e:\nts_sccm_release\sms\framework\ccmutillib\ccmiputil.cpp,1083)]LOG]!><time="16:18:34.129-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmiputil.cpp:1083">
<![LOG[Finished checking Alternate Network Configuration]LOG]!><time="16:18:34.129-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="ccmiputil.cpp:1146">
<![LOG[Adapter {6E97864A-0C2E-4BFD-99F0-2EFE24A49E59} is DHCP enabled. Checking quarantine status.]LOG]!><time="16:18:34.129-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmiputil.cpp:416">
<![LOG[Executing content location request for BCA00004:6 as 989e408e-9e3f-4209-af6d-d16b77dc4a2e ]LOG]!><time="16:18:34.129-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="resolvesource.cpp:2008">
<![LOG[sending RequestContentLocations for BCA00004]LOG]!><time="16:18:34.129-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:3458">
<![LOG[setting message signatures.]LOG]!><time="16:18:34.144-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:18:34.144-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:18:34.144-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:8734">
<![LOG[Decompressing reply body.]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:2360">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 524, uncompressed size 1624.]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:647">
<![LOG[Location Reply: <ContentLocationReply SchemaVersion="1.00"><ContentInfo PackageFlags="1024"/><Sites><Site><MPSite SiteCode="BCA" MasterSiteCode="BCA" SiteLocality="LOCAL" IISPreferedPort="80" IISSSLPreferedPort="443"/><LocationRecords><LocationRecord><URL Name="http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSPKG$/BCA00004" Signature="http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSSIG$/BCA00004"/><ADSite Name="Default-First-Site-Name"/><IPSubnets><IPSubnet Address="192.168.1.0"/><IPSubnet Address=""/></IPSubnets><Metric Value=""/><Version>7678</Version><Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities><ServerRemoteName>BCA-SCCM-DS.SCCM.live</ServerRemoteName><DPType>SERVER</DPType><Windows Trust="0"/><Locality>LOCAL</Locality></LocationRecord></LocationRecords></Site></Sites></ContentLocationReply>]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:3485">
<![LOG[MCS server: ]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:3672">
<![LOG[Found location: http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSPKG$/BCA00004]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:3760">
<![LOG[Local=1]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:3797">
<![LOG[Filtering Content Locations. There are 1 locations found]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="resolvesource.cpp:2041">
<![LOG[Found location. SMB Path is , URL list size is 1]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="resolvesource.cpp:2052">
<![LOG[	Adding http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSPKG$/BCA00004 to Matched Subnet DP list.]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="resolvesource.cpp:2085">
<![LOG[Found 1 DPs in subnet, 0 DPs in local site, 0 DPs in remote location and 0 Multicast DPs]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="resolvesource.cpp:2150">
<![LOG[shuffling HTTP matched subnet DP list.]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="resolvesource.cpp:2166">
<![LOG[skipping remote content locations.]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="resolvesource.cpp:2308">
<![LOG[bCA00004 content location: ]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2594">
<![LOG[bCA00004 http content location: http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSPKG$/BCA00004]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2612">
<![LOG[Getting policy for CCM_SoftwareDistribution[AdvertID="BCA20028", PackageID="BCA0003C", ProgramID="*"]]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2379">
<![LOG[Downloading policy body DEP-BCA20028-BCA0003C-6F6BCC28.]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?DEP-BCA20028-BCA0003C-6F6BCC28.1_00.]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?DEP-BCA20028-BCA0003C-6F6BCC28.1_00]LOG]!><time="16:18:34.207-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:8734">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?DEP-BCA20028-BCA0003C-6F6BCC28.1_00]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: DEP-BCA20028-BCA0003C-6F6BCC28]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2030">
<![LOG[Getting content hash value for reference package BCA0003C from policy]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:2455">
<![LOG[successfully resolved policy for BCA0003C.]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2510">
<![LOG[Resolving content location for BCA0003C]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2527">
<![LOG[Getting network access account.]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1788">
<![LOG[Found NetworkAccessUsername/NetworkAccessPassword from NAAConfig CCM_NetworkAccessAccount]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1702">
<![LOG[Network Access Account has a non-empty value]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1734">
<![LOG[Getting local network information.]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="resolvesource.cpp:2002">
<![LOG[DHCP entry points already initialized.]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmiputil.cpp:75">
<![LOG[begin checking Alternate Network Configuration]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="ccmiputil.cpp:1069">
<![LOG[spNamespace.Open(sNamespacePath), HRESULT=8004100e (e:\nts_sccm_release\sms\framework\ccmutillib\ccmiputil.cpp,1083)]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmiputil.cpp:1083">
<![LOG[Finished checking Alternate Network Configuration]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="ccmiputil.cpp:1146">
<![LOG[Adapter {6E97864A-0C2E-4BFD-99F0-2EFE24A49E59} is DHCP enabled. Checking quarantine status.]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmiputil.cpp:416">
<![LOG[Executing content location request for BCA0003C:1 as 989e408e-9e3f-4209-af6d-d16b77dc4a2e ]LOG]!><time="16:18:34.222-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="resolvesource.cpp:2008">
<![LOG[sending RequestContentLocations for BCA0003C]LOG]!><time="16:18:34.238-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:3458">
<![LOG[setting message signatures.]LOG]!><time="16:18:34.238-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:18:34.238-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:18:34.238-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:8734">
<![LOG[Decompressing reply body.]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:2360">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 528, uncompressed size 1632.]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:647">
<![LOG[Location Reply: <ContentLocationReply SchemaVersion="1.00"><ContentInfo PackageFlags="16777216"/><Sites><Site><MPSite SiteCode="BCA" MasterSiteCode="BCA" SiteLocality="LOCAL" IISPreferedPort="80" IISSSLPreferedPort="443"/><LocationRecords><LocationRecord><URL Name="http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSPKG$/BCA0003C" Signature="http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSSIG$/BCA0003C"/><ADSite Name="Default-First-Site-Name"/><IPSubnets><IPSubnet Address="192.168.1.0"/><IPSubnet Address=""/></IPSubnets><Metric Value=""/><Version>7678</Version><Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities><ServerRemoteName>BCA-SCCM-DS.SCCM.live</ServerRemoteName><DPType>SERVER</DPType><Windows Trust="0"/><Locality>LOCAL</Locality></LocationRecord></LocationRecords></Site></Sites></ContentLocationReply>]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:3485">
<![LOG[MCS server: ]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:3672">
<![LOG[Found location: http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSPKG$/BCA0003C]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:3760">
<![LOG[Local=1]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:3797">
<![LOG[Filtering Content Locations. There are 1 locations found]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="resolvesource.cpp:2041">
<![LOG[Found location. SMB Path is , URL list size is 1]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="resolvesource.cpp:2052">
<![LOG[	Adding http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSPKG$/BCA0003C to Matched Subnet DP list.]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="resolvesource.cpp:2085">
<![LOG[Found 1 DPs in subnet, 0 DPs in local site, 0 DPs in remote location and 0 Multicast DPs]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="resolvesource.cpp:2150">
<![LOG[shuffling HTTP matched subnet DP list.]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="resolvesource.cpp:2166">
<![LOG[skipping remote content locations.]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="resolvesource.cpp:2308">
<![LOG[bCA0003C content location: ]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2594">
<![LOG[bCA0003C http content location: http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSPKG$/BCA0003C]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2612">
<![LOG[No need to register providers]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tsmbootstraputil.cpp:954">
<![LOG[Registering the Progress UI.]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1678">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="commandline.cpp:228">
<![LOG[set command line: "X:\sms\bin\x64\TsProgressUI.exe" /Register:WinPE]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="commandline.cpp:705">
<![LOG[Executing command line: "X:\sms\bin\x64\TsProgressUI.exe" /Register:WinPE]LOG]!><time="16:18:34.285-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="commandline.cpp:801">
<![LOG[==========[ TsProgressUI started in process 1028 ]==========]LOG]!><time="16:18:34.300-600" date="01-23-2012" component="TsProgressUI" context="" type="1" thread="1032" file="winmain.cpp:329">
<![LOG[Command line: "X:\sms\bin\x64\TsProgressUI.exe" /Register:WinPE]LOG]!><time="16:18:34.300-600" date="01-23-2012" component="TsProgressUI" context="" type="0" thread="1032" file="winmain.cpp:332">
<![LOG[Registering COM classes]LOG]!><time="16:18:34.300-600" date="01-23-2012" component="TsProgressUI" context="" type="1" thread="1032" file="winmain.cpp:187">
<![LOG[sbModulePath = X:\sms\bin\x64\TsProgressUI.exe]LOG]!><time="16:18:34.300-600" date="01-23-2012" component="TsProgressUI" context="" type="1" thread="1032" file="tsprogressuiclass.cpp:625">
<![LOG[unregistering class objects]LOG]!><time="16:18:34.300-600" date="01-23-2012" component="TsProgressUI" context="" type="1" thread="1032" file="winmain.cpp:495">
<![LOG[shutdown complete.]LOG]!><time="16:18:34.300-600" date="01-23-2012" component="TsProgressUI" context="" type="1" thread="1032" file="winmain.cpp:512">
<![LOG[Process completed with exit code 0]LOG]!><time="16:18:34.300-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="commandline.cpp:1098">
<![LOG[successfully registered TS Progress UI.]LOG]!><time="16:18:34.300-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="utils.cpp:2034">
<![LOG[Creating the Task Sequencing Environment.]LOG]!><time="16:18:34.300-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1685">
<![LOG[setting Media Variables in Task Sequencing Environment.]LOG]!><time="16:18:34.300-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1691">
<![LOG[setting WinPE Flag in the Task Sequencing Environment.]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1715">
<![LOG[setting Media Type Flag in the Task Sequencing Environment.]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1721">
<![LOG[setting Local Computer Name in the Task Sequencing Environment.]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1727">
<![LOG[setting Selected Task Sequence Information Task Sequencing Environment.]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1734">
<![LOG[setting selected task sequence information in the environment.]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:3401">
<![LOG[::CompressBuffer(65536,-1)]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:696">
<![LOG[Compression (zlib) succeeded: original size 21774, compressed size 2674.]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:485">
<![LOG[setting source for BCA00004 to ]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="resolvesource.cpp:3853">
<![LOG[setting _SMSTSHTTPBCA00004 to http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSPKG$/BCA00004]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:3540">
<![LOG[setting _SMSTSPKGFLAGSBCA00004 to 1024]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:3564">
<![LOG[::CompressBuffer(65536,-1)]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:696">
<![LOG[Compression (zlib) succeeded: original size 21658, compressed size 2661.]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:485">
<![LOG[setting source for BCA0003C to ]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="resolvesource.cpp:3853">
<![LOG[setting _SMSTSHTTPBCA0003C to http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSPKG$/BCA0003C]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:3540">
<![LOG[setting _SMSTSPKGFLAGSBCA0003C to 16777216]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:3564">
<![LOG[initializing the local data path.]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1740">
<![LOG[user did not specify local data drive]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="utils.cpp:1198">
<![LOG[Volume C:\ has 69702709248 bytes of free space]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="utils.cpp:360">
<![LOG[Volume D:\ is not a fixed hard drive]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="utils.cpp:341">
<![LOG[Volume X:\ is not a fixed hard drive]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="utils.cpp:341">
<![LOG[TSM root drive = C:\]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="utils.cpp:376">
<![LOG[C:\_SMSTaskSequence folder exists, removing]LOG]!><time="16:18:34.316-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="utils.cpp:1059">
<![LOG[Creating directory C:\_SMSTaskSequence]LOG]!><time="16:18:34.332-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="utils.cpp:1097">
<![LOG[updated security on object C:\_SMSTaskSequence.]LOG]!><time="16:18:34.347-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="utils.cpp:1019">
<![LOG[setting Task Sequence User State Path to "%_SMSTSMDataPath%\UserState".]LOG]!><time="16:18:34.347-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:144">
<![LOG[setting Network Access Account Information in Task Sequencing Environment.]LOG]!><time="16:18:34.347-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1763">
<![LOG[Found NetworkAccessUsername/NetworkAccessPassword from NAAConfig CCM_NetworkAccessAccount]LOG]!><time="16:18:34.347-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1702">
<![LOG[Network Access Account has a non-empty value]LOG]!><time="16:18:34.347-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1734">
<![LOG[Downloading policy body {8780dd4c-74d7-4996-82e5-b2908c8aeb4e}.]LOG]!><time="16:18:34.347-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:34.347-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:34.347-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?{8780dd4c-74d7-4996-82e5-b2908c8aeb4e}.2_00.]LOG]!><time="16:18:34.347-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:34.347-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?{8780dd4c-74d7-4996-82e5-b2908c8aeb4e}.2_00]LOG]!><time="16:18:34.363-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:8734">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?{8780DD4C-74D7-4996-82E5-B2908C8AEB4E}.2_00]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: {8780DD4C-74D7-4996-82E5-B2908C8AEB4E}]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2030">
<![LOG[Found property CCM_ClientAgentConfig.BrandingTitle = Business Computing Australia]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1654">
<![LOG[setting Client ID in Task Sequencing Environment.]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1797">
<![LOG[Not using the unknown machine name]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tsmediawizardcontrol.cpp:1807">
<![LOG[setting SysHealthConfig policy in the environment.]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1826">
<![LOG[Downloading policy body {264c3dcd-af3c-4e7f-af18-9b2e02054b1e}.]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?{264c3dcd-af3c-4e7f-af18-9b2e02054b1e}.1_00.]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?{264c3dcd-af3c-4e7f-af18-9b2e02054b1e}.1_00]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:8734">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?{264C3DCD-AF3C-4E7F-AF18-9B2E02054B1E}.1_00]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: {264C3DCD-AF3C-4E7F-AF18-9B2E02054B1E}]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:34.378-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2030">
<![LOG[::CompressBuffer(65536,-1)]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:696">
<![LOG[Compression (zlib) succeeded: original size 4652, compressed size 692.]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:485">
<![LOG[setting SoftUpdConfig policy in the environment.]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1834">
<![LOG[Downloading policy body {78a544df-4189-4e6e-92a7-14bc0a082f19}.]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?{78a544df-4189-4e6e-92a7-14bc0a082f19}.2_00.]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?{78a544df-4189-4e6e-92a7-14bc0a082f19}.2_00]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:8734">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?{78A544DF-4189-4E6E-92A7-14BC0A082F19}.2_00]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: {78A544DF-4189-4E6E-92A7-14BC0A082F19}]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2030">
<![LOG[::CompressBuffer(65536,-1)]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:696">
<![LOG[Compression (zlib) succeeded: original size 17050, compressed size 1654.]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:485">
<![LOG[setting SoftDistClient config policy in the environment.]LOG]!><time="16:18:34.394-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1842">
<![LOG[Downloading policy body {dccb4f9d-d8a3-40d2-9dd7-950422c21a23}.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?{dccb4f9d-d8a3-40d2-9dd7-950422c21a23}.1_00.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?{dccb4f9d-d8a3-40d2-9dd7-950422c21a23}.1_00]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:8734">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?{DCCB4F9D-D8A3-40D2-9DD7-950422C21A23}.1_00]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: {DCCB4F9D-D8A3-40D2-9DD7-950422C21A23}]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2030">
<![LOG[::CompressBuffer(65536,-1)]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:696">
<![LOG[Compression (zlib) succeeded: original size 13742, compressed size 1327.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:485">
<![LOG[setting software update policy in the environment.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1850">
<![LOG[::CompressBuffer(65536,-1)]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:696">
<![LOG[bad zlib compression ratio: original size 32, compressed size 38.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:476">
<![LOG[setting software update policy in the environment.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1858">
<![LOG[Downloading policy body {642f6f2d-6857-4dbf-a6ce-6730406b42b6}.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?{642f6f2d-6857-4dbf-a6ce-6730406b42b6}.7_00.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:34.410-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?{642f6f2d-6857-4dbf-a6ce-6730406b42b6}.7_00]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:8734">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?{642F6F2D-6857-4DBF-A6CE-6730406B42B6}.7_00]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: {642F6F2D-6857-4DBF-A6CE-6730406B42B6}]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2030">
<![LOG[::CompressBuffer(65536,-1)]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:696">
<![LOG[Compression (zlib) succeeded: original size 5864, compressed size 802.]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:485">
<![LOG[setting quarantine policy in the environment.]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1866">
<![LOG[Downloading policy body {1b899c79-6935-45b8-98c4-8b25db6daf6c}.]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?{1b899c79-6935-45b8-98c4-8b25db6daf6c}.1_00.]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?{1b899c79-6935-45b8-98c4-8b25db6daf6c}.1_00]LOG]!><time="16:18:34.425-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:8734">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?{1B899C79-6935-45B8-98C4-8B25DB6DAF6C}.1_00]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: {1B899C79-6935-45B8-98C4-8B25DB6DAF6C}]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2030">
<![LOG[::CompressBuffer(65536,-1)]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:696">
<![LOG[Compression (zlib) succeeded: original size 2274, compressed size 567.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:485">
<![LOG[setting NAAConfig policy in the environment.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1874">
<![LOG[::CompressBuffer(65536,-1)]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:696">
<![LOG[Compression (zlib) succeeded: original size 2908, compressed size 760.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:485">
<![LOG[setting CIVesionInfo policy in the environment.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1882">
<![LOG[::CompressBuffer(65536,-1)]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:696">
<![LOG[bad zlib compression ratio: original size 32, compressed size 38.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:476">
<![LOG[setting RebootSettingsConfig policy in the environment.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tsmediawizardcontrol.cpp:1890">
<![LOG[Downloading policy body {81921ef9-d60a-46ac-89e6-58a30fdb9c15}.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tspolicy.cpp:1992">
<![LOG[Preparing Policy Body Request.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1995">
<![LOG[	Setting transport.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1996">
<![LOG[	Setting policy location = http://<mp>/SMS_MP/.sms_pol?{81921ef9-d60a-46ac-89e6-58a30fdb9c15}.1_00.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:1998">
<![LOG[Executing Policy Body Request.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2015">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  GET /SMS_MP/.sms_pol?{81921ef9-d60a-46ac-89e6-58a30fdb9c15}.1_00]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libsmsmessaging.cpp:8734">
<![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32772, HashSize: 20 ]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:481">
<![LOG[Expected Hash size: 20, Computed Hash size: 20 ]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="libcrypt.cpp:528">
<![LOG[Request location: HTTP://<MP>/SMS_MP/.SMS_POL?{81921EF9-D60A-46AC-89E6-58A30FDB9C15}.1_00]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4805">
<![LOG[Response ID: {81921EF9-D60A-46AC-89E6-58A30FDB9C15}]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="libsmsmessaging.cpp:4806">
<![LOG[Reading Policy Body.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2023">
<![LOG[Parsing Policy Body.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="tspolicy.cpp:2030">
<![LOG[::CompressBuffer(65536,-1)]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:696">
<![LOG[Compression (zlib) succeeded: original size 1556, compressed size 432.]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="ccmzlib.cpp:485">
<![LOG[Launch mode is: PXE]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tsmediawizardcontrol.cpp:1917">
<![LOG[bootpackageID: BCA00004  AssociatedWInPE: BCA00004  SourceVersion: 6  AssociatedSourceVersion: 6]LOG]!><time="16:18:34.441-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tsmediawizardcontrol.cpp:2034">
<![LOG[WinPE assocated with task sequence is the same as the boot media.]LOG]!><time="16:18:34.456-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tsmediawizardcontrol.cpp:2050">
<![LOG[setting time zone info to ]LOG]!><time="16:18:34.456-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tsmediawizardcontrol.cpp:2056">
<![LOG[No TimeZone information to set.]LOG]!><time="16:18:34.456-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tsmbootstraputil.cpp:155">
<![LOG[starting Task Sequence Manager.]LOG]!><time="16:18:34.456-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tsmediawizardcontrol.cpp:2066">
<![LOG[executing TS Manager not in full media]LOG]!><time="16:18:34.456-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tsmbootstraputil.cpp:491">
<![LOG[executing TS Manager in x:\sms\bin\x64]LOG]!><time="16:18:34.456-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tsmbootstraputil.cpp:502">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="16:18:34.456-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="commandline.cpp:228">
<![LOG[set command line: "TsManager.exe"]LOG]!><time="16:18:34.456-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="800" file="commandline.cpp:705">
<![LOG[Executing command line: "TsManager.exe"]LOG]!><time="16:18:34.456-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="commandline.cpp:801">
<![LOG[successfully intialized Logging for TS Manager.]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:621">
<![LOG[Commandline: "TsManager.exe"]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:59">
<![LOG[/service parameter found at index: -1]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:66">
<![LOG[/standalone parameter found at index: -1]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:76">
<![LOG[/noclient parameter found at index: -1]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:97">
<![LOG[successfully registered Task Sequencing COM Interface.]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="environmentlib.cpp:798">
<![LOG[Executing as a standalone exe]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:639">
<![LOG[initializing TS Environment]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:884">
<![LOG[Opening Task Sequencing Environment]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:921">
<![LOG[Env variable _SMSTSProtectedPaths set to %OSDStateStorePath%;%_SMSTSClientCache%;%_SMSTSNewClientCachePathToCleanup%]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:856">
<![LOG[!sVolumeID.empty(), HRESULT=80004005 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,477)]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="resolvesource.cpp:477">
<![LOG[DeleteFileW(sVolumeIDFile.c_str()), HRESULT=80070002 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,518)]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="resolvesource.cpp:518">
<![LOG[pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,254)]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="resolvesource.cpp:254">
<![LOG[pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,254)]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="resolvesource.cpp:254">
<![LOG[pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,254)]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="resolvesource.cpp:254">
<![LOG[pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,254)]LOG]!><time="16:18:34.472-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="resolvesource.cpp:254">
<![LOG[Executing in WinPE]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:1051">
<![LOG[_SMSTSReturnToGINA variable set to ]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:1064">
<![LOG[initializing TS Engine]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:1230">
<![LOG[Getting TaskSequenceXML from environment]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:1238">
<![LOG[Parsing task sequence . . .]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:1259">
<![LOG[Loaded TS from string]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:86">
<![LOG[Parsing task sequence to get schema version]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:106">
<![LOG[Task sequence version 3.00]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="tsmanager.cpp:1264">
<![LOG[Task sequence schema version is 3.00]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="tsmanager.cpp:1191">
<![LOG[Current supported schema version is 3.10 and 3.00]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="tsmanager.cpp:1198">
<![LOG[Processing get action table request]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:139">
<![LOG[Got root node now getting list of all child elements]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:150">
<![LOG[There are 3 first level steps or groups]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:318">
<![LOG[Processing group]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:443">
<![LOG[
Parsing group node: Capture Files and Settings]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:365">
<![LOG[Description: Actions to capture files and settings in the original operating system]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:369">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:373">
<![LOG[Disable: ]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:381">
<![LOG[A condition is associated with the step found]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:659">
<![LOG[Found and operator.]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:737">
<![LOG[There are 1 operands]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:772">
<![LOG[**Processing expression node]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:781">
<![LOG[Found SMS_TaskSequence_VariableConditionExpression expression.]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:806">
<![LOG[**In ProcessBuiltInCondition node: expression]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:898">
<![LOG[There are 3 operands in the built in action]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:915">
<![LOG[Operand Operator=equals]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:929">
<![LOG[Operand Value=false]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:929">
<![LOG[Operand Variable=_SMSTSInWinPE]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:929">
<![LOG[successfully added 3 condition parameters]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="tsxml.cpp:994">
<![LOG[Adding begin group instruction at 0]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:393">
<![LOG[There are 1 first level steps or groups]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:318">
<![LOG[
Parsing step node: Capture Network Settings]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:483">
<![LOG[Run in attribute: FullOS]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:579">
<![LOG[Variable name: OSDMigrateAdapterSettings]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDMigrateNetworkMembership]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Action command line: osdnetsettings.exe capture netmembership:%OSDMigrateNetworkMembership% adapters:%OSDMigrateAdapterSettings%]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:522">
<![LOG[Adding instruction at 1]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:524">
<![LOG[Processed all elements]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:333">
<![LOG[Adding end group instruction at 2]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:402">
<![LOG[The next instruction after group will be at 3]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:408">
<![LOG[Processing group]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:443">
<![LOG[
Parsing group node: Install Operating System]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:365">
<![LOG[Description: Actions to run in Windows PE to install and configure the image]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:369">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:373">
<![LOG[Disable: ]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:381">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:670">
<![LOG[Adding begin group instruction at 3]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:393">
<![LOG[There are 6 first level steps or groups]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:318">
<![LOG[
Parsing step node: Restart in Windows PE]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:474">
<![LOG[A condition is associated with the step found]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:659">
<![LOG[Found and operator.]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:737">
<![LOG[There are 1 operands]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:772">
<![LOG[**Processing expression node]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:781">
<![LOG[Found SMS_TaskSequence_VariableConditionExpression expression.]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:806">
<![LOG[**In ProcessBuiltInCondition node: expression]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:898">
<![LOG[There are 3 operands in the built in action]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:915">
<![LOG[Operand Operator=equals]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:929">
<![LOG[Operand Value=false]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:929">
<![LOG[Operand Variable=_SMSTSInWinPE]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:929">
<![LOG[successfully added 3 condition parameters]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="tsxml.cpp:994">
<![LOG[Disable: ]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:579">
<![LOG[Variable name: SMSRebootMessage]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: SMSRebootTimeout]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Action command line: smsboot.exe /target:WinPE]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:522">
<![LOG[Adding instruction at 4]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Partition Disk 0]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:458">
<![LOG[Description: Actions to partition and format the new machine]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:474">
<![LOG[A condition is associated with the step found]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:659">
<![LOG[Found and operator.]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:737">
<![LOG[There are 2 operands]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:772">
<![LOG[**Processing expression node]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:781">
<![LOG[Found SMS_TaskSequence_VariableConditionExpression expression.]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:806">
<![LOG[**In ProcessBuiltInCondition node: expression]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:898">
<![LOG[There are 2 operands in the built in action]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:915">
<![LOG[Operand Operator=notExists]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:929">
<![LOG[Operand Variable=_SMSTSClientCache]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:929">
<![LOG[successfully added 3 condition parameters]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="tsxml.cpp:994">
<![LOG[**Processing expression node]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:781">
<![LOG[Found SMS_TaskSequence_VariableConditionExpression expression.]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:806">
<![LOG[**In ProcessBuiltInCondition node: expression]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:898">
<![LOG[There are 3 operands in the built in action]LOG]!><time="16:18:34.488-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:915">
<![LOG[Operand Operator=notEquals]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:929">
<![LOG[Operand Value=OEMMedia]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:929">
<![LOG[Operand Variable=_SMSTSMediaType]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:929">
<![LOG[successfully added 3 condition parameters]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="tsxml.cpp:994">
<![LOG[Disable: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPE]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:579">
<![LOG[Variable name: OSDDiskIndex]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDDiskType]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDDiskpartBiosCompatibilityMode]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDGPTBootDisk]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitionStyle]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0Bootable]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0FileSystem]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0QuickFormat]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0Size]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0SizeUnits]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0Type]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0VolumeName]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Action command line: osddiskpart.exe]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:522">
<![LOG[Adding instruction at 5]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Apply Operating System]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:458">
<![LOG[Description: Actions to apply operating system]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPE]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:579">
<![LOG[Variable name: OSDImageIndex]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDInstallEditionIndex]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Action command line: OSDApplyOS.exe /image:BCA0003C,%OSDImageIndex%]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:522">
<![LOG[Adding instruction at 6]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Apply Windows Settings]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:458">
<![LOG[Description: Actions to apply Windows settings]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPE]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:579">
<![LOG[Variable name: OSDLocalAdminPassword]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDComputerName]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDProductKey]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDRandomAdminPassword]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDRegisteredOrgName]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDRegisteredUserName]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDServerLicenseConnectionLimit]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDTimeZone]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Action command line: osdwinsettings.exe /config]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:522">
<![LOG[Adding instruction at 7]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Apply Network Settings]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:458">
<![LOG[Description: Actions to configure network settings]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:579">
<![LOG[Variable name: OSDNetworkJoinType]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDWorkgroupName]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Action command line: osdnetsettings.exe configure]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:522">
<![LOG[Adding instruction at 8]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Apply Device Drivers]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:474">
<![LOG[A condition is associated with the step found]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:659">
<![LOG[Found and operator.]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:737">
<![LOG[There are 1 operands]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:772">
<![LOG[**Processing expression node]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:781">
<![LOG[Found SMS_TaskSequence_VariableConditionExpression expression.]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:806">
<![LOG[**In ProcessBuiltInCondition node: expression]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:898">
<![LOG[There are 3 operands in the built in action]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:915">
<![LOG[Operand Operator=notEquals]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:929">
<![LOG[Operand Value=FullMedia]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:929">
<![LOG[Operand Variable=_SMSTSMediaType]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:929">
<![LOG[successfully added 3 condition parameters]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="tsxml.cpp:994">
<![LOG[Disable: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPE]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:579">
<![LOG[Variable name: OSDAutoApplyDriverBestMatch]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: OSDAllowUnsignedDriver]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Action command line: osddriverclient.exe /auto /bestmatch:%OSDAutoApplyDriverBestMatch% /unsigned:%OSDAllowUnsignedDriver%]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:522">
<![LOG[Adding instruction at 9]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:524">
<![LOG[Processed all elements]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:333">
<![LOG[Adding end group instruction at 10]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:402">
<![LOG[The next instruction after group will be at 11]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:408">
<![LOG[Processing group]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:443">
<![LOG[
Parsing group node: Setup Operating System]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:365">
<![LOG[Description: Setup Operating System]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:369">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:373">
<![LOG[Disable: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:381">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:670">
<![LOG[Adding begin group instruction at 11]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:393">
<![LOG[There are 6 first level steps or groups]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:318">
<![LOG[
Parsing step node: Restart Computer]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:579">
<![LOG[Variable name: SMSRebootMessage]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: SMSRebootTimeout]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Action command line: smsboot.exe /target:HD]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:522">
<![LOG[Adding instruction at 12]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:524">
<![LOG[
Parsing step node: CLS0001]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:466">
<![LOG[successCodeList: 0 3010]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:579">
<![LOG[Variable name: SMSTSDisableWow64Redirection]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSTSRunCommandLineAsUser]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: WorkingDirectory]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Action command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0001.cmd]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:522">
<![LOG[Adding instruction at 13]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:524">
<![LOG[
Parsing step node: CLS0002]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:466">
<![LOG[successCodeList: 0 3010]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:579">
<![LOG[Variable name: SMSTSDisableWow64Redirection]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSTSRunCommandLineAsUser]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: WorkingDirectory]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Action command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0002.cmd]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:522">
<![LOG[Adding instruction at 14]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:524">
<![LOG[
Parsing step node: CLS0003]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:466">
<![LOG[successCodeList: 0 3010]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:579">
<![LOG[Variable name: SMSTSDisableWow64Redirection]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSTSRunCommandLineAsUser]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: WorkingDirectory]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Action command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0003.cmd]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:522">
<![LOG[Adding instruction at 15]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:524">
<![LOG[
Parsing step node: CLS0004]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:466">
<![LOG[successCodeList: 0 3010]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:579">
<![LOG[Variable name: SMSTSDisableWow64Redirection]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSTSRunCommandLineAsUser]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: WorkingDirectory]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Action command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0004.cmd]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:522">
<![LOG[Adding instruction at 16]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:524">
<![LOG[
Parsing step node: CLS0005]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:466">
<![LOG[successCodeList: 0 3010]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:579">
<![LOG[Variable name: SMSTSDisableWow64Redirection]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSTSRunCommandLineAsUser]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Variable name: WorkingDirectory]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:620">
<![LOG[Action command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0005.cmd]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:522">
<![LOG[Adding instruction at 17]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:524">
<![LOG[Processed all elements]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:333">
<![LOG[Adding end group instruction at 18]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:402">
<![LOG[The next instruction after group will be at 19]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:408">
<![LOG[Processed all elements]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:333">
<![LOG[
Reading Global variable list]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:183">
<![LOG[Got root node now getting global var list]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:194">
<![LOG[GlobalVarlist found]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:210">
<![LOG[Variable name: OSDEnableTCPIPFiltering]LOG]!><time="16:18:34.503-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsxml.cpp:244">
<![LOG[starting Task Sequence Engine . . . ]LOG]!><time="16:18:34.519-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:747">
<![LOG[****************************************************************************]LOG]!><time="16:18:34.519-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:749">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=0]LOG]!><time="16:18:34.519-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSInstructionTableSize=19]LOG]!><time="16:18:34.519-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable SMSTSRebootRequested=]LOG]!><time="16:18:34.519-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable SMSTSRebootDelay=]LOG]!><time="16:18:34.519-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable SMSTSRebootMessage=]LOG]!><time="16:18:34.519-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable SMSTSRebootReason=]LOG]!><time="16:18:34.519-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable SMSTSRetryRequested=]LOG]!><time="16:18:34.519-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[succeeded loading resource DLL 'X:\sms\bin\x64\1033\TSRES.DLL']LOG]!><time="16:18:34.519-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="util.cpp:910">
<![LOG[The task execution engine started execution]LOG]!><time="16:18:34.519-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:70">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="16:18:34.519-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="16:18:34.534-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="16:18:34.534-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:7568">
<![LOG[sending StatusMessage]LOG]!><time="16:18:34.534-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:4019">
<![LOG[setting message signatures.]LOG]!><time="16:18:34.550-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:18:34.550-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:18:34.550-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.581-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:8734">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="16:18:34.581-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="16:18:34.597-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="16:18:34.597-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:7568">
<![LOG[sending StatusMessage]LOG]!><time="16:18:34.597-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:4019">
<![LOG[setting message signatures.]LOG]!><time="16:18:34.612-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:18:34.612-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:18:34.612-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.628-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:8734">
<![LOG[start executing an instruciton. Instruction name: Capture Files and Settings. Instruction pointer: 0]LOG]!><time="16:18:34.628-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:117">
<![LOG[set a global environment variable _SMSTSCurrentActionName=Capture Files and Settings]LOG]!><time="16:18:34.628-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=0]LOG]!><time="16:18:34.628-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[Evaluating an AND expression]LOG]!><time="16:18:34.659-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:593">
<![LOG[Evaluating a variable condition expression]LOG]!><time="16:18:34.659-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:776">
<![LOG[Variable = _SMSTSInWinPE]LOG]!><time="16:18:34.659-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:794">
<![LOG[Value = false]LOG]!><time="16:18:34.659-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:795">
<![LOG[Operator = equals]LOG]!><time="16:18:34.659-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:796">
<![LOG[Expand a string: equals]LOG]!><time="16:18:34.659-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: _SMSTSInWinPE]LOG]!><time="16:18:34.659-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: false]LOG]!><time="16:18:34.659-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[The variable condition expression is evaluated to be FALSE]LOG]!><time="16:18:34.659-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:900">
<![LOG[The AND expression is evaluated to be FALSE]LOG]!><time="16:18:34.659-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:626">
<![LOG[The group (Capture Files and Settings) has been skipped because the condition is evaluated to be false]LOG]!><time="16:18:34.659-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2326">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="16:18:34.659-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="16:18:34.675-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="16:18:34.675-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:7568">
<![LOG[sending StatusMessage]LOG]!><time="16:18:34.675-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:4019">
<![LOG[setting message signatures.]LOG]!><time="16:18:34.690-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:18:34.690-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:18:34.690-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.706-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:8734">
<![LOG[Execution of the instruction (Capture Files and Settings) has been skipped]LOG]!><time="16:18:34.706-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:193">
<![LOG[start executing an instruciton. Instruction name: Install Operating System. Instruction pointer: 3]LOG]!><time="16:18:34.706-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:117">
<![LOG[set a global environment variable _SMSTSCurrentActionName=Install Operating System]LOG]!><time="16:18:34.706-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=3]LOG]!><time="16:18:34.706-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[The group (Install Operating System) has been successfully started]LOG]!><time="16:18:34.706-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2364">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="16:18:34.706-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="16:18:34.722-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="16:18:34.722-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:7568">
<![LOG[sending StatusMessage]LOG]!><time="16:18:34.722-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:4019">
<![LOG[setting message signatures.]LOG]!><time="16:18:34.737-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:18:34.737-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:18:34.737-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.753-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:8734">
<![LOG[updated security on object C:\_SMSTaskSequence.]LOG]!><time="16:18:34.753-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:1019">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=4]LOG]!><time="16:18:34.753-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSNextInstructionPointer=4]LOG]!><time="16:18:34.753-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:386">
<![LOG[set a global environment variable _SMSTSInstructionStackString=3]LOG]!><time="16:18:34.753-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSInstructionStackString=3]LOG]!><time="16:18:34.753-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:414">
<![LOG[save the current environment block]LOG]!><time="16:18:34.753-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:833">
<![LOG[successfully save execution state and environment to local hard disk]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:255">
<![LOG[start executing an instruciton. Instruction name: Restart in Windows PE. Instruction pointer: 4]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:117">
<![LOG[set a global environment variable _SMSTSCurrentActionName=Restart in Windows PE]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=4]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a local default variable SMSRebootMessage]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable SMSRebootTimeout]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a global environment variable _SMSTSLogPath=X:\WINDOWS\TEMP\SMSTSLog]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[Evaluating an AND expression]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:593">
<![LOG[Evaluating a variable condition expression]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:776">
<![LOG[Variable = _SMSTSInWinPE]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:794">
<![LOG[Value = false]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:795">
<![LOG[Operator = equals]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:796">
<![LOG[Expand a string: equals]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: _SMSTSInWinPE]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: false]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[The variable condition expression is evaluated to be FALSE]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:900">
<![LOG[The AND expression is evaluated to be FALSE]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:626">
<![LOG[The action (Restart in Windows PE) has been skipped because the condition is evaluated to be false]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2894">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="16:18:34.784-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="16:18:34.800-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="16:18:34.800-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:7568">
<![LOG[sending StatusMessage]LOG]!><time="16:18:34.800-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:4019">
<![LOG[setting message signatures.]LOG]!><time="16:18:34.815-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:18:34.815-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:18:34.815-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:34.831-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:8734">
<![LOG[Clear local default environment]LOG]!><time="16:18:34.831-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:807">
<![LOG[Execution of the instruction (Restart in Windows PE) has been skipped]LOG]!><time="16:18:34.831-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:193">
<![LOG[start executing an instruciton. Instruction name: Partition Disk 0. Instruction pointer: 5]LOG]!><time="16:18:34.831-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:117">
<![LOG[set a global environment variable _SMSTSCurrentActionName=Partition Disk 0]LOG]!><time="16:18:34.831-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=5]LOG]!><time="16:18:34.831-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a local default variable OSDDiskIndex]LOG]!><time="16:18:34.831-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDDiskType]LOG]!><time="16:18:34.831-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDDiskpartBiosCompatibilityMode]LOG]!><time="16:18:34.831-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDGPTBootDisk]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDPartitionStyle]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDPartitions0Bootable]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDPartitions0FileSystem]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDPartitions0QuickFormat]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDPartitions0Size]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDPartitions0SizeUnits]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDPartitions0Type]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDPartitions0VolumeName]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a global environment variable _SMSTSLogPath=X:\WINDOWS\TEMP\SMSTSLog]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[Evaluating an AND expression]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:593">
<![LOG[Evaluating a variable condition expression]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:776">
<![LOG[Variable = _SMSTSClientCache]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:794">
<![LOG[Value = ]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:795">
<![LOG[Operator = notExists]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:796">
<![LOG[Expand a string: notExists]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: _SMSTSClientCache]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: ]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[The variable condition expression is evaluated to be TRUE]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:900">
<![LOG[Evaluating a variable condition expression]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:776">
<![LOG[Variable = _SMSTSMediaType]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:794">
<![LOG[Value = OEMMedia]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:795">
<![LOG[Operator = notEquals]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:796">
<![LOG[Expand a string: notEquals]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: _SMSTSMediaType]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: OEMMedia]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[The variable condition expression is evaluated to be TRUE]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:900">
<![LOG[The AND expression is evaluated to be TRUE]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:626">
<![LOG[The condition for the action (Partition Disk 0) is evaluated to be true]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2913">
<![LOG[Expand a string: osddiskpart.exe]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: ]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="commandline.cpp:228">
<![LOG[set command line: osddiskpart.exe]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="commandline.cpp:705">
<![LOG[start executing the command line: osddiskpart.exe]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2929">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2958">
<![LOG[Expand a string: WinPE]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Executing command line: osddiskpart.exe]LOG]!><time="16:18:34.846-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="commandline.cpp:801">
<![LOG[==============================[ OSDDiskPart.exe ]==============================]LOG]!><time="16:18:34.862-600" date="01-23-2012" component="OSDDiskPart" context="" type="1" thread="1124" file="main.cpp:1243">
<![LOG[Command line: "osddiskpart.exe"]LOG]!><time="16:18:34.862-600" date="01-23-2012" component="OSDDiskPart" context="" type="1" thread="1124" file="main.cpp:1244">
<![LOG[succeeded loading resource DLL 'X:\sms\bin\x64\1033\TSRES.DLL']LOG]!><time="16:18:34.862-600" date="01-23-2012" component="OSDDiskPart" context="" type="1" thread="1124" file="util.cpp:910">
<![LOG[Reading partition size info for partition 0]LOG]!><time="16:18:35.002-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="main.cpp:461">
<![LOG[Remaining size before partition: 80023749120]LOG]!><time="16:18:35.002-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="main.cpp:465">
<![LOG[size units: SIZE_PERCENT]LOG]!><time="16:18:35.002-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="main.cpp:478">
<![LOG[100% size specified.]LOG]!><time="16:18:35.002-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="main.cpp:524">
<![LOG[Remaining size after partition 0: 0]LOG]!><time="16:18:35.002-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="main.cpp:618">
<![LOG[Checking volume 'C:' for BitLocker]LOG]!><time="16:18:35.002-600" date="01-23-2012" component="OSDDiskPart" context="" type="1" thread="1124" file="main.cpp:317">
<![LOG[Volume 'C:' is on disk '0l']LOG]!><time="16:18:35.002-600" date="01-23-2012" component="OSDDiskPart" context="" type="1" thread="1124" file="main.cpp:325">
<![LOG[0, HRESULT=80004005 (e:\nts_sccm_release\sms\framework\tscore\encryptablevolume.cpp,367)]LOG]!><time="16:18:35.034-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="encryptablevolume.cpp:367">
<![LOG[Volume 'C:' is not an encryptable volume]LOG]!><time="16:18:35.034-600" date="01-23-2012" component="OSDDiskPart" context="" type="1" thread="1124" file="main.cpp:368">
<![LOG[Checking volume 'D:' for BitLocker]LOG]!><time="16:18:35.034-600" date="01-23-2012" component="OSDDiskPart" context="" type="1" thread="1124" file="main.cpp:317">
<![LOG[Checking volume 'X:' for BitLocker]LOG]!><time="16:18:35.034-600" date="01-23-2012" component="OSDDiskPart" context="" type="1" thread="1124" file="main.cpp:317">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="16:18:35.034-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="commandline.cpp:228">
<![LOG[set command line: "X:\WINDOWS\system32\diskpart.exe" /s "X:\WINDOWS\TEMP\osddiskpart.txt"]LOG]!><time="16:18:35.034-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="commandline.cpp:705">
<![LOG[Executing command line: "X:\WINDOWS\system32\diskpart.exe" /s "X:\WINDOWS\TEMP\osddiskpart.txt"]LOG]!><time="16:18:35.034-600" date="01-23-2012" component="OSDDiskPart" context="" type="1" thread="1124" file="commandline.cpp:801">
<![LOG[Process completed with exit code 0]LOG]!><time="16:18:41.820-600" date="01-23-2012" component="OSDDiskPart" context="" type="1" thread="1124" file="commandline.cpp:1098">
<![LOG[Formatting partitions]LOG]!><time="16:18:41.820-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="main.cpp:865">
<![LOG[Formatting drive C: with NTFS filesystem, method quick]LOG]!><time="16:18:41.835-600" date="01-23-2012" component="OSDDiskPart" context="" type="1" thread="1124" file="main.cpp:925">
<![LOG[Creating instance of service loader]LOG]!><time="16:18:41.835-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:913">
<![LOG[Loading service]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:918">
<![LOG[Waiting for service to initialize]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:925">
<![LOG[Querying for software providers]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:929">
<![LOG[Found a VDS software provider]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:939">
<![LOG[Querying for IVdsSwProvider]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:943">
<![LOG[Querying for packs]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:948">
<![LOG[Found a VDS pack]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:957">
<![LOG[Querying for IVdsPack]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:961">
<![LOG[Querying for volumes]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:966">
<![LOG[Found a VDS software provider]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:939">
<![LOG[Querying for IVdsSwProvider]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:943">
<![LOG[Querying for packs]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:948">
<![LOG[Found a VDS pack]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:957">
<![LOG[Querying for IVdsPack]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:961">
<![LOG[Querying for volumes]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:966">
<![LOG[Found a VDS volume]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:975">
<![LOG[Querying for IVdsVolumeMF]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:979">
<![LOG[Querying for access paths]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:985">
<![LOG[Found a VDS pack]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:957">
<![LOG[Querying for IVdsPack]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:961">
<![LOG[Querying for volumes]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:966">
<![LOG[Found a VDS volume]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:975">
<![LOG[Querying for IVdsVolumeMF]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:979">
<![LOG[Querying for access paths]LOG]!><time="16:18:41.851-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:985">
<![LOG[Found a volume with access path 'C:\']LOG]!><time="16:18:41.866-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:996">
<![LOG[Querying for IVdsVolume]LOG]!><time="16:18:41.866-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:1000">
<![LOG[Querying for IVdsVolumeMF]LOG]!><time="16:18:41.866-600" date="01-23-2012" component="OSDDiskPart" context="" type="0" thread="1124" file="diskvolume.cpp:1076">
<![LOG[OSDDiskPart.exe completed successfully]LOG]!><time="16:18:47.950-600" date="01-23-2012" component="OSDDiskPart" context="" type="1" thread="1124" file="main.cpp:1477">
<![LOG[Process completed with exit code 0]LOG]!><time="16:18:47.950-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="commandline.cpp:1098">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="16:18:47.950-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:3011">
<![LOG[successfully completed the action (Partition Disk 0) with the exit win32 code 0]LOG]!><time="16:18:47.950-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:3037">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="16:18:47.950-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="16:18:47.966-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="16:18:47.966-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:7568">
<![LOG[sending StatusMessage]LOG]!><time="16:18:47.966-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:4019">
<![LOG[setting message signatures.]LOG]!><time="16:18:47.982-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:18:47.982-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:18:47.982-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:18:47.997-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:8734">
<![LOG[set a global environment variable _SMSTSLastActionRetCode=0]LOG]!><time="16:18:47.997-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSLastActionSucceeded=true]LOG]!><time="16:18:47.997-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[Expand a string: %_SMSTSMDataPath%\Logs]LOG]!><time="16:18:47.997-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Clear local default environment]LOG]!><time="16:18:47.997-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:807">
<![LOG[user did not specify local data drive]LOG]!><time="16:18:48.013-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="utils.cpp:1198">
<![LOG[Volume C:\ has 79927644160 bytes of free space]LOG]!><time="16:18:48.013-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:360">
<![LOG[Volume D:\ is not a fixed hard drive]LOG]!><time="16:18:48.013-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:341">
<![LOG[Volume X:\ is not a fixed hard drive]LOG]!><time="16:18:48.013-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:341">
<![LOG[TSM root drive = C:\]LOG]!><time="16:18:48.013-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:376">
<![LOG[C:\_SMSTaskSequence does not exist]LOG]!><time="16:18:48.013-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:1055">
<![LOG[Creating directory C:\_SMSTaskSequence]LOG]!><time="16:18:48.013-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:1097">
<![LOG[updated security on object C:\_SMSTaskSequence.]LOG]!><time="16:18:48.013-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:1019">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=6]LOG]!><time="16:18:48.013-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSNextInstructionPointer=6]LOG]!><time="16:18:48.013-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:386">
<![LOG[set a global environment variable _SMSTSInstructionStackString=3]LOG]!><time="16:18:48.013-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSInstructionStackString=3]LOG]!><time="16:18:48.013-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:414">
<![LOG[save the current environment block]LOG]!><time="16:18:48.013-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:833">
<![LOG[successfully save execution state and environment to local hard disk]LOG]!><time="16:18:48.028-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:255">
<![LOG[start executing an instruciton. Instruction name: Apply Operating System. Instruction pointer: 6]LOG]!><time="16:18:48.028-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:117">
<![LOG[set a global environment variable _SMSTSCurrentActionName=Apply Operating System]LOG]!><time="16:18:48.028-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=6]LOG]!><time="16:18:48.028-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a local default variable OSDImageIndex]LOG]!><time="16:18:48.044-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDInstallEditionIndex]LOG]!><time="16:18:48.044-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a global environment variable _SMSTSLogPath=X:\WINDOWS\TEMP\SMSTSLog]LOG]!><time="16:18:48.044-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[Expand a string: OSDApplyOS.exe /image:BCA0003C,%OSDImageIndex%]LOG]!><time="16:18:48.044-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: ]LOG]!><time="16:18:48.044-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="16:18:48.044-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="commandline.cpp:228">
<![LOG[set command line: OSDApplyOS.exe /image:BCA0003C,%OSDImageIndex%]LOG]!><time="16:18:48.044-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="commandline.cpp:705">
<![LOG[start executing the command line: OSDApplyOS.exe /image:BCA0003C,%OSDImageIndex%]LOG]!><time="16:18:48.044-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2929">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="16:18:48.044-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2958">
<![LOG[Expand a string: WinPE]LOG]!><time="16:18:48.044-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Executing command line: OSDApplyOS.exe /image:BCA0003C,%OSDImageIndex%]LOG]!><time="16:18:48.044-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="commandline.cpp:801">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="16:18:48.075-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="commandline.cpp:228">
<![LOG[set command line: "OSDApplyOS.exe" /image:BCA0003C,1]LOG]!><time="16:18:48.075-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="commandline.cpp:705">
<![LOG[Not a data image]LOG]!><time="16:18:48.075-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="applyos.cpp:413">
<![LOG[ApplyOSRetry: ]LOG]!><time="16:18:48.075-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="applyos.cpp:425">
<![LOG[TSLaunchMode: PXE]LOG]!><time="16:18:48.075-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="applyos.cpp:426">
<![LOG[OSDUseAlreadyDeployedImage: FALSE]LOG]!><time="16:18:48.075-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="applyos.cpp:427">
<![LOG[searching for next available volume:]LOG]!><time="16:18:48.075-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installcommon.cpp:436">
<![LOG[  Volume C:\ is a valid target.]LOG]!><time="16:18:48.200-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installcommon.cpp:491">
<![LOG[Found volume C:\]LOG]!><time="16:18:48.200-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installcommon.cpp:508">
<![LOG[Verifying boot volume is NTFS.]LOG]!><time="16:18:48.216-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installcommon.cpp:726">
<![LOG[succeeded loading resource DLL 'X:\sms\bin\x64\1033\TSRES.DLL']LOG]!><time="16:18:48.216-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="util.cpp:910">
<![LOG[The machine does not have a local client cache.]LOG]!><time="16:18:48.216-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installcommon.cpp:971">
<![LOG[DownloadOnDemand flag is true. Attempting to download content locally for Package BCA0003C..]LOG]!><time="16:18:48.216-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="resolvesource.cpp:3404">
<![LOG[Package Flags: 0x1000000]LOG]!><time="16:18:48.216-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="resolvesource.cpp:2901">
<![LOG[GetDirectoryListing() entered]LOG]!><time="16:18:48.216-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="downloadcontent.cpp:565">
<![LOG[initializing HTTP transport.]LOG]!><time="16:18:48.216-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="downloadcontent.cpp:688">
<![LOG[   Setting URL = http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSPKG$/BCA0003C.]LOG]!><time="16:18:48.216-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="downloadcontent.cpp:690">
<![LOG[   Address=http://BCA-SCCM-DS.SCCM.live, Scheme=http, Object=/SMS_DP_SMSPKG$/BCA0003C, Port=80.]LOG]!><time="16:18:48.216-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="downloadcontent.cpp:717">
<![LOG[   Setting Authenticator.]LOG]!><time="16:18:48.216-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="downloadcontent.cpp:765">
<![LOG[set authenticator in transport]LOG]!><time="16:18:48.216-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="libsmsmessaging.cpp:7568">
<![LOG[WinHttp credentials set]LOG]!><time="16:18:48.216-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="downloadcontent.cpp:826">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  PROPFIND /SMS_DP_SMSPKG$/BCA0003C]LOG]!><time="16:18:48.216-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="libsmsmessaging.cpp:8398">
<![LOG[401 - Authentication failure on request with anonymous access, retrying with context credentials.]LOG]!><time="16:18:49.152-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="libsmsmessaging.cpp:8740">
<![LOG[using thread token for request]LOG]!><time="16:18:49.152-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="libsmsmessaging.cpp:8590">
<![LOG[401 - Authentication failure on request with context credentials, retrying with supplied credentials.]LOG]!><time="16:18:49.152-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="libsmsmessaging.cpp:8746">
<![LOG[Request was succesful.]LOG]!><time="16:18:49.401-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="libsmsmessaging.cpp:8734">
<![LOG[DAV response string is:
<?xml version="1.0" encoding="utf-8" ?><D:multistatus xmlns:D="DAV:"><D:response><D:href>http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSPKG$/sccm?/BCA0003C/</D:href><D:propstat><D:status>HTTP/1.1 200 OK</D:status><D:prop><D:getcontenttype/><D:supportedlock/><D:getetag/><D:creationdate/><D:iscollection>1</D:iscollection><D:resourcetype><D:collection/></D:resourcetype><D:ishidden>0</D:ishidden><D:displayname>http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSPKG$/sccm?/BCA0003C/</D:displayname><D:getlastmodified></D:getlastmodified><D:getcontentlanguage/><D:getcontentlength>0</D:getcontentlength></D:prop></D:propstat></D:response><D:response><D:href>http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSPKG$/BCA0003C/sccm?/IM0010.wim</D:href><D:propstat><D:status>HTTP/1.1 200 OK</D:status><D:prop><D:getcontenttype/><D:lockdiscovery/><D:supportedlock/><D:getetag/><D:getcontentlanguage/><D:iscollection>0</D:iscollection><D:creationdate/><D:resourcetype/><D:ishidden>0</D:ishidden><D:displayname>http://BCA-SCCM-DS.SCCM.live/SMS_DP_SMSPKG$/BCA0003C/sccm?/IM0010.wim</D:displayname><D:getlastmodified>Mon, 23 Jan 2012 05:26:19 GMT</D:getlastmodified><D:getcontentlength>4364597157</D:getcontentlength></D:prop></D:propstat></D:response></D:multistatus>]LOG]!><time="16:18:49.401-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="downloadcontent.cpp:368">
<![LOG[List of files to be downloaded]LOG]!><time="16:18:49.401-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="downloadcontent.cpp:406">
<![LOG[  File: http://BCA-SCCM-DS.SCCM.live:80/SMS_DP_SMSPKG$/BCA0003C/sccm?/IM0010.wim]LOG]!><time="16:18:49.401-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="downloadcontent.cpp:473">
<![LOG[GetDirectoryListing() successfully completed]LOG]!><time="16:18:49.401-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="downloadcontent.cpp:579">
<![LOG[succeeded loading resource DLL 'X:\sms\bin\x64\1033\TSRES.DLL']LOG]!><time="16:18:49.401-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="util.cpp:910">
<![LOG[401 - Authentication failure on request with anonymous access, retrying with context credentials.]LOG]!><time="16:18:49.401-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="downloadcontent.cpp:1484">
<![LOG[401 - Authentication failure on request with context credentials, retrying with supplied credentials.]LOG]!><time="16:18:49.401-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="downloadcontent.cpp:1489">
<![LOG[Downloaded file from http://BCA-SCCM-DS.SCCM.live:80/SMS_DP_SMSPKG$/BCA0003C/sccm?/IM0010.wim to C:\_SMSTaskSequence\Packages\BCA0003C\IM0010.wim ]LOG]!><time="16:24:41.119-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="downloadcontent.cpp:1598">
<![LOG[Download done setting progress bar to 100]LOG]!><time="16:24:41.119-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="downloadcontent.cpp:1603">
<![LOG[VerifyContentHash: Hash algorithm is 32780]LOG]!><time="16:24:41.119-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="downloadcontent.cpp:1726">
<![LOG[Failed to open Software\Microsoft\Sms\Mobile Client\Software Distribution registry key. The client should not get checked for RWH OpLock Type]LOG]!><time="16:24:41.135-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="securityutil.cpp:780">
<![LOG[Content successfully downloaded at C:\_SMSTaskSequence\Packages\BCA0003C]LOG]!><time="16:25:58.449-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="resolvesource.cpp:3406">
<![LOG[Opening image file C:\_SMSTaskSequence\Packages\BCA0003C\IM0010.wim]LOG]!><time="16:25:58.449-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="wimfile.cpp:322">
<![LOG[image file BCA0003C version "" will be applied]LOG]!><time="16:25:58.480-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installimage.cpp:453">
<![LOG[starting to apply image 1 from IM0010.wim to C:\]LOG]!><time="16:25:58.480-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installimage.cpp:664">
<![LOG[Wiping C:\]LOG]!><time="16:25:58.480-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installcommon.cpp:772">
<![LOG[set "C:\_SMSTaskSequence" to not be wiped]LOG]!><time="16:25:58.495-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installcommon.cpp:781">
<![LOG[set "%OSDStateStorePath%" to not be wiped]LOG]!><time="16:25:58.495-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installcommon.cpp:812">
<![LOG[set "%_SMSTSClientCache%" to not be wiped]LOG]!><time="16:25:58.495-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installcommon.cpp:812">
<![LOG[set "%_SMSTSNewClientCachePathToCleanup%" to not be wiped]LOG]!><time="16:25:58.495-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installcommon.cpp:812">
<![LOG[skipping C:\_SMSTaskSequence for wipe]LOG]!><time="16:25:58.495-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="ccmfile.cpp:983">
<![LOG[Calculating expected free space.]LOG]!><time="16:25:58.495-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1980" file="installcommon.cpp:229">
<![LOG[Reporting deletion progress.]LOG]!><time="16:25:58.495-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1980" file="installcommon.cpp:247">
<![LOG[successfully wiped C:\]LOG]!><time="16:25:58.495-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installcommon.cpp:860">
<![LOG[Applying image to C:\]LOG]!><time="16:25:58.495-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installimage.cpp:703">
<![LOG[Applying image 1 to volume C:]LOG]!><time="16:25:58.495-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="wimfile.cpp:511">
<![LOG[successfully applied image to C:\]LOG]!><time="16:34:00.162-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installimage.cpp:723">
<![LOG[OfflineRegistry::Init("C:\WINDOWS")]LOG]!><time="16:34:00.162-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="offlineregistry.cpp:168">
<![LOG[Loading offline registry hive "C:\WINDOWS\system32\config\software" into HKLM\OfflineRegistry1]LOG]!><time="16:34:00.162-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="offlineregistry.cpp:60">
<![LOG[Loading offline registry hive "C:\WINDOWS\system32\config\system" into HKLM\OfflineRegistry2]LOG]!><time="16:34:01.192-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="offlineregistry.cpp:60">
<![LOG[CurrentControlSet is mapped to ControlSet001]LOG]!><time="16:34:01.457-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="offlineregistry.cpp:215">
<![LOG[successfully loaded a source BCD boot system]LOG]!><time="16:34:01.535-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="bootsystem.cpp:1179">
<![LOG[setupNewOS: Loaded source boot system from target volume "C:\"]LOG]!><time="16:34:01.535-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installimage.cpp:974">
<![LOG[installing BOOTMGR bootsector]LOG]!><time="16:34:04.421-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="bootsector.cpp:63">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="16:34:04.421-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="commandline.cpp:228">
<![LOG[set command line: "bootsect.exe" /NT60 SYS /MBR]LOG]!><time="16:34:04.421-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="commandline.cpp:705">
<![LOG[Executing command line: "bootsect.exe" /NT60 SYS /MBR]LOG]!><time="16:34:04.421-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="commandline.cpp:801">
<![LOG[Process completed with exit code 0]LOG]!><time="16:34:06.106-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="commandline.cpp:1098">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="16:34:06.106-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="commandline.cpp:228">
<![LOG[set command line: "bcdboot.exe" C:\WINDOWS /s C:\ /l en-US]LOG]!><time="16:34:06.106-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="commandline.cpp:705">
<![LOG[Executing command line: "bcdboot.exe" C:\WINDOWS /s C:\ /l en-US]LOG]!><time="16:34:06.106-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="commandline.cpp:801">
<![LOG[Process completed with exit code 0]LOG]!><time="16:34:06.932-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="commandline.cpp:1098">
<![LOG[unloading offline SOFTWARE registry hive]LOG]!><time="16:34:06.932-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="offlineregistry.cpp:270">
<![LOG[unloading offline SYSTEM registry hive]LOG]!><time="16:34:07.073-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="offlineregistry.cpp:284">
<![LOG[updating MountedDevices key in target system registry]LOG]!><time="16:34:07.213-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installimage.cpp:1089">
<![LOG[OfflineRegistry::Init("C:\WINDOWS")]LOG]!><time="16:34:07.213-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="offlineregistry.cpp:168">
<![LOG[Loading offline registry hive "C:\WINDOWS\system32\config\software" into HKLM\OfflineRegistry1]LOG]!><time="16:34:07.213-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="offlineregistry.cpp:60">
<![LOG[Loading offline registry hive "C:\WINDOWS\system32\config\system" into HKLM\OfflineRegistry2]LOG]!><time="16:34:08.258-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="offlineregistry.cpp:60">
<![LOG[CurrentControlSet is mapped to ControlSet001]LOG]!><time="16:34:09.335-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="offlineregistry.cpp:215">
<![LOG[OS volume is: '\DosDevices\C:']LOG]!><time="16:34:09.335-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:1122">
<![LOG[Reading '\DosDevices\C:' value under MountedDevices in WinPE registry]LOG]!><time="16:34:09.335-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:1145">
<![LOG[Found value: '\??\Volume{d5a3b8c1-4620-11e1-b925-806e6f6e6963}']LOG]!><time="16:34:09.335-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:1183">
<![LOG[Found value: '\DosDevices\X:']LOG]!><time="16:34:09.335-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:1183">
<![LOG[Found value: '\DosDevices\D:']LOG]!><time="16:34:09.335-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:1183">
<![LOG[Found value: '\??\Volume{d5a3b8ed-4620-11e1-b925-00237d4aebf8}']LOG]!><time="16:34:09.335-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:1183">
<![LOG[Data for value '\DosDevices\C:' matches data for value '\??\Volume{d5a3b8ed-4620-11e1-b925-00237d4aebf8}']LOG]!><time="16:34:09.335-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:1197">
<![LOG[Deleting MountedDevices key on target system]LOG]!><time="16:34:09.335-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:1210">
<![LOG[Creating new MountedDevices key on target system]LOG]!><time="16:34:09.335-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:1224">
<![LOG[Writing new values to MountedDevices on target system]LOG]!><time="16:34:09.335-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:1232">
<![LOG[successfully updated MountedDevices on target system]LOG]!><time="16:34:09.335-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:1247">
<![LOG[unloading offline SOFTWARE registry hive]LOG]!><time="16:34:09.335-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="offlineregistry.cpp:270">
<![LOG[unloading offline SYSTEM registry hive]LOG]!><time="16:34:09.491-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="offlineregistry.cpp:284">
<![LOG[Finished updating MountedDevices in target system registry (0x00000000)]LOG]!><time="16:34:09.584-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installimage.cpp:1268">
<![LOG[Fixing up known name surrogate reparse points...]LOG]!><time="16:34:09.600-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installimage.cpp:1300">
<![LOG[Fixing junction point path [C:\Documents and Settings]]LOG]!><time="16:34:09.600-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing symbolic link path [C:\users\All Users]]LOG]!><time="16:34:09.600-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\AppData\Local\Application Data]]LOG]!><time="16:34:09.600-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\AppData\Local\History]]LOG]!><time="16:34:09.600-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\AppData\Local\Temporary Internet Files]]LOG]!><time="16:34:09.725-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\Application Data]]LOG]!><time="16:34:09.772-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\Cookies]]LOG]!><time="16:34:09.772-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\Documents\My Music]]LOG]!><time="16:34:09.772-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\Documents\My Pictures]]LOG]!><time="16:34:09.772-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\Documents\My Videos]]LOG]!><time="16:34:09.772-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\Local Settings]]LOG]!><time="16:34:09.772-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\My Documents]]LOG]!><time="16:34:09.772-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\NetHood]]LOG]!><time="16:34:09.787-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\PrintHood]]LOG]!><time="16:34:09.787-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\Recent]]LOG]!><time="16:34:09.787-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\SendTo]]LOG]!><time="16:34:09.787-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\Start Menu]]LOG]!><time="16:34:09.787-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\bcaadmin\Templates]]LOG]!><time="16:34:09.787-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\AppData\Local\Application Data]]LOG]!><time="16:34:09.787-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\AppData\Local\History]]LOG]!><time="16:34:09.787-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\AppData\Local\Temporary Internet Files]]LOG]!><time="16:34:09.787-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\Application Data]]LOG]!><time="16:34:09.803-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\Cookies]]LOG]!><time="16:34:09.803-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\Documents\My Music]]LOG]!><time="16:34:09.803-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\Documents\My Pictures]]LOG]!><time="16:34:09.803-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\Documents\My Videos]]LOG]!><time="16:34:09.803-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\Local Settings]]LOG]!><time="16:34:09.803-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\My Documents]]LOG]!><time="16:34:09.818-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\NetHood]]LOG]!><time="16:34:09.818-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\PrintHood]]LOG]!><time="16:34:09.818-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\Recent]]LOG]!><time="16:34:09.818-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\SendTo]]LOG]!><time="16:34:09.865-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\Start Menu]]LOG]!><time="16:34:09.865-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default\Templates]]LOG]!><time="16:34:09.865-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Default User]]LOG]!><time="16:34:09.865-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Public\Documents\My Music]]LOG]!><time="16:34:09.865-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Public\Documents\My Pictures]]LOG]!><time="16:34:09.865-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\users\Public\Documents\My Videos]]LOG]!><time="16:34:09.865-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\programdata\Application Data]]LOG]!><time="16:34:09.881-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\programdata\Desktop]]LOG]!><time="16:34:09.881-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\programdata\Documents]]LOG]!><time="16:34:09.881-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\programdata\Favorites]]LOG]!><time="16:34:09.881-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\programdata\Start Menu]]LOG]!><time="16:34:09.943-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[Fixing junction point path [C:\programdata\Templates]]LOG]!><time="16:34:09.943-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="installimage.cpp:77">
<![LOG[setting %SystemRoot% to "C:\WINDOWS"]LOG]!><time="16:34:09.959-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="smiinterface.cpp:819">
<![LOG[Loading existing answer file "C:\WINDOWS\panther\unattend\unattend.xml"]LOG]!><time="16:34:10.208-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="xmlanswerfile.cpp:578">
<![LOG[xml parsing error at line 68 char 5: End tag 'component' does not match the start tag 'settings'.
 </component>]LOG]!><time="16:34:10.224-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="ccmxml.h:1212">
<![LOG[bSuccess == ((VARIANT_BOOL)-1), HRESULT=80004005 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,1158)]LOG]!><time="16:34:10.224-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="ccmxml.h:1158">
<![LOG[oDoc.loadFromFile( pszPath ), HRESULT=80004005 (e:\nts_sccm_release\sms\framework\osdcore\smiinterface.cpp,960)]LOG]!><time="16:34:10.224-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="smiinterface.cpp:960">
<![LOG[Failed to load existing answer file "C:\WINDOWS\panther\unattend\unattend.xml"]LOG]!><time="16:34:10.224-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="2" thread="1436" file="xmlanswerfile.cpp:587">
<![LOG[Getting namespace "Microsoft-Windows-Deployment" for architecture "amd64"]LOG]!><time="16:34:10.224-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="smiinterface.cpp:222">
<![LOG[Getting namespace "Microsoft-Windows-Shell-Setup" for architecture "amd64"]LOG]!><time="16:34:10.240-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="smiinterface.cpp:222">
<![LOG[Getting namespace "Microsoft-Windows-International-Core" for architecture "amd64"]LOG]!><time="16:34:10.240-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="smiinterface.cpp:222">
<![LOG[Writing configuration information to C:\WINDOWS\panther\unattend\unattend.xml]LOG]!><time="16:34:10.255-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="smiinterface.cpp:860">
<![LOG[successfully saved configuration information to C:\WINDOWS\panther\unattend\unattend.xml]LOG]!><time="16:34:10.255-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="0" thread="1436" file="smiinterface.cpp:925">
<![LOG[image installation completed successfully.]LOG]!><time="16:34:10.255-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="installimage.cpp:1575">
<![LOG[Closing image file C:\_SMSTaskSequence\Packages\BCA0003C\IM0010.wim]LOG]!><time="16:34:10.255-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="wimfile.cpp:358">
<![LOG[Entering ReleaseSource() for C:\_SMSTaskSequence\Packages\BCA0003C]LOG]!><time="16:34:10.271-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="resolvesource.cpp:3715">
<![LOG[reference count 1 for the source C:\_SMSTaskSequence\Packages\BCA0003C before releasing]LOG]!><time="16:34:10.271-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="resolvesource.cpp:3722">
<![LOG[Released the resolved source C:\_SMSTaskSequence\Packages\BCA0003C]LOG]!><time="16:34:10.271-600" date="01-23-2012" component="ApplyOperatingSystem" context="" type="1" thread="1436" file="resolvesource.cpp:3755">
<![LOG[Process completed with exit code 0]LOG]!><time="16:34:10.271-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="commandline.cpp:1098">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="16:34:10.271-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:3011">
<![LOG[successfully completed the action (Apply Operating System) with the exit win32 code 0]LOG]!><time="16:34:10.271-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:3037">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="16:34:10.271-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="16:34:10.302-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="16:34:10.302-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:7568">
<![LOG[sending StatusMessage]LOG]!><time="16:34:10.458-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:4019">
<![LOG[setting message signatures.]LOG]!><time="16:34:10.458-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:34:10.458-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:34:10.458-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:34:10.520-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:8734">
<![LOG[set a global environment variable _SMSTSLastActionRetCode=0]LOG]!><time="16:34:10.520-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSLastActionSucceeded=true]LOG]!><time="16:34:10.520-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[Expand a string: %_SMSTSMDataPath%\Logs]LOG]!><time="16:34:10.520-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Clear local default environment]LOG]!><time="16:34:10.520-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:807">
<![LOG[updated security on object C:\_SMSTaskSequence.]LOG]!><time="16:34:10.536-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:1019">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=7]LOG]!><time="16:34:10.536-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSNextInstructionPointer=7]LOG]!><time="16:34:10.536-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:386">
<![LOG[set a global environment variable _SMSTSInstructionStackString=3]LOG]!><time="16:34:10.536-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSInstructionStackString=3]LOG]!><time="16:34:10.536-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:414">
<![LOG[save the current environment block]LOG]!><time="16:34:10.536-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:833">
<![LOG[successfully save execution state and environment to local hard disk]LOG]!><time="16:34:10.567-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:255">
<![LOG[start executing an instruciton. Instruction name: Apply Windows Settings. Instruction pointer: 7]LOG]!><time="16:34:10.567-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:117">
<![LOG[set a global environment variable _SMSTSCurrentActionName=Apply Windows Settings]LOG]!><time="16:34:10.567-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=7]LOG]!><time="16:34:10.567-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a local default variable OSDLocalAdminPassword]LOG]!><time="16:34:10.567-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDComputerName]LOG]!><time="16:34:10.567-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDProductKey]LOG]!><time="16:34:10.567-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDRandomAdminPassword]LOG]!><time="16:34:10.567-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDRegisteredOrgName]LOG]!><time="16:34:10.567-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDRegisteredUserName]LOG]!><time="16:34:10.567-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDServerLicenseConnectionLimit]LOG]!><time="16:34:10.567-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDTimeZone]LOG]!><time="16:34:10.567-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a global environment variable _SMSTSLogPath=X:\WINDOWS\TEMP\SMSTSLog]LOG]!><time="16:34:10.583-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[Expand a string: osdwinsettings.exe /config]LOG]!><time="16:34:10.583-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: ]LOG]!><time="16:34:10.583-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="16:34:10.583-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="commandline.cpp:228">
<![LOG[set command line: osdwinsettings.exe /config]LOG]!><time="16:34:10.583-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="commandline.cpp:705">
<![LOG[start executing the command line: osdwinsettings.exe /config]LOG]!><time="16:34:10.583-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2929">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="16:34:10.583-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2958">
<![LOG[Expand a string: WinPE]LOG]!><time="16:34:10.583-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Executing command line: osdwinsettings.exe /config]LOG]!><time="16:34:10.583-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="commandline.cpp:801">
<![LOG[============================[ OSDWinSettings.exe ]============================]LOG]!><time="16:34:10.614-600" date="01-23-2012" component="OSDWinSettings" context="" type="1" thread="808" file="osdwinsettings.cpp:578">
<![LOG[Command line: "osdwinsettings.exe" /config]LOG]!><time="16:34:10.614-600" date="01-23-2012" component="OSDWinSettings" context="" type="0" thread="808" file="osdwinsettings.cpp:579">
<![LOG[setting %SystemRoot% to "C:\WINDOWS"]LOG]!><time="16:34:10.614-600" date="01-23-2012" component="OSDWinSettings" context="" type="0" thread="808" file="smiinterface.cpp:819">
<![LOG[Loading existing answer file "C:\WINDOWS\panther\unattend\unattend.xml"]LOG]!><time="16:34:10.848-600" date="01-23-2012" component="OSDWinSettings" context="" type="0" thread="808" file="xmlanswerfile.cpp:578">
<![LOG[Computer Name: MININT-8P8BT5Q]LOG]!><time="16:34:10.879-600" date="01-23-2012" component="OSDWinSettings" context="" type="1" thread="808" file="osdwinsettings.cpp:374">
<![LOG[Getting namespace "Microsoft-Windows-Shell-Setup" for architecture "amd64"]LOG]!><time="16:34:10.879-600" date="01-23-2012" component="OSDWinSettings" context="" type="1" thread="808" file="smiinterface.cpp:222">
<![LOG[Registered Owner: Administrator]LOG]!><time="16:34:10.879-600" date="01-23-2012" component="OSDWinSettings" context="" type="1" thread="808" file="osdwinsettings.cpp:387">
<![LOG[Getting namespace "Microsoft-Windows-Shell-Setup" for architecture "amd64"]LOG]!><time="16:34:10.879-600" date="01-23-2012" component="OSDWinSettings" context="" type="1" thread="808" file="smiinterface.cpp:222">
<![LOG[Registered Organization: BCA-SCCM-DS]LOG]!><time="16:34:10.895-600" date="01-23-2012" component="OSDWinSettings" context="" type="1" thread="808" file="osdwinsettings.cpp:400">
<![LOG[Time Zone: E. Australia Standard Time]LOG]!><time="16:34:10.895-600" date="01-23-2012" component="OSDWinSettings" context="" type="1" thread="808" file="osdwinsettings.cpp:415">
<![LOG[Time zone: E. Australia Standard Time]LOG]!><time="16:34:10.895-600" date="01-23-2012" component="OSDWinSettings" context="" type="0" thread="808" file="xmlanswerfile.cpp:902">
<![LOG[The OSDProductKey variable is not set in the environment.  Not setting the product key in the unattend answer file.]LOG]!><time="16:34:10.895-600" date="01-23-2012" component="OSDWinSettings" context="" type="1" thread="808" file="osdwinsettings.cpp:424">
<![LOG[setting local admin password.]LOG]!><time="16:34:10.895-600" date="01-23-2012" component="OSDWinSettings" context="" type="1" thread="808" file="osdwinsettings.cpp:461">
<![LOG[Writing configuration information to C:\WINDOWS\panther\unattend\unattend.xml]LOG]!><time="16:34:10.895-600" date="01-23-2012" component="OSDWinSettings" context="" type="0" thread="808" file="smiinterface.cpp:860">
<![LOG[successfully saved configuration information to C:\WINDOWS\panther\unattend\unattend.xml]LOG]!><time="16:34:10.895-600" date="01-23-2012" component="OSDWinSettings" context="" type="0" thread="808" file="smiinterface.cpp:925">
<![LOG[Exiting with return code 0x00000000]LOG]!><time="16:34:10.895-600" date="01-23-2012" component="OSDWinSettings" context="" type="1" thread="808" file="osdwinsettings.cpp:646">
<![LOG[Process completed with exit code 0]LOG]!><time="16:34:10.895-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="commandline.cpp:1098">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="16:34:10.895-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:3011">
<![LOG[successfully completed the action (Apply Windows Settings) with the exit win32 code 0]LOG]!><time="16:34:10.895-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:3037">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="16:34:10.895-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="16:34:10.926-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="16:34:10.926-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:7568">
<![LOG[sending StatusMessage]LOG]!><time="16:34:10.926-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:4019">
<![LOG[setting message signatures.]LOG]!><time="16:34:10.942-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:34:10.942-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:34:10.942-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:34:10.957-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:8734">
<![LOG[set a global environment variable _SMSTSLastActionRetCode=0]LOG]!><time="16:34:10.957-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSLastActionSucceeded=true]LOG]!><time="16:34:10.957-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[Expand a string: %_SMSTSMDataPath%\Logs]LOG]!><time="16:34:10.957-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Clear local default environment]LOG]!><time="16:34:10.973-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:807">
<![LOG[updated security on object C:\_SMSTaskSequence.]LOG]!><time="16:34:10.973-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:1019">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=8]LOG]!><time="16:34:10.973-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSNextInstructionPointer=8]LOG]!><time="16:34:10.973-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:386">
<![LOG[set a global environment variable _SMSTSInstructionStackString=3]LOG]!><time="16:34:10.973-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSInstructionStackString=3]LOG]!><time="16:34:10.973-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:414">
<![LOG[save the current environment block]LOG]!><time="16:34:10.973-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:833">
<![LOG[successfully save execution state and environment to local hard disk]LOG]!><time="16:34:11.004-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:255">
<![LOG[start executing an instruciton. Instruction name: Apply Network Settings. Instruction pointer: 8]LOG]!><time="16:34:11.004-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:117">
<![LOG[set a global environment variable _SMSTSCurrentActionName=Apply Network Settings]LOG]!><time="16:34:11.004-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=8]LOG]!><time="16:34:11.004-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a local default variable OSDNetworkJoinType]LOG]!><time="16:34:11.004-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDWorkgroupName]LOG]!><time="16:34:11.004-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a global environment variable _SMSTSLogPath=X:\WINDOWS\TEMP\SMSTSLog]LOG]!><time="16:34:11.004-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[Expand a string: osdnetsettings.exe configure]LOG]!><time="16:34:11.004-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: ]LOG]!><time="16:34:11.004-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="16:34:11.004-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="commandline.cpp:228">
<![LOG[set command line: osdnetsettings.exe configure]LOG]!><time="16:34:11.004-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="commandline.cpp:705">
<![LOG[start executing the command line: osdnetsettings.exe configure]LOG]!><time="16:34:11.004-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2929">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="16:34:11.004-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2958">
<![LOG[Expand a string: WinPEandFullOS]LOG]!><time="16:34:11.004-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Executing command line: osdnetsettings.exe configure]LOG]!><time="16:34:11.004-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="commandline.cpp:801">
<![LOG[==============================[ OSDNetSettings.exe ]===========================]LOG]!><time="16:34:11.020-600" date="01-23-2012" component="OSDNetSettings" context="" type="1" thread="1732" file="main.cpp:134">
<![LOG[Command line: "osdnetsettings.exe" configure]LOG]!><time="16:34:11.020-600" date="01-23-2012" component="OSDNetSettings" context="" type="1" thread="1732" file="main.cpp:135">
<![LOG[setting %SystemRoot% to "C:\WINDOWS"]LOG]!><time="16:34:11.035-600" date="01-23-2012" component="OSDNetSettings" context="" type="0" thread="1732" file="smiinterface.cpp:819">
<![LOG[Loading existing answer file "C:\WINDOWS\panther\unattend\unattend.xml"]LOG]!><time="16:34:11.035-600" date="01-23-2012" component="OSDNetSettings" context="" type="0" thread="1732" file="xmlanswerfile.cpp:578">
<![LOG[Configuring global network settings]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="OSDNetSettings" context="" type="1" thread="1732" file="netsettings.cpp:152">
<![LOG[Join type: 1]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="OSDNetSettings" context="" type="0" thread="1732" file="netglobalsettings.cpp:386">
<![LOG[Joining workgroup: WORKGROUP]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="OSDNetSettings" context="" type="1" thread="1732" file="netglobalsettings.cpp:401">
<![LOG[Getting namespace "Microsoft-Windows-UnattendedJoin" for architecture "amd64"]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="OSDNetSettings" context="" type="1" thread="1732" file="smiinterface.cpp:222">
<![LOG[DNS domain: ]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="OSDNetSettings" context="" type="0" thread="1732" file="netglobalsettings.cpp:452">
<![LOG[DNS domain search order: ]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="OSDNetSettings" context="" type="0" thread="1732" file="netglobalsettings.cpp:457">
<![LOG[iP filter sec enabled: false]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="OSDNetSettings" context="" type="0" thread="1732" file="netglobalsettings.cpp:461">
<![LOG[No adapters found in environment.  Performing global configuration only.]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="OSDNetSettings" context="" type="1" thread="1732" file="netsettings.cpp:178">
<![LOG[Writing configuration information to C:\WINDOWS\panther\unattend\unattend.xml]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="OSDNetSettings" context="" type="0" thread="1732" file="smiinterface.cpp:860">
<![LOG[successfully saved configuration information to C:\WINDOWS\panther\unattend\unattend.xml]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="OSDNetSettings" context="" type="0" thread="1732" file="smiinterface.cpp:925">
<![LOG[Configuring "OSDNetSettings.exe finalize" to run on first boot]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="OSDNetSettings" context="" type="1" thread="1732" file="main.cpp:170">
<![LOG[OSDNetSettings finished: 0x00000000]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="OSDNetSettings" context="" type="1" thread="1732" file="main.cpp:192">
<![LOG[Process completed with exit code 0]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="commandline.cpp:1098">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:3011">
<![LOG[successfully completed the action (Apply Network Settings) with the exit win32 code 0]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:3037">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="16:34:11.066-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="16:34:11.098-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="16:34:11.098-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:7568">
<![LOG[sending StatusMessage]LOG]!><time="16:34:11.098-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:4019">
<![LOG[setting message signatures.]LOG]!><time="16:34:11.113-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:34:11.113-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:34:11.113-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:34:11.129-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:8734">
<![LOG[set a global environment variable _SMSTSLastActionRetCode=0]LOG]!><time="16:34:11.129-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSLastActionSucceeded=true]LOG]!><time="16:34:11.129-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[Expand a string: %_SMSTSMDataPath%\Logs]LOG]!><time="16:34:11.129-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Clear local default environment]LOG]!><time="16:34:11.129-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:807">
<![LOG[updated security on object C:\_SMSTaskSequence.]LOG]!><time="16:34:11.129-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:1019">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=9]LOG]!><time="16:34:11.129-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSNextInstructionPointer=9]LOG]!><time="16:34:11.144-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:386">
<![LOG[set a global environment variable _SMSTSInstructionStackString=3]LOG]!><time="16:34:11.144-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSInstructionStackString=3]LOG]!><time="16:34:11.144-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:414">
<![LOG[save the current environment block]LOG]!><time="16:34:11.144-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:833">
<![LOG[successfully save execution state and environment to local hard disk]LOG]!><time="16:34:11.160-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:255">
<![LOG[start executing an instruciton. Instruction name: Apply Device Drivers. Instruction pointer: 9]LOG]!><time="16:34:11.160-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:117">
<![LOG[set a global environment variable _SMSTSCurrentActionName=Apply Device Drivers]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=9]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a local default variable OSDAutoApplyDriverBestMatch]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable OSDAllowUnsignedDriver]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a global environment variable _SMSTSLogPath=X:\WINDOWS\TEMP\SMSTSLog]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[Evaluating an AND expression]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:593">
<![LOG[Evaluating a variable condition expression]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:776">
<![LOG[Variable = _SMSTSMediaType]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:794">
<![LOG[Value = FullMedia]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:795">
<![LOG[Operator = notEquals]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:796">
<![LOG[Expand a string: notEquals]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: _SMSTSMediaType]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: FullMedia]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[The variable condition expression is evaluated to be TRUE]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:900">
<![LOG[The AND expression is evaluated to be TRUE]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:626">
<![LOG[The condition for the action (Apply Device Drivers) is evaluated to be true]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2913">
<![LOG[Expand a string: osddriverclient.exe /auto /bestmatch:%OSDAutoApplyDriverBestMatch% /unsigned:%OSDAllowUnsignedDriver%]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: ]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="commandline.cpp:228">
<![LOG[set command line: osddriverclient.exe /auto /bestmatch:%OSDAutoApplyDriverBestMatch% /unsigned:%OSDAllowUnsignedDriver%]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="commandline.cpp:705">
<![LOG[start executing the command line: osddriverclient.exe /auto /bestmatch:%OSDAutoApplyDriverBestMatch% /unsigned:%OSDAllowUnsignedDriver%]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2929">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2958">
<![LOG[Expand a string: WinPE]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Executing command line: osddriverclient.exe /auto /bestmatch:%OSDAutoApplyDriverBestMatch% /unsigned:%OSDAllowUnsignedDriver%]LOG]!><time="16:34:11.176-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="commandline.cpp:801">
<![LOG[============================[ OSDDriverClient.exe ]============================]LOG]!><time="16:34:11.191-600" date="01-23-2012" component="OSDDriverClient" context="" type="1" thread="696" file="osddriverclient.cpp:329">
<![LOG[Command line: "osddriverclient.exe" /auto /bestmatch:true /unsigned:false]LOG]!><time="16:34:11.191-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="osddriverclient.cpp:330">
<![LOG[Driver path is C:\_SMSTaskSequence\drivers]LOG]!><time="16:34:11.207-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="sysprepdriverinstaller.cpp:98">
<![LOG[initializing HTTP transport.]LOG]!><time="16:34:11.207-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="onlinedrivercatalog.cpp:224">
<![LOG[   Setting URL = http://BCA-SCCM-DS.SCCM.live.]LOG]!><time="16:34:11.207-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="onlinedrivercatalog.cpp:226">
<![LOG[   Setting Ports = 80,443.]LOG]!><time="16:34:11.207-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="onlinedrivercatalog.cpp:232">
<![LOG[   Setting CRL = 0.]LOG]!><time="16:34:11.207-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="onlinedrivercatalog.cpp:235">
<![LOG[   Setting Server Certificates.]LOG]!><time="16:34:11.207-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="onlinedrivercatalog.cpp:255">
<![LOG[   Setting Authenticator.]LOG]!><time="16:34:11.207-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="onlinedrivercatalog.cpp:259">
<![LOG[set authenticator in transport]LOG]!><time="16:34:11.207-600" date="01-23-2012" component="OSDDriverClient" context="" type="1" thread="696" file="libsmsmessaging.cpp:7568">
<![LOG[   Enabling message signing.]LOG]!><time="16:34:11.207-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="onlinedrivercatalog.cpp:275">
<![LOG[   Setting Media Certificate.]LOG]!><time="16:34:11.207-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="onlinedrivercatalog.cpp:285">
<![LOG[scanning for plug-and-play devices.]LOG]!><time="16:34:11.238-600" date="01-23-2012" component="OSDDriverClient" context="" type="1" thread="696" file="driverinstaller.cpp:833">
<![LOG[succeeded loading resource DLL 'X:\sms\bin\x64\1033\TSRES.DLL']LOG]!><time="16:34:11.238-600" date="01-23-2012" component="OSDDriverClient" context="" type="1" thread="696" file="util.cpp:910">
<![LOG[Executing driver matching request.]LOG]!><time="16:34:11.378-600" date="01-23-2012" component="OSDDriverClient" context="" type="1" thread="696" file="driverinstaller.cpp:850">
<![LOG[initializing driver match request header.]LOG]!><time="16:34:11.378-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="onlinedrivercatalog.cpp:399">
<![LOG[Formatting driver match request payload.]LOG]!><time="16:34:11.394-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="onlinedrivercatalog.cpp:409">
<![LOG[Executing driver match request.]LOG]!><time="16:34:11.394-600" date="01-23-2012" component="OSDDriverClient" context="" type="1" thread="696" file="onlinedrivercatalog.cpp:416">
<![LOG[setting message signatures.]LOG]!><time="16:34:11.394-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:34:11.394-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:34:11.410-600" date="01-23-2012" component="OSDDriverClient" context="" type="1" thread="696" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:34:18.492-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="libsmsmessaging.cpp:8734">
<![LOG[Default CSP is Microsoft Enhanced RSA and AES Cryptographic Provider]LOG]!><time="16:34:18.492-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="libcrypt.cpp:1592">
<![LOG[Default CSP Type is 24]LOG]!><time="16:34:18.492-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="libcrypt.cpp:1593">
<![LOG[Decompressing reply body.]LOG]!><time="16:34:18.492-600" date="01-23-2012" component="OSDDriverClient" context="" type="1" thread="696" file="libsmsmessaging.cpp:2360">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="16:34:18.492-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 112, uncompressed size 198.]LOG]!><time="16:34:18.492-600" date="01-23-2012" component="OSDDriverClient" context="" type="0" thread="696" file="ccmzlib.cpp:647">
<![LOG[Processing driver match result.]LOG]!><time="16:34:18.492-600" date="01-23-2012" component="OSDDriverClient" context="" type="1" thread="696" file="onlinedrivercatalog.cpp:452">
<![LOG[server returned a total of 0 driver definitions.]LOG]!><time="16:34:18.492-600" date="01-23-2012" component="OSDDriverClient" context="" type="1" thread="696" file="onlinedrivercatalog.cpp:540">
<![LOG[Failed to find a suitable device driver for device 'PCI HOST Bridge'.]LOG]!><time="16:34:18.492-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0303\4&1025D548&0'.]LOG]!><time="16:34:18.492-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ATA Channel 0'.]LOG]!><time="16:34:18.492-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ST980813AS ATA Device'.]LOG]!><time="16:34:18.492-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'Universal Serial Bus (USB) Controller'.]LOG]!><time="16:34:18.508-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0700\4&1025D548&0'.]LOG]!><time="16:34:18.508-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'USB\ROOT_HUB\4&15B6381D&0'.]LOG]!><time="16:34:18.508-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ATA Channel 1'.]LOG]!><time="16:34:18.508-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0800\4&1025D548&0'.]LOG]!><time="16:34:18.508-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'Video Controller (VGA Compatible)'.]LOG]!><time="16:34:18.508-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'USB\ROOT_HUB\4&34558D8E&0'.]LOG]!><time="16:34:18.508-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'Universal Serial Bus (USB) Controller'.]LOG]!><time="16:34:18.508-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'RamDisk'.]LOG]!><time="16:34:18.523-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0A08\2&DABA3FF&0'.]LOG]!><time="16:34:18.523-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'Intel(R) 82566DM-2 Gigabit Network Connection'.]LOG]!><time="16:34:18.523-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'USB\ROOT_HUB\4&37E1529A&0'.]LOG]!><time="16:34:18.523-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0B00\4&1025D548&0'.]LOG]!><time="16:34:18.523-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\FIXEDBUTTON\2&DABA3FF&0'.]LOG]!><time="16:34:18.523-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'Video Controller'.]LOG]!><time="16:34:18.523-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'USB\ROOT_HUB\4&6DD53AD&0'.]LOG]!><time="16:34:18.523-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ROOT\ACPI_HAL\0000'.]LOG]!><time="16:34:18.523-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'Universal Serial Bus (USB) Controller'.]LOG]!><time="16:34:18.523-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0C01\2&DABA3FF&0'.]LOG]!><time="16:34:18.601-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\GENUINEINTEL_-_INTEL64_FAMILY_6_MODEL_23_-_INTEL(R)_CORE(TM)2_DUO_CPU_____E8300__@_2.83GHZ\_1'.]LOG]!><time="16:34:18.601-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'PCI to PCI Bridge'.]LOG]!><time="16:34:18.601-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'USB\ROOT_HUB\4&A6918B9&0'.]LOG]!><time="16:34:18.601-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ROOT\BLBDRIVE\0000'.]LOG]!><time="16:34:18.601-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0C02\1'.]LOG]!><time="16:34:18.601-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'USB\ROOT_HUB20\4&14104F49&0'.]LOG]!><time="16:34:18.601-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'PCI Simple Communications Controller'.]LOG]!><time="16:34:18.601-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0C02\2'.]LOG]!><time="16:34:18.601-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'Universal Serial Bus (USB) Controller'.]LOG]!><time="16:34:18.617-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0C02\3'.]LOG]!><time="16:34:18.617-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'USB\ROOT_HUB20\4&2C322BDF&0'.]LOG]!><time="16:34:18.617-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'PCI to ISA Bridge'.]LOG]!><time="16:34:18.617-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0C04\4&1025D548&0'.]LOG]!><time="16:34:18.617-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'USB Input Device'.]LOG]!><time="16:34:18.632-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'IDE Controller'.]LOG]!><time="16:34:18.632-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0C0C\2&DABA3FF&0'.]LOG]!><time="16:34:18.632-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\GENUINEINTEL_-_INTEL64_FAMILY_6_MODEL_23_-_INTEL(R)_CORE(TM)2_DUO_CPU_____E8300__@_2.83GHZ\_2'.]LOG]!><time="16:34:18.632-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'Universal Serial Bus (USB) Controller'.]LOG]!><time="16:34:18.632-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'IDE Controller'.]LOG]!><time="16:34:18.632-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0C14\0'.]LOG]!><time="16:34:18.632-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'HID Keyboard Device'.]LOG]!><time="16:34:18.648-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0F13\4&1025D548&0'.]LOG]!><time="16:34:18.648-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'PCI Serial Port'.]LOG]!><time="16:34:18.648-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'Microsoft USB IntelliMouse Optical'.]LOG]!><time="16:34:18.648-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'PCI Device'.]LOG]!><time="16:34:18.866-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI_HAL\PNP0C08\0'.]LOG]!><time="16:34:18.866-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'IDE Controller'.]LOG]!><time="16:34:18.866-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'HDAUDIO\FUNC_01&VEN_11D4&DEV_1884&SUBSYS_103C281A&REV_1001\4&24C59A9E&0&0001'.]LOG]!><time="16:34:18.866-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\IFX0102\1'.]LOG]!><time="16:34:18.866-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'Microsoft USB IntelliMouse Optical'.]LOG]!><time="16:34:18.866-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ATA Channel 0'.]LOG]!><time="16:34:18.882-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\INT5400\0'.]LOG]!><time="16:34:18.882-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'PCI to PCI Bridge'.]LOG]!><time="16:34:18.882-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0000\4&1025D548&0'.]LOG]!><time="16:34:18.882-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ROOT\MSSMBIOS\0000'.]LOG]!><time="16:34:18.882-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'Universal Serial Bus (USB) Controller'.]LOG]!><time="16:34:18.882-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ATA Channel 1'.]LOG]!><time="16:34:18.898-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0003\1'.]LOG]!><time="16:34:18.898-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ROOT\VDRVROOT\0000'.]LOG]!><time="16:34:18.898-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0100\4&1025D548&0'.]LOG]!><time="16:34:18.898-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'HL-DT-ST RW/DVD GCC-C10N ATA Device'.]LOG]!><time="16:34:18.898-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ATA Channel 0'.]LOG]!><time="16:34:18.898-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'PCI to PCI Bridge'.]LOG]!><time="16:34:18.913-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ROOT\VOLMGR\0000'.]LOG]!><time="16:34:18.913-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'Universal Serial Bus (USB) Controller'.]LOG]!><time="16:34:18.913-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0103\1'.]LOG]!><time="16:34:18.913-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'Generic volume'.]LOG]!><time="16:34:18.913-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ATA Channel 1'.]LOG]!><time="16:34:18.913-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Failed to find a suitable device driver for device 'ACPI\PNP0200\4&1025D548&0'.]LOG]!><time="16:34:18.913-600" date="01-23-2012" component="OSDDriverClient" context="" type="2" thread="696" file="driverinstaller.cpp:799">
<![LOG[Exiting with return code 0x00000000]LOG]!><time="16:34:18.929-600" date="01-23-2012" component="OSDDriverClient" context="" type="1" thread="696" file="osddriverclient.cpp:418">
<![LOG[Process completed with exit code 0]LOG]!><time="16:34:18.929-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="commandline.cpp:1098">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="16:34:18.929-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:3011">
<![LOG[successfully completed the action (Apply Device Drivers) with the exit win32 code 0]LOG]!><time="16:34:18.929-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:3037">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="16:34:18.929-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="16:34:18.944-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="16:34:18.944-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:7568">
<![LOG[sending StatusMessage]LOG]!><time="16:34:18.960-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:4019">
<![LOG[setting message signatures.]LOG]!><time="16:34:18.976-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:34:18.976-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:34:18.976-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:34:18.991-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:8734">
<![LOG[set a global environment variable _SMSTSLastActionRetCode=0]LOG]!><time="16:34:18.991-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSLastActionSucceeded=true]LOG]!><time="16:34:18.991-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[Expand a string: %_SMSTSMDataPath%\Logs]LOG]!><time="16:34:18.991-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Clear local default environment]LOG]!><time="16:34:18.991-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:807">
<![LOG[updated security on object C:\_SMSTaskSequence.]LOG]!><time="16:34:18.991-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:1019">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=10]LOG]!><time="16:34:18.991-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSNextInstructionPointer=10]LOG]!><time="16:34:18.991-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:386">
<![LOG[set a global environment variable _SMSTSInstructionStackString=3]LOG]!><time="16:34:18.991-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSInstructionStackString=3]LOG]!><time="16:34:18.991-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:414">
<![LOG[save the current environment block]LOG]!><time="16:34:18.991-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:833">
<![LOG[successfully save execution state and environment to local hard disk]LOG]!><time="16:34:19.022-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:255">
<![LOG[start executing an instruciton. Instruction name: Install Operating System. Instruction pointer: 10]LOG]!><time="16:34:19.022-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:117">
<![LOG[set a global environment variable _SMSTSCurrentActionName=Install Operating System]LOG]!><time="16:34:19.022-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=10]LOG]!><time="16:34:19.022-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[The group (Install Operating System) has been successfully completed]LOG]!><time="16:34:19.038-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2552">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="16:34:19.038-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="16:34:19.054-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="16:34:19.054-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:7568">
<![LOG[sending StatusMessage]LOG]!><time="16:34:19.069-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:4019">
<![LOG[setting message signatures.]LOG]!><time="16:34:19.069-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:34:19.069-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:34:19.069-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:34:19.100-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:8734">
<![LOG[updated security on object C:\_SMSTaskSequence.]LOG]!><time="16:34:19.100-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:1019">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=11]LOG]!><time="16:34:19.100-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSNextInstructionPointer=11]LOG]!><time="16:34:19.100-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:386">
<![LOG[set a global environment variable _SMSTSInstructionStackString=]LOG]!><time="16:34:19.100-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSInstructionStackString=]LOG]!><time="16:34:19.100-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:414">
<![LOG[save the current environment block]LOG]!><time="16:34:19.100-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:833">
<![LOG[successfully save execution state and environment to local hard disk]LOG]!><time="16:34:19.132-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:255">
<![LOG[start executing an instruciton. Instruction name: Setup Operating System. Instruction pointer: 11]LOG]!><time="16:34:19.132-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:117">
<![LOG[set a global environment variable _SMSTSCurrentActionName=Setup Operating System]LOG]!><time="16:34:19.132-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=11]LOG]!><time="16:34:19.132-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[The group (Setup Operating System) has been successfully started]LOG]!><time="16:34:19.132-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2364">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="16:34:19.132-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="16:34:19.147-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="16:34:19.147-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:7568">
<![LOG[sending StatusMessage]LOG]!><time="16:34:19.163-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:4019">
<![LOG[setting message signatures.]LOG]!><time="16:34:19.178-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:34:19.178-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:34:19.178-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:34:19.194-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:8734">
<![LOG[updated security on object C:\_SMSTaskSequence.]LOG]!><time="16:34:19.194-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:1019">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=12]LOG]!><time="16:34:19.194-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSNextInstructionPointer=12]LOG]!><time="16:34:19.194-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:386">
<![LOG[set a global environment variable _SMSTSInstructionStackString=11]LOG]!><time="16:34:19.194-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSInstructionStackString=11]LOG]!><time="16:34:19.194-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:414">
<![LOG[save the current environment block]LOG]!><time="16:34:19.194-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:833">
<![LOG[successfully save execution state and environment to local hard disk]LOG]!><time="16:34:19.225-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:255">
<![LOG[start executing an instruciton. Instruction name: Restart Computer. Instruction pointer: 12]LOG]!><time="16:34:19.225-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:117">
<![LOG[set a global environment variable _SMSTSCurrentActionName=Restart Computer]LOG]!><time="16:34:19.225-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=12]LOG]!><time="16:34:19.225-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a local default variable SMSRebootMessage]LOG]!><time="16:34:19.225-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a local default variable SMSRebootTimeout]LOG]!><time="16:34:19.225-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:700">
<![LOG[set a global environment variable _SMSTSLogPath=X:\WINDOWS\TEMP\SMSTSLog]LOG]!><time="16:34:19.225-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[Expand a string: smsboot.exe /target:HD]LOG]!><time="16:34:19.225-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Expand a string: ]LOG]!><time="16:34:19.225-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="16:34:19.225-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="commandline.cpp:228">
<![LOG[set command line: smsboot.exe /target:HD]LOG]!><time="16:34:19.225-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="commandline.cpp:705">
<![LOG[start executing the command line: smsboot.exe /target:HD]LOG]!><time="16:34:19.225-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2929">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="16:34:19.225-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:2958">
<![LOG[Expand a string: WinPEandFullOS]LOG]!><time="16:34:19.225-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Executing command line: smsboot.exe /target:HD]LOG]!><time="16:34:19.241-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="commandline.cpp:801">
<![LOG[========================= [ smsboot.exe ] =========================]LOG]!><time="16:34:19.241-600" date="01-23-2012" component="Reboot" context="" type="1" thread="1504" file="rebootcomputer.cpp:184">
<![LOG[Command line: '"smsboot.exe" /target:HD']LOG]!><time="16:34:19.241-600" date="01-23-2012" component="Reboot" context="" type="0" thread="1504" file="rebootcomputer.cpp:186">
<![LOG[sMSTSRebootDelay=60]LOG]!><time="16:34:19.241-600" date="01-23-2012" component="Reboot" context="" type="1" thread="1504" file="rebootcomputer.cpp:122">
<![LOG[sMSTSRebootMessage=A new Microsoft Windows operating system is being installed. The computer must restart to continue.]LOG]!><time="16:34:19.241-600" date="01-23-2012" component="Reboot" context="" type="1" thread="1504" file="rebootcomputer.cpp:122">
<![LOG[sMSTSRebootRequested=HD]LOG]!><time="16:34:19.241-600" date="01-23-2012" component="Reboot" context="" type="1" thread="1504" file="rebootcomputer.cpp:122">
<![LOG[Process completed with exit code 0]LOG]!><time="16:34:19.256-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="commandline.cpp:1098">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="16:34:19.256-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:3011">
<![LOG[successfully completed the action (Restart Computer) with the exit win32 code 0]LOG]!><time="16:34:19.256-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="instruction.cxx:3037">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="16:34:19.256-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="16:34:19.272-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="16:34:19.272-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:7568">
<![LOG[sending StatusMessage]LOG]!><time="16:34:19.288-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:4019">
<![LOG[setting message signatures.]LOG]!><time="16:34:19.288-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:34:19.288-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:34:19.288-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:34:19.319-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:8734">
<![LOG[set a global environment variable _SMSTSLastActionRetCode=0]LOG]!><time="16:34:19.319-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSLastActionSucceeded=true]LOG]!><time="16:34:19.319-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[Expand a string: %_SMSTSMDataPath%\Logs]LOG]!><time="16:34:19.319-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:782">
<![LOG[Clear local default environment]LOG]!><time="16:34:19.319-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:807">
<![LOG[updated security on object C:\_SMSTaskSequence.]LOG]!><time="16:34:19.319-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:1019">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=13]LOG]!><time="16:34:19.319-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSNextInstructionPointer=13]LOG]!><time="16:34:19.319-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:386">
<![LOG[set a global environment variable _SMSTSInstructionStackString=11]LOG]!><time="16:34:19.319-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSInstructionStackString=11]LOG]!><time="16:34:19.319-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:414">
<![LOG[save the current environment block]LOG]!><time="16:34:19.319-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="executionenv.cxx:833">
<![LOG[successfully save execution state and environment to local hard disk]LOG]!><time="16:34:19.350-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:255">
<![LOG[Reboot to local harddisk]LOG]!><time="16:34:19.350-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:458">
<![LOG[_OSDGinaIsConfigured variable set to ]LOG]!><time="16:34:19.350-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:537">
<![LOG[_SMSTSServiceStartType variable set to ]LOG]!><time="16:34:19.350-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="engine.cxx:549">
<![LOG[FALSE, HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\executionengine\engine.cxx,561)]LOG]!><time="16:34:19.350-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="engine.cxx:561">
<![LOG[Task sequence cannot continue after reboot because TS Manager is not configured to auto-start or GINA is not installed]LOG]!><time="16:34:19.350-600" date="01-23-2012" component="TSManager" context="" type="3" thread="1044" file="engine.cxx:561">
<![LOG[CheckForRebootRequest(&bRebootInitiated), HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\executionengine\engine.cxx,274)]LOG]!><time="16:34:19.350-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="engine.cxx:274">
<![LOG[Fatal error is returned in check for reboot request of the action (Restart Computer).
Unspecified error (Error: 80004005; Source: Windows)]LOG]!><time="16:34:19.350-600" date="01-23-2012" component="TSManager" context="" type="3" thread="1044" file="engine.cxx:274">
<![LOG[An error (0x80004005) is encountered in execution of the task sequence]LOG]!><time="16:34:19.350-600" date="01-23-2012" component="TSManager" context="" type="3" thread="1044" file="engine.cxx:349">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="16:34:19.366-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="16:34:19.381-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="16:34:19.381-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:7568">
<![LOG[sending StatusMessage]LOG]!><time="16:34:19.381-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:4019">
<![LOG[setting message signatures.]LOG]!><time="16:34:19.397-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:34:19.397-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:34:19.397-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:34:19.412-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:8734">
<![LOG[m_TSEngine.Execute(& m_eExecutionResult), HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmanager\tsmanager.cpp,752)]LOG]!><time="16:34:56.915-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="tsmanager.cpp:752">
<![LOG[Task Sequence Engine failed! Code: 80004005]LOG]!><time="16:34:56.915-600" date="01-23-2012" component="TSManager" context="" type="3" thread="1044" file="tsmanager.cpp:752">
<![LOG[****************************************************************************]LOG]!><time="16:34:56.915-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:779">
<![LOG[Task sequence execution failed with error code 80004005]LOG]!><time="16:34:56.915-600" date="01-23-2012" component="TSManager" context="" type="3" thread="1044" file="tsmanager.cpp:780">
<![LOG[Cleaning Up.]LOG]!><time="16:34:56.915-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:574">
<![LOG[Removing Authenticator]LOG]!><time="16:34:56.915-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:585">
<![LOG[shKey.DeleteValue( c_szRegValue_SecurityToken ), HRESULT=80070002 (e:\nts_sccm_release\sms\framework\ccmutillib\ccmutillib.cpp,1549)]LOG]!><time="16:34:56.915-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="ccmutillib.cpp:1549">
<![LOG[Cleaning up task sequence folder]LOG]!><time="16:34:56.915-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:1503">
<![LOG[unable to delete file C:\_SMSTaskSequence\TSEnv.dat (0x80070005). Continuing.]LOG]!><time="16:34:57.008-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="ccmfile.cpp:1056">
<![LOG[Error deleting directory 'C:\_SMSTaskSequence' (0x80070091). Retrying after delay.]LOG]!><time="16:34:57.008-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="ccmfile.cpp:1209">
<![LOG[unable to delete file C:\_SMSTaskSequence\TSEnv.dat (0x80070005). Continuing.]LOG]!><time="16:35:02.016-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="ccmfile.cpp:1056">
<![LOG[Error deleting directory 'C:\_SMSTaskSequence' (0x80070091). Retrying after delay.]LOG]!><time="16:35:02.016-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="ccmfile.cpp:1209">
<![LOG[unable to delete file C:\_SMSTaskSequence\TSEnv.dat (0x80070005). Continuing.]LOG]!><time="16:35:07.024-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="ccmfile.cpp:1056">
<![LOG[hr, HRESULT=80070091 (e:\nts_sccm_release\sms\framework\core\ccmcore\ccmfile.cpp,1218)]LOG]!><time="16:35:07.024-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="ccmfile.cpp:1218">
<![LOG[Failed to delete directory 'C:\_SMSTaskSequence']LOG]!><time="16:35:07.024-600" date="01-23-2012" component="TSManager" context="" type="3" thread="1044" file="ccmfile.cpp:1218">
<![LOG[DeleteFileW(sVolumeIDFile.c_str()), HRESULT=80070002 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,518)]LOG]!><time="16:35:07.024-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="resolvesource.cpp:518">
<![LOG[successfully unregistered Task Sequencing Environment COM Interface.]LOG]!><time="16:35:07.024-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="environmentlib.cpp:885">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="16:35:07.024-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="commandline.cpp:228">
<![LOG[set command line: "X:\sms\bin\x64\TsProgressUI.exe" /Unregister]LOG]!><time="16:35:07.024-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="commandline.cpp:705">
<![LOG[Executing command line: "X:\sms\bin\x64\TsProgressUI.exe" /Unregister]LOG]!><time="16:35:07.024-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="commandline.cpp:801">
<![LOG[==========[ TsProgressUI started in process 1544 ]==========]LOG]!><time="16:35:07.039-600" date="01-23-2012" component="TsProgressUI" context="" type="1" thread="1604" file="winmain.cpp:329">
<![LOG[Command line: "X:\sms\bin\x64\TsProgressUI.exe" /Unregister]LOG]!><time="16:35:07.039-600" date="01-23-2012" component="TsProgressUI" context="" type="0" thread="1604" file="winmain.cpp:332">
<![LOG[unregistering COM classes]LOG]!><time="16:35:07.039-600" date="01-23-2012" component="TsProgressUI" context="" type="1" thread="1604" file="winmain.cpp:204">
<![LOG[unregistering class objects]LOG]!><time="16:35:07.039-600" date="01-23-2012" component="TsProgressUI" context="" type="1" thread="1604" file="winmain.cpp:495">
<![LOG[shutdown complete.]LOG]!><time="16:35:07.039-600" date="01-23-2012" component="TsProgressUI" context="" type="1" thread="1604" file="winmain.cpp:512">
<![LOG[Process completed with exit code 0]LOG]!><time="16:35:07.039-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="commandline.cpp:1098">
<![LOG[successfully unregistered TS Progress UI.]LOG]!><time="16:35:07.039-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:2075">
<![LOG[g_TSManager.Run(), HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmanager\tsmanager.cpp,641)]LOG]!><time="16:35:07.039-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="tsmanager.cpp:641">
<![LOG[Error Task Sequence Manager failed to execute task sequence. Code 0x80004005]LOG]!><time="16:35:07.039-600" date="01-23-2012" component="TSManager" context="" type="3" thread="1044" file="tsmanager.cpp:671">
<![LOG[sending error status message]LOG]!><time="16:35:07.039-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tsmanager.cpp:672">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="16:35:07.039-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="16:35:07.055-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="16:35:07.055-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:7568">
<![LOG[sending StatusMessage]LOG]!><time="16:35:07.070-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:4019">
<![LOG[setting message signatures.]LOG]!><time="16:35:07.086-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="16:35:07.086-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="16:35:07.086-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="libsmsmessaging.cpp:8398">
<![LOG[Request was succesful.]LOG]!><time="16:35:07.102-600" date="01-23-2012" component="TSManager" context="" type="0" thread="1044" file="libsmsmessaging.cpp:8734">
<![LOG[Finalize logging request ignored from process 1040]LOG]!><time="16:35:07.102-600" date="01-23-2012" component="TSManager" context="" type="1" thread="1044" file="tslogging.cpp:1737">
<![LOG[Process completed with exit code 2147500037]LOG]!><time="16:35:07.117-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="commandline.cpp:1098">
<![LOG[Task Sequence Manager returned code 0x80004005]LOG]!><time="16:35:07.117-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="800" file="tsmediawizardcontrol.cpp:2070">
<![LOG[ThreadToResolveAndExecuteTaskSequence returned code 0x00000000]LOG]!><time="16:35:07.117-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmediaresolveprogresspage.cpp:221">
<![LOG[ResolveProgressPage::OnWizardNext()]LOG]!><time="16:35:07.117-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsmediaresolveprogresspage.cpp:113">
<![LOG[Activating Finish Page.]LOG]!><time="16:35:07.117-600" date="01-23-2012" component="TSPxe" context="" type="0" thread="824" file="tsmediafinishpage.cpp:107">
<![LOG[Exiting with return code 0x00000000]LOG]!><time="16:35:07.117-600" date="01-23-2012" component="TSPxe" context="" type="1" thread="824" file="tsmbootstrap.cpp:1032">
<![LOG[Execution complete.]LOG]!><time="16:35:07.133-600" date="01-23-2012" component="TSBootShell" context="" type="1" thread="768" file="bootshell.cpp:616">
<![LOG[Finalizing logging from process 732]LOG]!><time="16:35:07.133-600" date="01-23-2012" component="TSBootShell" context="" type="1" thread="768" file="tslogging.cpp:1741">
<![LOG[Finalizing logs to root of first available drive]LOG]!><time="16:35:07.133-600" date="01-23-2012" component="TSBootShell" context="" type="1" thread="768" file="tslogging.cpp:1583">
<![LOG[successfully finalized logs to C:\SMSTSLog]LOG]!><time="16:35:07.133-600" date="01-23-2012" component="TSBootShell" context="" type="1" thread="768" file="tslogging.cpp:1640">
<![LOG[Cleaning up task sequencing logging configuration.]LOG]!><time="16:35:07.133-600" date="01-23-2012" component="TSBootShell" context="" type="0" thread="768" file="tslogging.cpp:584">

Share this post


Link to post
Share on other sites

here's your error

Task sequence cannot continue after reboot because TS Manager is not configured to auto-start or GINA is not installedwhich probably happened due to the configmgr client failing to install, so examine your ccmsetup.log file to see what it tells you

Share this post


Link to post
Share on other sites

I made it install the Client however the TS still fails, here is my SMSTS log

 

<![LOG[successfully moved logs to SMS client log directory: C:\WINDOWS\CCM\Logs\SMSTSLog]LOG]!><time="15:33:10.298-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="1204" file="basesetuphook.cpp:193">
<![LOG[Executing task sequence manager bootstrap]LOG]!><time="15:33:10.298-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="1204" file="basesetuphook.cpp:1373">
<![LOG[Get install directory for SMS client]LOG]!><time="15:33:10.298-600" date="01-27-2012" component="OSDSetupHook" context="" type="0" thread="1204" file="basesetuphook.cpp:533">
<![LOG[update reboot count]LOG]!><time="15:33:10.298-600" date="01-27-2012" component="OSDSetupHook" context="" type="0" thread="1204" file="basesetuphook.cpp:595">
<![LOG[Launch C:\WINDOWS\CCM\TSMBootstrap.exe /env:Gina /configpath:C:\_SMSTaskSequence /bootcount:1]LOG]!><time="15:33:10.298-600" date="01-27-2012" component="OSDSetupHook" context="" type="0" thread="1204" file="basesetuphook.cpp:617">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="15:33:10.298-600" date="01-27-2012" component="OSDSetupHook" context="" type="0" thread="1204" file="commandline.cpp:228">
<![LOG[set command line: "C:\WINDOWS\CCM\TSMBootstrap.exe" /env:Gina /configpath:C:\_SMSTaskSequence /bootcount:1]LOG]!><time="15:33:10.298-600" date="01-27-2012" component="OSDSetupHook" context="" type="0" thread="1204" file="commandline.cpp:705">
<![LOG[Executing command line: "C:\WINDOWS\CCM\TSMBootstrap.exe" /env:Gina /configpath:C:\_SMSTaskSequence /bootcount:1]LOG]!><time="15:33:10.298-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="1204" file="commandline.cpp:801">
<![LOG[==============================[ TSMBootStrap.exe ]==============================]LOG]!><time="15:33:10.314-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="2036" file="tsmbootstrap.cpp:966">
<![LOG[Command line: "C:\WINDOWS\CCM\TSMBootstrap.exe" /env:Gina /configpath:C:\_SMSTaskSequence /bootcount:1]LOG]!><time="15:33:10.314-600" date="01-27-2012" component="TSMBootstrap" context="" type="0" thread="2036" file="tsmbootstrap.cpp:967">
<![LOG[Logging successfully initialized.]LOG]!><time="15:33:10.329-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="2036" file="tsmbootstrap.cpp:827">
<![LOG[Resuming Task Sequence in Full OS]LOG]!><time="15:33:10.329-600" date="01-27-2012" component="TSMBootstrap" context="" type="0" thread="2036" file="tsmbootstrap.cpp:835">
<![LOG[We are going in GINA and potentially need to set the authenticator]LOG]!><time="15:33:10.329-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="2036" file="tsmbootstrap.cpp:302">
<![LOG[setting the authenticator]LOG]!><time="15:33:10.329-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="2036" file="tsmbootstrap.cpp:308">
<![LOG[Executing command line: "C:\WINDOWS\CCM\TsProgressUI.exe" /Register:WinPE]LOG]!><time="15:33:10.329-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="2036" file="commandline.cpp:801">
<![LOG[==========[ TsProgressUI started in process 3016 ]==========]LOG]!><time="15:33:10.345-600" date="01-27-2012" component="TsProgressUI" context="" type="1" thread="1544" file="winmain.cpp:329">
<![LOG[Command line: "C:\WINDOWS\CCM\TsProgressUI.exe" /Register:WinPE]LOG]!><time="15:33:10.345-600" date="01-27-2012" component="TsProgressUI" context="" type="0" thread="1544" file="winmain.cpp:332">
<![LOG[Registering COM classes]LOG]!><time="15:33:10.345-600" date="01-27-2012" component="TsProgressUI" context="" type="1" thread="1544" file="winmain.cpp:187">
<![LOG[sbModulePath = C:\WINDOWS\CCM\TsProgressUI.exe]LOG]!><time="15:33:10.345-600" date="01-27-2012" component="TsProgressUI" context="" type="1" thread="1544" file="tsprogressuiclass.cpp:625">
<![LOG[unregistering class objects]LOG]!><time="15:33:10.360-600" date="01-27-2012" component="TsProgressUI" context="" type="1" thread="1544" file="winmain.cpp:495">
<![LOG[shutdown complete.]LOG]!><time="15:33:10.360-600" date="01-27-2012" component="TsProgressUI" context="" type="1" thread="1544" file="winmain.cpp:512">
<![LOG[Process completed with exit code 0]LOG]!><time="15:33:10.360-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="2036" file="commandline.cpp:1098">
<![LOG[successfully registered TS Progress UI.]LOG]!><time="15:33:10.360-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="2036" file="utils.cpp:2034">
<![LOG[Found network adapter "Intel(R) 82566DM-2 Gigabit Network Connection" with IP Address 192.168.1.103.]LOG]!><time="15:33:10.360-600" date="01-27-2012" component="TSMBootstrap" context="" type="0" thread="2036" file="tsmbootstraputil.cpp:426">
<![LOG[starting Task Sequence Manager.]LOG]!><time="15:33:10.360-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="2036" file="tsmbootstrap.cpp:410">
<![LOG[executing TS Manager not in full media]LOG]!><time="15:33:10.360-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="2036" file="tsmbootstraputil.cpp:491">
<![LOG[executing TS Manager in c:\windows\ccm]LOG]!><time="15:33:10.360-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="2036" file="tsmbootstraputil.cpp:502">
<![LOG[Executing command line: "TsManager.exe"]LOG]!><time="15:33:10.360-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="2036" file="commandline.cpp:801">
<![LOG[successfully intialized Logging for TS Manager.]LOG]!><time="15:33:10.360-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:621">
<![LOG[Commandline: "TsManager.exe"]LOG]!><time="15:33:10.376-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:59">
<![LOG[/service parameter found at index: -1]LOG]!><time="15:33:10.376-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:66">
<![LOG[/standalone parameter found at index: -1]LOG]!><time="15:33:10.376-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:76">
<![LOG[/noclient parameter found at index: -1]LOG]!><time="15:33:10.376-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:97">
<![LOG[successfully registered Task Sequencing COM Interface.]LOG]!><time="15:33:10.376-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="environmentlib.cpp:798">
<![LOG[Executing as a standalone exe]LOG]!><time="15:33:10.376-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:639">
<![LOG[initializing TS Environment]LOG]!><time="15:33:10.376-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:884">
<![LOG[Opening Task Sequencing Environment]LOG]!><time="15:33:10.376-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:921">
<![LOG[pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,254)]LOG]!><time="15:33:10.376-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="resolvesource.cpp:254">
<![LOG[pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,254)]LOG]!><time="15:33:10.376-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="resolvesource.cpp:254">
<![LOG[pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,254)]LOG]!><time="15:33:10.376-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="resolvesource.cpp:254">
<![LOG[pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,254)]LOG]!><time="15:33:10.376-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="resolvesource.cpp:254">
<![LOG[NOT executing in WinPE]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:989">
<![LOG[Compiling Config policy]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:1002">
<![LOG[Compiling config policies...]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2514">
<![LOG[Compiling SysHealthConfig policy...]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2516">
<![LOG[Retrieving value from TSEnv for '_SMSTSSysHealthClientConfig']LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2104">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 692, uncompressed size 4652.]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmzlib.cpp:647">
<![LOG[instance path = 'CCM_SystemHealthClientConfig.SiteSettingsKey="1"']LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2478">
<![LOG[start to compile TS policy]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2238">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2342">
<![LOG[Compiling SoftUpdConfig policy...]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2522">
<![LOG[Retrieving value from TSEnv for '_SMSTSSWUpdateClientConfig']LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2104">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 1654, uncompressed size 17050.]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmzlib.cpp:647">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[start to compile TS policy]LOG]!><time="15:33:10.407-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2238">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2342">
<![LOG[instance path = 'CCM_SoftwareUpdatesClientConfig.SiteSettingsKey="1"']LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2478">
<![LOG[start to compile TS policy]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2238">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2342">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[start to compile TS policy]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2238">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2342">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[start to compile TS policy]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2238">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2342">
<![LOG[Compiling SoftDistClientConfig policy...]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2528">
<![LOG[Retrieving value from TSEnv for '_SMSTSSoftDistClientConfig']LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2104">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 1327, uncompressed size 13742.]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmzlib.cpp:647">
<![LOG[instance path = 'CCM_SoftwareDistributionClientConfig.SiteSettingsKey="1"']LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2478">
<![LOG[start to compile TS policy]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2238">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:33:10.423-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:33:10.438-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2342">
<![LOG[Compiling NAAConfig policy...]LOG]!><time="15:33:10.438-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2534">
<![LOG[Retrieving value from TSEnv for '_SMSTSNAAConfigPolicy']LOG]!><time="15:33:10.438-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2104">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="15:33:10.438-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 760, uncompressed size 2908.]LOG]!><time="15:33:10.438-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmzlib.cpp:647">
<![LOG[instance path = 'CCM_NetworkAccessAccount.SiteSettingsKey="1"']LOG]!><time="15:33:10.438-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2478">
<![LOG[start to compile TS policy]LOG]!><time="15:33:10.438-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2238">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.438-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2342">
<![LOG[Compiling RebootSettingsConfig policy...]LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2540">
<![LOG[Retrieving value from TSEnv for '_SMSTSRebootSettingsConfigPolicy']LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2104">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 432, uncompressed size 1556.]LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmzlib.cpp:647">
<![LOG[instance path = 'CCM_RebootSettings.SiteSettingsKey="1"']LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2478">
<![LOG[start to compile TS policy]LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2238">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="wmiobject.cpp:665">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:2342">
<![LOG[Get Install Directory for SMS Client]LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="utils.cpp:3349">
<![LOG[updating settings in \\minint-c1p2127\root\ccm\policy\machine\actualconfig]LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="policyutil.cpp:7484">
<![LOG[Locked \\MININT-C1P2127\ROOT\CCM\Policy\DefaultMachine\RequestedConfig for source SMS:Client:Default:{F65F4963-D55F-4E97-BBF2-547B49F5018D} successfully]LOG]!><time="15:33:10.501-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:6993">
<![LOG[RequestedConfig policy instance(s) : 400]LOG]!><time="15:33:10.548-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7181">
<![LOG[unlocked \\MININT-C1P2127\ROOT\CCM\Policy\DefaultMachine\RequestedConfig for source SMS:Client:Default:{F65F4963-D55F-4E97-BBF2-547B49F5018D} successfully]LOG]!><time="15:33:10.548-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\CCM\Policy\Machine\RequestedConfig for source SMS:Client:Default:{F65F4963-D55F-4E97-BBF2-547B49F5018D} successfully]LOG]!><time="15:33:10.548-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:6993">
<![LOG[Namespace: \\MININT-C1P2127\ROOT\CCM\Policy\Machine\RequestedConfig, Query: SELECT * FROM CCM_Policy_Policy4 WHERE (PolicySource = "SMS:Client:Default:{F65F4963-D55F-4E97-BBF2-547B49F5018D}") AND (PolicyState = "Active") AND (PolicyType = "Machine")]LOG]!><time="15:33:10.548-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="policyutil.cpp:7039">
<![LOG[There is no ccm_policy_policy instance, skipping addition to realinst map]LOG]!><time="15:33:10.548-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="policyutil.cpp:7040">
<![LOG[unlocked \\MININT-C1P2127\ROOT\CCM\Policy\Machine\RequestedConfig for source SMS:Client:Default:{F65F4963-D55F-4E97-BBF2-547B49F5018D} successfully]LOG]!><time="15:33:10.548-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\CCM\Policy\DefaultMachine\RequestedConfig for source CcmPortal successfully]LOG]!><time="15:33:10.548-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:6993">
<![LOG[RequestedConfig policy instance(s) : 0]LOG]!><time="15:33:10.563-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7181">
<![LOG[unlocked \\MININT-C1P2127\ROOT\CCM\Policy\DefaultMachine\RequestedConfig for source CcmPortal successfully]LOG]!><time="15:33:10.563-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\CCM\Policy\Machine\RequestedConfig for source CcmPortal successfully]LOG]!><time="15:33:10.563-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:6993">
<![LOG[Namespace: \\MININT-C1P2127\ROOT\CCM\Policy\Machine\RequestedConfig, Query: SELECT * FROM CCM_Policy_Policy4 WHERE (PolicySource = "CcmPortal") AND (PolicyState = "Active") AND (PolicyType = "Machine")]LOG]!><time="15:33:10.563-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="policyutil.cpp:7039">
<![LOG[There is no ccm_policy_policy instance, skipping addition to realinst map]LOG]!><time="15:33:10.563-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="policyutil.cpp:7040">
<![LOG[unlocked \\MININT-C1P2127\ROOT\CCM\Policy\Machine\RequestedConfig for source CcmPortal successfully]LOG]!><time="15:33:10.563-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\CCM\Policy\DefaultMachine\RequestedConfig for source Local successfully]LOG]!><time="15:33:10.563-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:6993">
<![LOG[RequestedConfig policy instance(s) : 0]LOG]!><time="15:33:10.563-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7181">
<![LOG[unlocked \\MININT-C1P2127\ROOT\CCM\Policy\DefaultMachine\RequestedConfig for source Local successfully]LOG]!><time="15:33:10.563-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\CCM\Policy\Machine\RequestedConfig for source Local successfully]LOG]!><time="15:33:10.563-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:6993">
<![LOG[RequestedConfig policy instance(s) : 9]LOG]!><time="15:33:10.563-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7181">
<![LOG[unlocked \\MININT-C1P2127\ROOT\CCM\Policy\Machine\RequestedConfig for source Local successfully]LOG]!><time="15:33:10.563-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\CCM\Policy\DefaultMachine\RequestedConfig for source CcmTaskSequence successfully]LOG]!><time="15:33:10.563-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:6993">
<![LOG[RequestedConfig policy instance(s) : 9]LOG]!><time="15:33:10.579-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7181">
<![LOG[unlocked \\MININT-C1P2127\ROOT\CCM\Policy\DefaultMachine\RequestedConfig for source CcmTaskSequence successfully]LOG]!><time="15:33:10.579-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\CCM\Policy\Machine\RequestedConfig for source CcmTaskSequence successfully]LOG]!><time="15:33:10.579-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:6993">
<![LOG[Namespace: \\MININT-C1P2127\ROOT\CCM\Policy\Machine\RequestedConfig, Query: SELECT * FROM CCM_Policy_Policy4 WHERE (PolicySource = "CcmTaskSequence") AND (PolicyState = "Active") AND (PolicyType = "Machine")]LOG]!><time="15:33:10.579-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="policyutil.cpp:7039">
<![LOG[There is no ccm_policy_policy instance, skipping addition to realinst map]LOG]!><time="15:33:10.579-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="policyutil.cpp:7040">
<![LOG[unlocked \\MININT-C1P2127\ROOT\CCM\Policy\Machine\RequestedConfig for source CcmTaskSequence successfully]LOG]!><time="15:33:10.579-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7188">
<![LOG[Total RequestedConfig policy instance(s) : 418]LOG]!><time="15:33:10.626-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7651">
<![LOG[New/Changed ActualConfig policy instance(s) : 9]LOG]!><time="15:33:10.657-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7729">
<![LOG[[1] Added/updated setting 'ccm_clientactions:actionid={00000000-0000-0000-0000-000000000108}'.]LOG]!><time="15:33:10.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7757">
<![LOG[[2] Added/updated setting 'ccm_clientactions:actionid={00000000-0000-0000-0000-000000000113}'.]LOG]!><time="15:33:10.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7757">
<![LOG[[3] Added/updated setting 'ccm_networkaccessaccount:sitesettingskey=1'.]LOG]!><time="15:33:10.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7757">
<![LOG[[4] Added/updated setting 'ccm_scheduler_scheduledmessage:scheduledmessageid={00000000-0000-0000-0000-000000000108}'.]LOG]!><time="15:33:10.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7757">
<![LOG[[5] Added/updated setting 'ccm_scheduler_scheduledmessage:scheduledmessageid={00000000-0000-0000-0000-000000000113}'.]LOG]!><time="15:33:10.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7757">
<![LOG[[6] Added/updated setting 'ccm_scheduler_scheduledmessage:scheduledmessageid={00000000-0000-0000-0000-000000000114}'.]LOG]!><time="15:33:10.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7757">
<![LOG[[7] Added/updated setting 'ccm_softwaredistributionclientconfig:sitesettingskey=1'.]LOG]!><time="15:33:10.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7757">
<![LOG[[8] Added/updated setting 'ccm_softwareupdatesclientconfig:sitesettingskey=1'.]LOG]!><time="15:33:10.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7757">
<![LOG[[9] Added/updated setting 'ccm_systemhealthclientconfig:sitesettingskey=1'.]LOG]!><time="15:33:10.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="policyutil.cpp:7757">
<![LOG[Policy evaluation initiated]LOG]!><time="15:33:10.672-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:3387">
<![LOG[Waiting for policy to be compiled in 'root\ccm\policy\machine' namespace ]LOG]!><time="15:33:10.672-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2157">
<![LOG[Query = 'CCM_SystemHealthClientConfig.SiteSettingsKey="1"' ]LOG]!><time="15:33:10.672-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2181">
<![LOG[Verified policy for instance path 'CCM_SystemHealthClientConfig.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace]LOG]!><time="15:33:10.704-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2205">
<![LOG[Query = 'CCM_SoftwareUpdatesClientConfig.SiteSettingsKey="1"' ]LOG]!><time="15:33:10.704-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2181">
<![LOG[Verified policy for instance path 'CCM_SoftwareUpdatesClientConfig.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace]LOG]!><time="15:33:10.735-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2205">
<![LOG[Query = 'CCM_SoftwareDistributionClientConfig.SiteSettingsKey="1"' ]LOG]!><time="15:33:10.735-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2181">
<![LOG[Verified policy for instance path 'CCM_SoftwareDistributionClientConfig.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace]LOG]!><time="15:33:10.766-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2205">
<![LOG[Query = 'CCM_NetworkAccessAccount.SiteSettingsKey="1"' ]LOG]!><time="15:33:10.766-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2181">
<![LOG[Verified policy for instance path 'CCM_NetworkAccessAccount.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace]LOG]!><time="15:33:10.782-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2205">
<![LOG[Query = 'CCM_RebootSettings.SiteSettingsKey="1"' ]LOG]!><time="15:33:10.782-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2181">
<![LOG[Verified policy for instance path 'CCM_RebootSettings.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace]LOG]!><time="15:33:10.782-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2205">
<![LOG[Policy verification done]LOG]!><time="15:33:10.782-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2208">
<![LOG[Config policies compiled successfully]LOG]!><time="15:33:10.782-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:2550">
<![LOG[_SMSTSReturnToGINA variable set to true]LOG]!><time="15:33:10.782-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:1064">
<![LOG[Waiting for CcmExec service to be fully operational]LOG]!><time="15:33:10.782-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:4019">
<![LOG[CcmExec service is up and fully operational]LOG]!><time="15:33:11.343-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:4024">
<![LOG[Remediating]LOG]!><time="15:33:11.343-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsnapcontrol.cpp:43">
<![LOG[pNAP->GetSystemIsolationInfo(&pNAPInfo, &bUnknownConnections), HRESULT=8027000c (e:\nts_sccm_release\sms\client\tasksequence\napcontrol\remediate.cpp,463)]LOG]!><time="15:33:11.343-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="remediate.cpp:463">
<![LOG[GetSystemIsolationInfo(spNapClientInfo, &IsoStat), HRESULT=8027000c (e:\nts_sccm_release\sms\client\tasksequence\napcontrol\remediate.cpp,632)]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="remediate.cpp:632">
<![LOG[Error getting system isolation info. Code 8027000C]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="3" thread="1548" file="remediate.cpp:632">
<![LOG[ComputeComplianceAndRemediate(&QState), HRESULT=8027000c (e:\nts_sccm_release\sms\client\tasksequence\napcontrol\tsnapcontrol.cpp,48)]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="tsnapcontrol.cpp:48">
<![LOG[Remediation failed. Code 8027000C]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="3" thread="1548" file="tsnapcontrol.cpp:48">
<![LOG[hr = m_oNapCtrl.Remediate(QState), HRESULT=8027000c (e:\nts_sccm_release\sms\client\tasksequence\tsmanager\tsmanager.cpp,1364)]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="tsmanager.cpp:1364">
<![LOG[Remediation failed with error code 8027000C]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="3" thread="1548" file="tsmanager.cpp:1364">
<![LOG[initializing TS Engine]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:1230">
<![LOG[Getting TaskSequenceXML from environment]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:1238">
<![LOG[Parsing task sequence . . .]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:1259">
<![LOG[Loaded TS from string]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:86">
<![LOG[Parsing task sequence to get schema version]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:106">
<![LOG[Task sequence version 3.00]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="tsmanager.cpp:1264">
<![LOG[Task sequence schema version is 3.00]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="tsmanager.cpp:1191">
<![LOG[Current supported schema version is 3.10 and 3.00]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="tsmanager.cpp:1198">
<![LOG[Processing get action table request]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:139">
<![LOG[Got root node now getting list of all child elements]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:150">
<![LOG[There are 3 first level steps or groups]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:318">
<![LOG[Processing group]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:443">
<![LOG[
Parsing group node: Capture Files and Settings]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:365">
<![LOG[Description: Actions to capture files and settings in the original operating system]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:369">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:373">
<![LOG[Disable: ]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:381">
<![LOG[A condition is associated with the step found]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:659">
<![LOG[Found and operator.]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:737">
<![LOG[There are 1 operands]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:772">
<![LOG[**Processing expression node]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:781">
<![LOG[Found SMS_TaskSequence_VariableConditionExpression expression.]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:806">
<![LOG[**In ProcessBuiltInCondition node: expression]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:898">
<![LOG[There are 3 operands in the built in action]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:915">
<![LOG[Operand Operator=equals]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:929">
<![LOG[Operand Value=false]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:929">
<![LOG[Operand Variable=_SMSTSInWinPE]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:929">
<![LOG[successfully added 3 condition parameters]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="tsxml.cpp:994">
<![LOG[Adding begin group instruction at 0]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:393">
<![LOG[There are 1 first level steps or groups]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:318">
<![LOG[
Parsing step node: Capture Network Settings]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:483">
<![LOG[Run in attribute: FullOS]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:33:11.359-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:579">
<![LOG[Variable name: OSDMigrateAdapterSettings]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDMigrateNetworkMembership]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Action command line: osdnetsettings.exe capture netmembership:%OSDMigrateNetworkMembership% adapters:%OSDMigrateAdapterSettings%]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:522">
<![LOG[Adding instruction at 1]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:524">
<![LOG[Processed all elements]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:333">
<![LOG[Adding end group instruction at 2]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:402">
<![LOG[The next instruction after group will be at 3]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:408">
<![LOG[Processing group]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:443">
<![LOG[
Parsing group node: Install Operating System]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:365">
<![LOG[Description: Actions to run in Windows PE to install and configure the image]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:369">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:373">
<![LOG[Disable: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:381">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:670">
<![LOG[Adding begin group instruction at 3]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:393">
<![LOG[There are 6 first level steps or groups]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:318">
<![LOG[
Parsing step node: Restart in Windows PE]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:474">
<![LOG[A condition is associated with the step found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:659">
<![LOG[Found and operator.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:737">
<![LOG[There are 1 operands]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:772">
<![LOG[**Processing expression node]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:781">
<![LOG[Found SMS_TaskSequence_VariableConditionExpression expression.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:806">
<![LOG[**In ProcessBuiltInCondition node: expression]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:898">
<![LOG[There are 3 operands in the built in action]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:915">
<![LOG[Operand Operator=equals]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:929">
<![LOG[Operand Value=false]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:929">
<![LOG[Operand Variable=_SMSTSInWinPE]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:929">
<![LOG[successfully added 3 condition parameters]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="tsxml.cpp:994">
<![LOG[Disable: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:579">
<![LOG[Variable name: SMSRebootMessage]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: SMSRebootTimeout]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Action command line: smsboot.exe /target:WinPE]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:522">
<![LOG[Adding instruction at 4]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Partition Disk 0]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:458">
<![LOG[Description: Actions to partition and format the new machine]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:474">
<![LOG[A condition is associated with the step found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:659">
<![LOG[Found and operator.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:737">
<![LOG[There are 2 operands]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:772">
<![LOG[**Processing expression node]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:781">
<![LOG[Found SMS_TaskSequence_VariableConditionExpression expression.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:806">
<![LOG[**In ProcessBuiltInCondition node: expression]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:898">
<![LOG[There are 2 operands in the built in action]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:915">
<![LOG[Operand Operator=notExists]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:929">
<![LOG[Operand Variable=_SMSTSClientCache]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:929">
<![LOG[successfully added 3 condition parameters]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="tsxml.cpp:994">
<![LOG[**Processing expression node]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:781">
<![LOG[Found SMS_TaskSequence_VariableConditionExpression expression.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:806">
<![LOG[**In ProcessBuiltInCondition node: expression]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:898">
<![LOG[There are 3 operands in the built in action]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:915">
<![LOG[Operand Operator=notEquals]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:929">
<![LOG[Operand Value=OEMMedia]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:929">
<![LOG[Operand Variable=_SMSTSMediaType]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:929">
<![LOG[successfully added 3 condition parameters]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="tsxml.cpp:994">
<![LOG[Disable: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPE]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:579">
<![LOG[Variable name: OSDDiskIndex]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDDiskType]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDDiskpartBiosCompatibilityMode]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDGPTBootDisk]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitionStyle]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0Bootable]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0FileSystem]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0QuickFormat]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0Size]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0SizeUnits]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0Type]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0VolumeName]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Action command line: osddiskpart.exe]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:522">
<![LOG[Adding instruction at 5]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Apply Operating System]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:458">
<![LOG[Description: Actions to apply operating system]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPE]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:579">
<![LOG[Variable name: OSDImageIndex]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDInstallEditionIndex]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Action command line: OSDApplyOS.exe /image:BCA0003C,%OSDImageIndex%]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:522">
<![LOG[Adding instruction at 6]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Apply Windows Settings]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:458">
<![LOG[Description: Actions to apply Windows settings]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPE]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:579">
<![LOG[Variable name: OSDLocalAdminPassword]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDComputerName]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDProductKey]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDRandomAdminPassword]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDRegisteredOrgName]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDRegisteredUserName]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDServerLicenseConnectionLimit]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDTimeZone]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Action command line: osdwinsettings.exe /config]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:522">
<![LOG[Adding instruction at 7]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Apply Network Settings]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:458">
<![LOG[Description: Actions to configure network settings]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:579">
<![LOG[Variable name: OSDNetworkJoinType]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDWorkgroupName]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Action command line: osdnetsettings.exe configure]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:522">
<![LOG[Adding instruction at 8]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Apply Device Drivers]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:474">
<![LOG[A condition is associated with the step found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:659">
<![LOG[Found and operator.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:737">
<![LOG[There are 1 operands]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:772">
<![LOG[**Processing expression node]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:781">
<![LOG[Found SMS_TaskSequence_VariableConditionExpression expression.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:806">
<![LOG[**In ProcessBuiltInCondition node: expression]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:898">
<![LOG[There are 3 operands in the built in action]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:915">
<![LOG[Operand Operator=notEquals]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:929">
<![LOG[Operand Value=FullMedia]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:929">
<![LOG[Operand Variable=_SMSTSMediaType]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:929">
<![LOG[successfully added 3 condition parameters]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="tsxml.cpp:994">
<![LOG[Disable: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPE]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:579">
<![LOG[Variable name: OSDAutoApplyDriverBestMatch]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: OSDAllowUnsignedDriver]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Action command line: osddriverclient.exe /auto /bestmatch:%OSDAutoApplyDriverBestMatch% /unsigned:%OSDAllowUnsignedDriver%]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:522">
<![LOG[Adding instruction at 9]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:524">
<![LOG[Processed all elements]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:333">
<![LOG[Adding end group instruction at 10]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:402">
<![LOG[The next instruction after group will be at 11]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:408">
<![LOG[Processing group]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:443">
<![LOG[
Parsing group node: Setup Operating System]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:365">
<![LOG[Description: Setup Operating System]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:369">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:373">
<![LOG[Disable: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:381">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:670">
<![LOG[Adding begin group instruction at 11]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:393">
<![LOG[There are 7 first level steps or groups]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:318">
<![LOG[
Parsing step node: Setup Windows and ConfigMgr]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:579">
<![LOG[Variable name: SMSClientInstallProperties]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSClientPackageID]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Action command line: OSDSetupWindows.exe]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:522">
<![LOG[Adding instruction at 12]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Restart Computer]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:579">
<![LOG[Variable name: SMSRebootMessage]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: SMSRebootTimeout]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Action command line: smsboot.exe /target:HD]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:522">
<![LOG[Adding instruction at 13]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:524">
<![LOG[
Parsing step node: CLS0001]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:466">
<![LOG[successCodeList: 0 3010]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:579">
<![LOG[Variable name: SMSTSDisableWow64Redirection]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSTSRunCommandLineAsUser]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: WorkingDirectory]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Action command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0001.cmd]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:522">
<![LOG[Adding instruction at 14]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:524">
<![LOG[
Parsing step node: CLS0002]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:466">
<![LOG[successCodeList: 0 3010]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:579">
<![LOG[Variable name: SMSTSDisableWow64Redirection]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSTSRunCommandLineAsUser]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: WorkingDirectory]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Action command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0002.cmd]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:522">
<![LOG[Adding instruction at 15]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:524">
<![LOG[
Parsing step node: CLS0003]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:466">
<![LOG[successCodeList: 0 3010]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:579">
<![LOG[Variable name: SMSTSDisableWow64Redirection]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSTSRunCommandLineAsUser]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: WorkingDirectory]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Action command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0003.cmd]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:522">
<![LOG[Adding instruction at 16]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:524">
<![LOG[
Parsing step node: CLS0004]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:466">
<![LOG[successCodeList: 0 3010]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:579">
<![LOG[Variable name: SMSTSDisableWow64Redirection]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSTSRunCommandLineAsUser]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: WorkingDirectory]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Action command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0004.cmd]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:522">
<![LOG[Adding instruction at 17]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:524">
<![LOG[
Parsing step node: CLS0005]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:466">
<![LOG[successCodeList: 0 3010]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:579">
<![LOG[Variable name: SMSTSDisableWow64Redirection]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSTSRunCommandLineAsUser]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Variable name: WorkingDirectory]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:620">
<![LOG[Action command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0005.cmd]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:522">
<![LOG[Adding instruction at 18]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:524">
<![LOG[Processed all elements]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:333">
<![LOG[Adding end group instruction at 19]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:402">
<![LOG[The next instruction after group will be at 20]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:408">
<![LOG[Processed all elements]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:333">
<![LOG[
Reading Global variable list]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:183">
<![LOG[Got root node now getting global var list]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:194">
<![LOG[GlobalVarlist found]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:210">
<![LOG[Variable name: OSDEnableTCPIPFiltering]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsxml.cpp:244">
<![LOG[starting Task Sequence Engine . . . ]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:747">
<![LOG[****************************************************************************]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="tsmanager.cpp:749">
<![LOG[NextInstructionPointer: 12]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="executionenv.cxx:482">
<![LOG[set a global environment variable _SMSTSInstructionTableSize=20]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a global environment variable SMSTSRebootRequested=]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a global environment variable SMSTSRebootDelay=]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a global environment variable SMSTSRebootMessage=]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a global environment variable SMSTSRebootReason=]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a global environment variable SMSTSRetryRequested=]LOG]!><time="15:33:11.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[succeeded loading resource DLL 'C:\WINDOWS\CCM\1033\TSRES.DLL']LOG]!><time="15:33:11.499-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="util.cpp:910">
<![LOG[The task execution engine started execution]LOG]!><time="15:33:11.499-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="engine.cxx:70">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="15:33:11.499-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="15:33:11.905-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="15:33:11.905-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="libsmsmessaging.cpp:7552">
<![LOG[sending StatusMessage]LOG]!><time="15:33:11.920-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="libsmsmessaging.cpp:4003">
<![LOG[setting message signatures.]LOG]!><time="15:33:11.920-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="15:33:11.920-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="15:33:11.936-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="libsmsmessaging.cpp:8382">
<![LOG[Request was succesful.]LOG]!><time="15:33:11.967-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="libsmsmessaging.cpp:8718">
<![LOG[start executing an instruciton. Instruction name: Setup Windows and ConfigMgr. Instruction pointer: 12]LOG]!><time="15:33:11.983-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="engine.cxx:117">
<![LOG[set a global environment variable _SMSTSCurrentActionName=Setup Windows and ConfigMgr]LOG]!><time="15:33:11.983-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=12]LOG]!><time="15:33:11.983-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a local default variable SMSClientInstallProperties]LOG]!><time="15:33:12.014-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:700">
<![LOG[set a local default variable _SMSClientPackageID]LOG]!><time="15:33:12.014-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:700">
<![LOG[set a global environment variable _SMSTSLogPath=C:\WINDOWS\CCM\Logs\SMSTSLog]LOG]!><time="15:33:12.014-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[Expand a string: OSDSetupWindows.exe]LOG]!><time="15:33:12.014-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:782">
<![LOG[Expand a string: ]LOG]!><time="15:33:12.014-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:782">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="15:33:12.014-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="commandline.cpp:228">
<![LOG[set command line: OSDSetupWindows.exe]LOG]!><time="15:33:12.014-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="commandline.cpp:705">
<![LOG[start executing the command line: OSDSetupWindows.exe]LOG]!><time="15:33:12.014-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="instruction.cxx:2929">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="15:33:12.014-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="instruction.cxx:2958">
<![LOG[Expand a string: WinPEandFullOS]LOG]!><time="15:33:12.014-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:782">
<![LOG[Executing command line: OSDSetupWindows.exe]LOG]!><time="15:33:12.014-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="commandline.cpp:801">
<![LOG[==============================[ OSDSetupWindows.exe ]===========================]LOG]!><time="15:33:12.045-600" date="01-27-2012" component="OSDSetupWindows" context="" type="1" thread="2968" file="setupwindows.cpp:1645">
<![LOG[Command line: "OSDSetupWindows.exe"]LOG]!><time="15:33:12.045-600" date="01-27-2012" component="OSDSetupWindows" context="" type="1" thread="2968" file="setupwindows.cpp:1646">
<![LOG[Found command lines to run on first boot.]LOG]!><time="15:33:12.061-600" date="01-27-2012" component="OSDSetupWindows" context="" type="1" thread="2968" file="setupwindows.cpp:281">
<![LOG[Executing command line: "OSDNetSettings.exe finalize".]LOG]!><time="15:33:12.061-600" date="01-27-2012" component="OSDSetupWindows" context="" type="1" thread="2968" file="setupwindows.cpp:295">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="15:33:12.061-600" date="01-27-2012" component="OSDSetupWindows" context="" type="0" thread="2968" file="commandline.cpp:228">
<![LOG[set command line: "OSDNetSettings.exe" finalize]LOG]!><time="15:33:12.061-600" date="01-27-2012" component="OSDSetupWindows" context="" type="0" thread="2968" file="commandline.cpp:705">
<![LOG[Executing command line: "OSDNetSettings.exe" finalize]LOG]!><time="15:33:12.061-600" date="01-27-2012" component="OSDSetupWindows" context="" type="1" thread="2968" file="commandline.cpp:801">
<![LOG[==============================[ OSDNetSettings.exe ]===========================]LOG]!><time="15:33:12.061-600" date="01-27-2012" component="OSDNetSettings" context="" type="1" thread="2960" file="main.cpp:134">
<![LOG[Command line: "OSDNetSettings.exe" finalize]LOG]!><time="15:33:12.061-600" date="01-27-2012" component="OSDNetSettings" context="" type="1" thread="2960" file="main.cpp:135">
<![LOG[No adapters found in environment.  Performing global finalization only.]LOG]!><time="15:33:12.061-600" date="01-27-2012" component="OSDNetSettings" context="" type="1" thread="2960" file="netsettings.cpp:222">
<![LOG[Finalizing global network settings]LOG]!><time="15:33:12.061-600" date="01-27-2012" component="OSDNetSettings" context="" type="1" thread="2960" file="netsettings.cpp:227">
<![LOG[iP filter sec enabled: false]LOG]!><time="15:33:12.061-600" date="01-27-2012" component="OSDNetSettings" context="" type="0" thread="2960" file="netglobalsettings.cpp:524">
<![LOG[DNS for WINS enabled: ]LOG]!><time="15:33:12.108-600" date="01-27-2012" component="OSDNetSettings" context="" type="0" thread="2960" file="netglobalsettings.cpp:544">
<![LOG[LMHosts file enabled: ]LOG]!><time="15:33:12.108-600" date="01-27-2012" component="OSDNetSettings" context="" type="0" thread="2960" file="netglobalsettings.cpp:548">
<![LOG[WINS scope ID: ]LOG]!><time="15:33:12.108-600" date="01-27-2012" component="OSDNetSettings" context="" type="0" thread="2960" file="netglobalsettings.cpp:560">
<![LOG[OSDNetSettings finished: 0x00000000]LOG]!><time="15:33:12.108-600" date="01-27-2012" component="OSDNetSettings" context="" type="1" thread="2960" file="main.cpp:192">
<![LOG[Process completed with exit code 0]LOG]!><time="15:33:12.123-600" date="01-27-2012" component="OSDSetupWindows" context="" type="1" thread="2968" file="commandline.cpp:1098">
<![LOG[successfully executed command lines, clearing _SMSTSRunOnFirstBoot.]LOG]!><time="15:33:12.123-600" date="01-27-2012" component="OSDSetupWindows" context="" type="1" thread="2968" file="setupwindows.cpp:304">
<![LOG[Exiting with code 0x00000000]LOG]!><time="15:33:12.123-600" date="01-27-2012" component="OSDSetupWindows" context="" type="1" thread="2968" file="setupwindows.cpp:1714">
<![LOG[Process completed with exit code 0]LOG]!><time="15:33:12.123-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="commandline.cpp:1098">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="15:33:12.139-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="instruction.cxx:3011">
<![LOG[successfully completed the action (Setup Windows and ConfigMgr) with the exit win32 code 0]LOG]!><time="15:33:12.139-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="instruction.cxx:3037">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="15:33:12.154-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="15:33:12.170-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="15:33:12.170-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="libsmsmessaging.cpp:7552">
<![LOG[sending StatusMessage]LOG]!><time="15:33:12.186-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="libsmsmessaging.cpp:4003">
<![LOG[setting message signatures.]LOG]!><time="15:33:12.186-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="15:33:12.186-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="15:33:12.186-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="libsmsmessaging.cpp:8382">
<![LOG[Request was succesful.]LOG]!><time="15:33:12.217-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="libsmsmessaging.cpp:8718">
<![LOG[set a global environment variable _SMSTSLastActionRetCode=0]LOG]!><time="15:33:12.217-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSLastActionSucceeded=true]LOG]!><time="15:33:12.217-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[Clear local default environment]LOG]!><time="15:33:12.217-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:807">
<![LOG[updated security on object C:\_SMSTaskSequence.]LOG]!><time="15:33:12.420-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:1019">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=13]LOG]!><time="15:33:12.420-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSNextInstructionPointer=13]LOG]!><time="15:33:12.420-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:386">
<![LOG[set a global environment variable _SMSTSInstructionStackString=11]LOG]!><time="15:33:12.420-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSInstructionStackString=11]LOG]!><time="15:33:12.420-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:414">
<![LOG[save the current environment block]LOG]!><time="15:33:12.420-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:833">
<![LOG[successfully save execution state and environment to local hard disk]LOG]!><time="15:33:12.451-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="engine.cxx:255">
<![LOG[start executing an instruciton. Instruction name: Restart Computer. Instruction pointer: 13]LOG]!><time="15:33:12.451-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="engine.cxx:117">
<![LOG[set a global environment variable _SMSTSCurrentActionName=Restart Computer]LOG]!><time="15:33:12.451-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=13]LOG]!><time="15:33:12.451-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a local default variable SMSRebootMessage]LOG]!><time="15:33:12.451-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:700">
<![LOG[set a local default variable SMSRebootTimeout]LOG]!><time="15:33:12.451-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:700">
<![LOG[set a global environment variable _SMSTSLogPath=C:\WINDOWS\CCM\Logs\SMSTSLog]LOG]!><time="15:33:12.451-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[Expand a string: smsboot.exe /target:HD]LOG]!><time="15:33:12.451-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:782">
<![LOG[Expand a string: ]LOG]!><time="15:33:12.466-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:782">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="15:33:12.466-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="commandline.cpp:228">
<![LOG[set command line: smsboot.exe /target:HD]LOG]!><time="15:33:12.466-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="commandline.cpp:705">
<![LOG[start executing the command line: smsboot.exe /target:HD]LOG]!><time="15:33:12.466-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="instruction.cxx:2929">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="15:33:12.466-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="instruction.cxx:2958">
<![LOG[Expand a string: WinPEandFullOS]LOG]!><time="15:33:12.466-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:782">
<![LOG[Executing command line: smsboot.exe /target:HD]LOG]!><time="15:33:12.466-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="commandline.cpp:801">
<![LOG[========================= [ smsboot.exe ] =========================]LOG]!><time="15:33:12.466-600" date="01-27-2012" component="Reboot" context="" type="1" thread="2612" file="rebootcomputer.cpp:184">
<![LOG[Command line: '"smsboot.exe" /target:HD']LOG]!><time="15:33:12.466-600" date="01-27-2012" component="Reboot" context="" type="0" thread="2612" file="rebootcomputer.cpp:186">
<![LOG[sMSTSRebootDelay=60]LOG]!><time="15:33:12.482-600" date="01-27-2012" component="Reboot" context="" type="1" thread="2612" file="rebootcomputer.cpp:122">
<![LOG[sMSTSRebootMessage=A new Microsoft Windows operating system is being installed. The computer must restart to continue.]LOG]!><time="15:33:12.482-600" date="01-27-2012" component="Reboot" context="" type="1" thread="2612" file="rebootcomputer.cpp:122">
<![LOG[sMSTSRebootRequested=HD]LOG]!><time="15:33:12.482-600" date="01-27-2012" component="Reboot" context="" type="1" thread="2612" file="rebootcomputer.cpp:122">
<![LOG[Process completed with exit code 0]LOG]!><time="15:33:12.482-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="commandline.cpp:1098">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="15:33:12.482-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="instruction.cxx:3011">
<![LOG[successfully completed the action (Restart Computer) with the exit win32 code 0]LOG]!><time="15:33:12.482-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="instruction.cxx:3037">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="15:33:12.482-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="15:33:12.498-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="15:33:12.498-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="libsmsmessaging.cpp:7552">
<![LOG[sending StatusMessage]LOG]!><time="15:33:12.513-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="libsmsmessaging.cpp:4003">
<![LOG[setting message signatures.]LOG]!><time="15:33:12.513-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="15:33:12.513-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="15:33:12.513-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="libsmsmessaging.cpp:8382">
<![LOG[Request was succesful.]LOG]!><time="15:33:12.544-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="libsmsmessaging.cpp:8718">
<![LOG[set a global environment variable _SMSTSLastActionRetCode=0]LOG]!><time="15:33:12.544-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSLastActionSucceeded=true]LOG]!><time="15:33:12.638-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[Clear local default environment]LOG]!><time="15:33:12.638-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:807">
<![LOG[updated security on object C:\_SMSTaskSequence.]LOG]!><time="15:33:12.654-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:1019">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=14]LOG]!><time="15:33:12.654-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSNextInstructionPointer=14]LOG]!><time="15:33:12.654-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:386">
<![LOG[set a global environment variable _SMSTSInstructionStackString=11]LOG]!><time="15:33:12.654-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSInstructionStackString=11]LOG]!><time="15:33:12.654-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:414">
<![LOG[save the current environment block]LOG]!><time="15:33:12.654-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:833">
<![LOG[successfully save execution state and environment to local hard disk]LOG]!><time="15:33:12.685-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="engine.cxx:255">
<![LOG[Reboot to local harddisk]LOG]!><time="15:33:12.685-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="engine.cxx:458">
<![LOG[_OSDGinaIsConfigured variable set to TRUE]LOG]!><time="15:33:12.685-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="engine.cxx:537">
<![LOG[_SMSTSServiceStartType variable set to ]LOG]!><time="15:33:12.685-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="engine.cxx:549">
<![LOG[Calling RebootSystem()]LOG]!><time="15:33:12.685-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="engine.cxx:567">
<![LOG[OSD type of task sequence. ignore the service window setting]LOG]!><time="15:33:12.685-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="engine.cxx:669">
<![LOG[updated security on object C:\_SMSTSVolumeID.7159644d-f741-45d5-ab29-0ad8aa4771ca.]LOG]!><time="15:33:12.685-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:1019">
<![LOG[updated security on object C:\_SMSTaskSequence.]LOG]!><time="15:33:12.700-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1548" file="utils.cpp:1019">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=14]LOG]!><time="15:33:12.700-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSNextInstructionPointer=14]LOG]!><time="15:33:12.700-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:386">
<![LOG[set a global environment variable _SMSTSInstructionStackString=11]LOG]!><time="15:33:12.700-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:668">
<![LOG[set a TS execution environment variable _SMSTSInstructionStackString=11]LOG]!><time="15:33:12.700-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:414">
<![LOG[save the current environment block]LOG]!><time="15:33:12.700-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:833">
<![LOG[Expand a string: %_SMSTSMDataPath%\Logs]LOG]!><time="15:33:12.716-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1548" file="executionenv.cxx:782">
<![LOG[==============================[ OSDSetupHook.exe ]==============================]LOG]!><time="15:35:01.475-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="osdsetuphook.cpp:186">
<![LOG[Executing task sequence]LOG]!><time="15:35:01.522-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="osdsetuphook.cpp:277">
<![LOG[Loading the Task Sequencing Environment from "C:\_SMSTaskSequence\TSEnv.dat".]LOG]!><time="15:35:01.694-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="basesetuphook.cpp:237">
<![LOG[Environment scope "Global\{51A016B6-F0DE-4752-B97C-54E6F386A912}" successfully created]LOG]!><time="15:35:01.803-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="environmentscope.cpp:305">
<![LOG[Environment scope "Global\{BA3A3900-CA6D-4ac1-8C28-5073AFC22B03}" successfully created]LOG]!><time="15:35:01.803-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="environmentscope.cpp:305">
<![LOG[Debug shell is enabled]LOG]!><time="15:35:04.190-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="basesetuphook.cpp:1305">
<![LOG[successfully enabled debug command shell support.]LOG]!><time="15:35:04.190-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="debugwindow.cpp:156">
<![LOG[Configuring local administrator account]LOG]!><time="15:35:04.190-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="basesetuphook.cpp:1327">
<![LOG[installing SMS client]LOG]!><time="15:35:04.190-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="basesetuphook.cpp:1335">
<![LOG[Client already installed.]LOG]!><time="15:35:04.190-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="installclient.cpp:1047">
<![LOG[Moving logs to SMS client directory]LOG]!><time="15:35:04.190-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="basesetuphook.cpp:1356">
<![LOG[successfully moved logs to SMS client log directory: C:\WINDOWS\CCM\Logs\SMSTSLog]LOG]!><time="15:35:04.252-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="basesetuphook.cpp:193">
<![LOG[Executing task sequence manager bootstrap]LOG]!><time="15:35:04.252-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="basesetuphook.cpp:1373">
<![LOG[Executing command line: "C:\WINDOWS\CCM\TSMBootstrap.exe" /env:Gina /configpath:C:\_SMSTaskSequence /bootcount:2]LOG]!><time="15:35:04.299-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="commandline.cpp:801">
<![LOG[==============================[ TSMBootStrap.exe ]==============================]LOG]!><time="15:35:05.048-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="1668" file="tsmbootstrap.cpp:966">
<![LOG[Command line: "C:\WINDOWS\CCM\TSMBootstrap.exe" /env:Gina /configpath:C:\_SMSTaskSequence /bootcount:2]LOG]!><time="15:35:05.048-600" date="01-27-2012" component="TSMBootstrap" context="" type="0" thread="1668" file="tsmbootstrap.cpp:967">
<![LOG[Logging successfully initialized.]LOG]!><time="15:35:05.188-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="1668" file="tsmbootstrap.cpp:827">
<![LOG[Resuming Task Sequence in Full OS]LOG]!><time="15:35:05.188-600" date="01-27-2012" component="TSMBootstrap" context="" type="0" thread="1668" file="tsmbootstrap.cpp:835">
<![LOG[We are going in GINA and potentially need to set the authenticator]LOG]!><time="15:35:05.204-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="1668" file="tsmbootstrap.cpp:302">
<![LOG[setting the authenticator]LOG]!><time="15:35:05.204-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="1668" file="tsmbootstrap.cpp:308">
<![LOG[Executing command line: "C:\WINDOWS\CCM\TsProgressUI.exe" /Register:WinPE]LOG]!><time="15:35:05.250-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="1668" file="commandline.cpp:801">
<![LOG[==========[ TsProgressUI started in process 1688 ]==========]LOG]!><time="15:35:05.297-600" date="01-27-2012" component="TsProgressUI" context="" type="1" thread="1692" file="winmain.cpp:329">
<![LOG[Command line: "C:\WINDOWS\CCM\TsProgressUI.exe" /Register:WinPE]LOG]!><time="15:35:05.297-600" date="01-27-2012" component="TsProgressUI" context="" type="0" thread="1692" file="winmain.cpp:332">
<![LOG[Registering COM classes]LOG]!><time="15:35:05.297-600" date="01-27-2012" component="TsProgressUI" context="" type="1" thread="1692" file="winmain.cpp:187">
<![LOG[sbModulePath = C:\WINDOWS\CCM\TsProgressUI.exe]LOG]!><time="15:35:05.297-600" date="01-27-2012" component="TsProgressUI" context="" type="1" thread="1692" file="tsprogressuiclass.cpp:625">
<![LOG[unregistering class objects]LOG]!><time="15:35:05.328-600" date="01-27-2012" component="TsProgressUI" context="" type="1" thread="1692" file="winmain.cpp:495">
<![LOG[shutdown complete.]LOG]!><time="15:35:05.328-600" date="01-27-2012" component="TsProgressUI" context="" type="1" thread="1692" file="winmain.cpp:512">
<![LOG[Process completed with exit code 0]LOG]!><time="15:35:05.344-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="1668" file="commandline.cpp:1098">
<![LOG[successfully registered TS Progress UI.]LOG]!><time="15:35:05.360-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="1668" file="utils.cpp:2034">
<![LOG[Found network adapter "Intel(R) 82566DM-2 Gigabit Network Connection" with IP Address 192.168.1.103.]LOG]!><time="15:35:05.360-600" date="01-27-2012" component="TSMBootstrap" context="" type="0" thread="1668" file="tsmbootstraputil.cpp:426">
<![LOG[starting Task Sequence Manager.]LOG]!><time="15:35:05.360-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="1668" file="tsmbootstrap.cpp:410">
<![LOG[executing TS Manager not in full media]LOG]!><time="15:35:05.360-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="1668" file="tsmbootstraputil.cpp:491">
<![LOG[executing TS Manager in c:\windows\ccm]LOG]!><time="15:35:05.360-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="1668" file="tsmbootstraputil.cpp:502">
<![LOG[Executing command line: "TsManager.exe"]LOG]!><time="15:35:05.360-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="1668" file="commandline.cpp:801">
<![LOG[successfully intialized Logging for TS Manager.]LOG]!><time="15:35:05.375-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:621">
<![LOG[Commandline: "TsManager.exe"]LOG]!><time="15:35:05.391-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:59">
<![LOG[/service parameter found at index: -1]LOG]!><time="15:35:05.391-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:66">
<![LOG[/standalone parameter found at index: -1]LOG]!><time="15:35:05.391-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:76">
<![LOG[/noclient parameter found at index: -1]LOG]!><time="15:35:05.391-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:97">
<![LOG[successfully registered Task Sequencing COM Interface.]LOG]!><time="15:35:05.422-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="environmentlib.cpp:798">
<![LOG[Executing as a standalone exe]LOG]!><time="15:35:05.422-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:639">
<![LOG[initializing TS Environment]LOG]!><time="15:35:05.422-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:884">
<![LOG[Opening Task Sequencing Environment]LOG]!><time="15:35:05.422-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:921">
<![LOG[pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,254)]LOG]!><time="15:35:05.438-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="resolvesource.cpp:254">
<![LOG[pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,254)]LOG]!><time="15:35:05.438-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="resolvesource.cpp:254">
<![LOG[pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,254)]LOG]!><time="15:35:05.438-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="resolvesource.cpp:254">
<![LOG[pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,254)]LOG]!><time="15:35:05.438-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="resolvesource.cpp:254">
<![LOG[NOT executing in WinPE]LOG]!><time="15:35:05.469-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:989">
<![LOG[Compiling Config policy]LOG]!><time="15:35:05.469-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:1002">
<![LOG[Compiling config policies...]LOG]!><time="15:35:05.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2514">
<![LOG[Compiling SysHealthConfig policy...]LOG]!><time="15:35:05.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2516">
<![LOG[Retrieving value from TSEnv for '_SMSTSSysHealthClientConfig']LOG]!><time="15:35:05.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2104">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="15:35:05.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 692, uncompressed size 4652.]LOG]!><time="15:35:05.484-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmzlib.cpp:647">
<![LOG[instance path = 'CCM_SystemHealthClientConfig.SiteSettingsKey="1"']LOG]!><time="15:35:05.500-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2478">
<![LOG[start to compile TS policy]LOG]!><time="15:35:05.500-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2238">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.562-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.562-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.562-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.562-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.562-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.562-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.562-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.562-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:35:05.578-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:35:05.578-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2342">
<![LOG[Compiling SoftUpdConfig policy...]LOG]!><time="15:35:05.578-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2522">
<![LOG[Retrieving value from TSEnv for '_SMSTSSWUpdateClientConfig']LOG]!><time="15:35:05.578-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2104">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="15:35:05.578-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 1654, uncompressed size 17050.]LOG]!><time="15:35:05.578-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmzlib.cpp:647">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:35:05.578-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:35:05.578-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[start to compile TS policy]LOG]!><time="15:35:05.578-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2238">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.578-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2342">
<![LOG[instance path = 'CCM_SoftwareUpdatesClientConfig.SiteSettingsKey="1"']LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2478">
<![LOG[start to compile TS policy]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2238">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2342">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[start to compile TS policy]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2238">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2342">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[start to compile TS policy]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2238">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2342">
<![LOG[Compiling SoftDistClientConfig policy...]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2528">
<![LOG[Retrieving value from TSEnv for '_SMSTSSoftDistClientConfig']LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2104">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 1327, uncompressed size 13742.]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmzlib.cpp:647">
<![LOG[instance path = 'CCM_SoftwareDistributionClientConfig.SiteSettingsKey="1"']LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2478">
<![LOG[start to compile TS policy]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2238">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.594-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:35:05.609-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:35:05.609-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2342">
<![LOG[Compiling NAAConfig policy...]LOG]!><time="15:35:05.609-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2534">
<![LOG[Retrieving value from TSEnv for '_SMSTSNAAConfigPolicy']LOG]!><time="15:35:05.609-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2104">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="15:35:05.609-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 760, uncompressed size 2908.]LOG]!><time="15:35:05.609-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmzlib.cpp:647">
<![LOG[instance path = 'CCM_NetworkAccessAccount.SiteSettingsKey="1"']LOG]!><time="15:35:05.609-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2478">
<![LOG[start to compile TS policy]LOG]!><time="15:35:05.609-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2238">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.609-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:35:05.672-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:35:05.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2342">
<![LOG[Compiling RebootSettingsConfig policy...]LOG]!><time="15:35:05.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2540">
<![LOG[Retrieving value from TSEnv for '_SMSTSRebootSettingsConfigPolicy']LOG]!><time="15:35:05.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2104">
<![LOG[::DecompressBuffer(65536)]LOG]!><time="15:35:05.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmzlib.cpp:736">
<![LOG[Decompression (zlib) succeeded: original size 432, uncompressed size 1556.]LOG]!><time="15:35:05.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmzlib.cpp:647">
<![LOG[instance path = 'CCM_RebootSettings.SiteSettingsKey="1"']LOG]!><time="15:35:05.672-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2478">
<![LOG[start to compile TS policy]LOG]!><time="15:35:05.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2238">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Converting input value from 19 to 3]LOG]!><time="15:35:05.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="wmiobject.cpp:665">
<![LOG[Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace]LOG]!><time="15:35:05.672-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2338">
<![LOG[End TS policy compilation]LOG]!><time="15:35:05.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2342">
<![LOG[Get Install Directory for SMS Client]LOG]!><time="15:35:05.672-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:3349">
<![LOG[updating settings in \\minint-c1p2127\root\ccm\policy\machine\actualconfig]LOG]!><time="15:35:06.046-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:7484">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source SMS:Client:Default:{F65F4963-D55F-4E97-BBF2-547B49F5018D} successfully]LOG]!><time="15:35:06.093-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[RequestedConfig policy instance(s) : 400]LOG]!><time="15:35:06.140-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7181">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source SMS:Client:Default:{F65F4963-D55F-4E97-BBF2-547B49F5018D} successfully]LOG]!><time="15:35:06.140-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\machine\RequestedConfig for source SMS:Client:Default:{F65F4963-D55F-4E97-BBF2-547B49F5018D} successfully]LOG]!><time="15:35:06.140-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[Namespace: \\MININT-C1P2127\ROOT\ccm\policy\machine\RequestedConfig, Query: SELECT * FROM CCM_Policy_Policy4 WHERE (PolicySource = "SMS:Client:Default:{F65F4963-D55F-4E97-BBF2-547B49F5018D}") AND (PolicyState = "Active") AND (PolicyType = "Machine")]LOG]!><time="15:35:06.140-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:7039">
<![LOG[There is no ccm_policy_policy instance, skipping addition to realinst map]LOG]!><time="15:35:06.140-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:7040">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\machine\RequestedConfig for source SMS:Client:Default:{F65F4963-D55F-4E97-BBF2-547B49F5018D} successfully]LOG]!><time="15:35:06.140-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source CcmPortal successfully]LOG]!><time="15:35:06.140-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[RequestedConfig policy instance(s) : 0]LOG]!><time="15:35:06.155-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7181">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source CcmPortal successfully]LOG]!><time="15:35:06.155-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\machine\RequestedConfig for source CcmPortal successfully]LOG]!><time="15:35:06.155-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[Namespace: \\MININT-C1P2127\ROOT\ccm\policy\machine\RequestedConfig, Query: SELECT * FROM CCM_Policy_Policy4 WHERE (PolicySource = "CcmPortal") AND (PolicyState = "Active") AND (PolicyType = "Machine")]LOG]!><time="15:35:06.155-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:7039">
<![LOG[There is no ccm_policy_policy instance, skipping addition to realinst map]LOG]!><time="15:35:06.155-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:7040">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\machine\RequestedConfig for source CcmPortal successfully]LOG]!><time="15:35:06.155-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source Local successfully]LOG]!><time="15:35:06.155-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[RequestedConfig policy instance(s) : 0]LOG]!><time="15:35:06.155-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7181">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source Local successfully]LOG]!><time="15:35:06.155-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\machine\RequestedConfig for source Local successfully]LOG]!><time="15:35:06.155-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[RequestedConfig policy instance(s) : 9]LOG]!><time="15:35:06.171-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7181">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\machine\RequestedConfig for source Local successfully]LOG]!><time="15:35:06.171-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source CcmTaskSequence successfully]LOG]!><time="15:35:06.171-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[RequestedConfig policy instance(s) : 9]LOG]!><time="15:35:06.171-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7181">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source CcmTaskSequence successfully]LOG]!><time="15:35:06.171-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\machine\RequestedConfig for source CcmTaskSequence successfully]LOG]!><time="15:35:06.171-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[Namespace: \\MININT-C1P2127\ROOT\ccm\policy\machine\RequestedConfig, Query: SELECT * FROM CCM_Policy_Policy4 WHERE (PolicySource = "CcmTaskSequence") AND (PolicyState = "Active") AND (PolicyType = "Machine")]LOG]!><time="15:35:06.171-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:7039">
<![LOG[There is no ccm_policy_policy instance, skipping addition to realinst map]LOG]!><time="15:35:06.171-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:7040">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\machine\RequestedConfig for source CcmTaskSequence successfully]LOG]!><time="15:35:06.171-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Total RequestedConfig policy instance(s) : 418]LOG]!><time="15:35:06.233-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7651">
<![LOG[New/Changed ActualConfig policy instance(s) : 1]LOG]!><time="15:35:06.264-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7729">
<![LOG[[1] Added/updated setting 'ccm_networkaccessaccount:sitesettingskey=1'.]LOG]!><time="15:35:06.280-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7757">
<![LOG[Policy evaluation initiated]LOG]!><time="15:35:06.280-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:3387">
<![LOG[Waiting for policy to be compiled in 'root\ccm\policy\machine' namespace ]LOG]!><time="15:35:06.296-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2157">
<![LOG[Query = 'CCM_SystemHealthClientConfig.SiteSettingsKey="1"' ]LOG]!><time="15:35:06.296-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2181">
<![LOG[Verified policy for instance path 'CCM_SystemHealthClientConfig.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace]LOG]!><time="15:35:06.405-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2205">
<![LOG[Query = 'CCM_SoftwareUpdatesClientConfig.SiteSettingsKey="1"' ]LOG]!><time="15:35:06.405-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2181">
<![LOG[Verified policy for instance path 'CCM_SoftwareUpdatesClientConfig.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace]LOG]!><time="15:35:06.405-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2205">
<![LOG[Query = 'CCM_SoftwareDistributionClientConfig.SiteSettingsKey="1"' ]LOG]!><time="15:35:06.405-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2181">
<![LOG[Verified policy for instance path 'CCM_SoftwareDistributionClientConfig.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace]LOG]!><time="15:35:06.405-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2205">
<![LOG[Query = 'CCM_NetworkAccessAccount.SiteSettingsKey="1"' ]LOG]!><time="15:35:06.405-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2181">
<![LOG[Verified policy for instance path 'CCM_NetworkAccessAccount.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace]LOG]!><time="15:35:06.405-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2205">
<![LOG[Query = 'CCM_RebootSettings.SiteSettingsKey="1"' ]LOG]!><time="15:35:06.405-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2181">
<![LOG[Verified policy for instance path 'CCM_RebootSettings.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace]LOG]!><time="15:35:06.405-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2205">
<![LOG[Policy verification done]LOG]!><time="15:35:06.405-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2208">
<![LOG[Config policies compiled successfully]LOG]!><time="15:35:06.405-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2550">
<![LOG[_SMSTSReturnToGINA variable set to true]LOG]!><time="15:35:06.420-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:1064">
<![LOG[Waiting for CcmExec service to be fully operational]LOG]!><time="15:35:06.420-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:4019">
<![LOG[succeeded loading resource DLL 'C:\WINDOWS\CCM\1033\TSRES.DLL']LOG]!><time="15:35:07.434-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="util.cpp:910">
<![LOG[CcmExec service is up and fully operational]LOG]!><time="15:37:35.479-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:4068">
<![LOG[Remediating]LOG]!><time="15:37:35.479-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsnapcontrol.cpp:43">
<![LOG[pNAP->GetSystemIsolationInfo(&pNAPInfo, &bUnknownConnections), HRESULT=8027000c (e:\nts_sccm_release\sms\client\tasksequence\napcontrol\remediate.cpp,463)]LOG]!><time="15:37:35.479-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="remediate.cpp:463">
<![LOG[GetSystemIsolationInfo(spNapClientInfo, &IsoStat), HRESULT=8027000c (e:\nts_sccm_release\sms\client\tasksequence\napcontrol\remediate.cpp,632)]LOG]!><time="15:37:35.479-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="remediate.cpp:632">
<![LOG[Error getting system isolation info. Code 8027000C]LOG]!><time="15:37:35.479-600" date="01-27-2012" component="TSManager" context="" type="3" thread="1704" file="remediate.cpp:632">
<![LOG[ComputeComplianceAndRemediate(&QState), HRESULT=8027000c (e:\nts_sccm_release\sms\client\tasksequence\napcontrol\tsnapcontrol.cpp,48)]LOG]!><time="15:37:35.479-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="tsnapcontrol.cpp:48">
<![LOG[Remediation failed. Code 8027000C]LOG]!><time="15:37:35.479-600" date="01-27-2012" component="TSManager" context="" type="3" thread="1704" file="tsnapcontrol.cpp:48">
<![LOG[hr = m_oNapCtrl.Remediate(QState), HRESULT=8027000c (e:\nts_sccm_release\sms\client\tasksequence\tsmanager\tsmanager.cpp,1364)]LOG]!><time="15:37:35.479-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="tsmanager.cpp:1364">
<![LOG[Remediation failed with error code 8027000C]LOG]!><time="15:37:35.479-600" date="01-27-2012" component="TSManager" context="" type="3" thread="1704" file="tsmanager.cpp:1364">
<![LOG[initializing TS Engine]LOG]!><time="15:37:35.479-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:1230">
<![LOG[Getting TaskSequenceXML from environment]LOG]!><time="15:37:35.479-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:1238">
<![LOG[Parsing task sequence . . .]LOG]!><time="15:37:35.494-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:1259">
<![LOG[Loaded TS from string]LOG]!><time="15:37:35.525-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:86">
<![LOG[Parsing task sequence to get schema version]LOG]!><time="15:37:35.525-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:106">
<![LOG[Task sequence version 3.00]LOG]!><time="15:37:35.525-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="tsmanager.cpp:1264">
<![LOG[Task sequence schema version is 3.00]LOG]!><time="15:37:35.525-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="tsmanager.cpp:1191">
<![LOG[Current supported schema version is 3.10 and 3.00]LOG]!><time="15:37:35.525-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="tsmanager.cpp:1198">
<![LOG[Processing get action table request]LOG]!><time="15:37:35.525-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:139">
<![LOG[Got root node now getting list of all child elements]LOG]!><time="15:37:35.525-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:150">
<![LOG[There are 3 first level steps or groups]LOG]!><time="15:37:35.525-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:318">
<![LOG[Processing group]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:443">
<![LOG[
Parsing group node: Capture Files and Settings]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:365">
<![LOG[Description: Actions to capture files and settings in the original operating system]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:369">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:373">
<![LOG[Disable: ]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:381">
<![LOG[A condition is associated with the step found]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:659">
<![LOG[Found and operator.]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:737">
<![LOG[There are 1 operands]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:772">
<![LOG[**Processing expression node]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:781">
<![LOG[Found SMS_TaskSequence_VariableConditionExpression expression.]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:806">
<![LOG[**In ProcessBuiltInCondition node: expression]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:898">
<![LOG[There are 3 operands in the built in action]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:915">
<![LOG[Operand Operator=equals]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:929">
<![LOG[Operand Value=false]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:929">
<![LOG[Operand Variable=_SMSTSInWinPE]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:929">
<![LOG[successfully added 3 condition parameters]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="tsxml.cpp:994">
<![LOG[Adding begin group instruction at 0]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:393">
<![LOG[There are 1 first level steps or groups]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:318">
<![LOG[
Parsing step node: Capture Network Settings]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:483">
<![LOG[Run in attribute: FullOS]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:37:35.541-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:579">
<![LOG[Variable name: OSDMigrateAdapterSettings]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDMigrateNetworkMembership]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Action command line: osdnetsettings.exe capture netmembership:%OSDMigrateNetworkMembership% adapters:%OSDMigrateAdapterSettings%]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:522">
<![LOG[Adding instruction at 1]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:524">
<![LOG[Processed all elements]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:333">
<![LOG[Adding end group instruction at 2]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:402">
<![LOG[The next instruction after group will be at 3]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:408">
<![LOG[Processing group]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:443">
<![LOG[
Parsing group node: Install Operating System]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:365">
<![LOG[Description: Actions to run in Windows PE to install and configure the image]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:369">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:373">
<![LOG[Disable: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:381">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:670">
<![LOG[Adding begin group instruction at 3]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:393">
<![LOG[There are 6 first level steps or groups]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:318">
<![LOG[
Parsing step node: Restart in Windows PE]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:474">
<![LOG[A condition is associated with the step found]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:659">
<![LOG[Found and operator.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:737">
<![LOG[There are 1 operands]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:772">
<![LOG[**Processing expression node]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:781">
<![LOG[Found SMS_TaskSequence_VariableConditionExpression expression.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:806">
<![LOG[**In ProcessBuiltInCondition node: expression]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:898">
<![LOG[There are 3 operands in the built in action]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:915">
<![LOG[Operand Operator=equals]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:929">
<![LOG[Operand Value=false]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:929">
<![LOG[Operand Variable=_SMSTSInWinPE]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:929">
<![LOG[successfully added 3 condition parameters]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="tsxml.cpp:994">
<![LOG[Disable: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:579">
<![LOG[Variable name: SMSRebootMessage]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: SMSRebootTimeout]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Action command line: smsboot.exe /target:WinPE]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:522">
<![LOG[Adding instruction at 4]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Partition Disk 0]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:458">
<![LOG[Description: Actions to partition and format the new machine]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:474">
<![LOG[A condition is associated with the step found]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:659">
<![LOG[Found and operator.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:737">
<![LOG[There are 2 operands]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:772">
<![LOG[**Processing expression node]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:781">
<![LOG[Found SMS_TaskSequence_VariableConditionExpression expression.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:806">
<![LOG[**In ProcessBuiltInCondition node: expression]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:898">
<![LOG[There are 2 operands in the built in action]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:915">
<![LOG[Operand Operator=notExists]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:929">
<![LOG[Operand Variable=_SMSTSClientCache]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:929">
<![LOG[successfully added 3 condition parameters]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="tsxml.cpp:994">
<![LOG[**Processing expression node]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:781">
<![LOG[Found SMS_TaskSequence_VariableConditionExpression expression.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:806">
<![LOG[**In ProcessBuiltInCondition node: expression]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:898">
<![LOG[There are 3 operands in the built in action]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:915">
<![LOG[Operand Operator=notEquals]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:929">
<![LOG[Operand Value=OEMMedia]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:929">
<![LOG[Operand Variable=_SMSTSMediaType]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:929">
<![LOG[successfully added 3 condition parameters]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="tsxml.cpp:994">
<![LOG[Disable: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPE]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:579">
<![LOG[Variable name: OSDDiskIndex]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDDiskType]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDDiskpartBiosCompatibilityMode]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDGPTBootDisk]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitionStyle]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0Bootable]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0FileSystem]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0QuickFormat]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0Size]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0SizeUnits]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0Type]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDPartitions0VolumeName]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Action command line: osddiskpart.exe]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:522">
<![LOG[Adding instruction at 5]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Apply Operating System]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:458">
<![LOG[Description: Actions to apply operating system]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPE]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:579">
<![LOG[Variable name: OSDImageIndex]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDInstallEditionIndex]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Action command line: OSDApplyOS.exe /image:BCA0003C,%OSDImageIndex%]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:522">
<![LOG[Adding instruction at 6]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Apply Windows Settings]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:458">
<![LOG[Description: Actions to apply Windows settings]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPE]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:579">
<![LOG[Variable name: OSDLocalAdminPassword]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDComputerName]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDProductKey]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDRandomAdminPassword]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDRegisteredOrgName]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDRegisteredUserName]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDServerLicenseConnectionLimit]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDTimeZone]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Action command line: osdwinsettings.exe /config]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:522">
<![LOG[Adding instruction at 7]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Apply Network Settings]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:458">
<![LOG[Description: Actions to configure network settings]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:579">
<![LOG[Variable name: OSDNetworkJoinType]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDWorkgroupName]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Action command line: osdnetsettings.exe configure]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:522">
<![LOG[Adding instruction at 8]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Apply Device Drivers]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:474">
<![LOG[A condition is associated with the step found]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:659">
<![LOG[Found and operator.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:737">
<![LOG[There are 1 operands]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:772">
<![LOG[**Processing expression node]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:781">
<![LOG[Found SMS_TaskSequence_VariableConditionExpression expression.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:806">
<![LOG[**In ProcessBuiltInCondition node: expression]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:898">
<![LOG[There are 3 operands in the built in action]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:915">
<![LOG[Operand Operator=notEquals]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:929">
<![LOG[Operand Value=FullMedia]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:929">
<![LOG[Operand Variable=_SMSTSMediaType]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:929">
<![LOG[successfully added 3 condition parameters]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="tsxml.cpp:994">
<![LOG[Disable: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPE]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:579">
<![LOG[Variable name: OSDAutoApplyDriverBestMatch]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: OSDAllowUnsignedDriver]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Action command line: osddriverclient.exe /auto /bestmatch:%OSDAutoApplyDriverBestMatch% /unsigned:%OSDAllowUnsignedDriver%]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:522">
<![LOG[Adding instruction at 9]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:524">
<![LOG[Processed all elements]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:333">
<![LOG[Adding end group instruction at 10]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:402">
<![LOG[The next instruction after group will be at 11]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:408">
<![LOG[Processing group]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:443">
<![LOG[
Parsing group node: Setup Operating System]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:365">
<![LOG[Description: Setup Operating System]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:369">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:373">
<![LOG[Disable: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:381">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:670">
<![LOG[Adding begin group instruction at 11]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:393">
<![LOG[There are 7 first level steps or groups]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:318">
<![LOG[
Parsing step node: Setup Windows and ConfigMgr]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:579">
<![LOG[Variable name: SMSClientInstallProperties]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSClientPackageID]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Action command line: OSDSetupWindows.exe]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:522">
<![LOG[Adding instruction at 12]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:524">
<![LOG[
Parsing step node: Restart Computer]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:466">
<![LOG[successCodeList: 0]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:579">
<![LOG[Variable name: SMSRebootMessage]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: SMSRebootTimeout]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Action command line: smsboot.exe /target:HD]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:522">
<![LOG[Adding instruction at 13]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:524">
<![LOG[
Parsing step node: CLS0001]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:466">
<![LOG[successCodeList: 0 3010]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:579">
<![LOG[Variable name: SMSTSDisableWow64Redirection]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSTSRunCommandLineAsUser]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: WorkingDirectory]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Action command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0001.cmd]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:522">
<![LOG[Adding instruction at 14]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:524">
<![LOG[
Parsing step node: CLS0002]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:466">
<![LOG[successCodeList: 0 3010]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:579">
<![LOG[Variable name: SMSTSDisableWow64Redirection]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSTSRunCommandLineAsUser]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: WorkingDirectory]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Action command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0002.cmd]LOG]!><time="15:37:35.557-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:522">
<![LOG[Adding instruction at 15]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:524">
<![LOG[
Parsing step node: CLS0003]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:466">
<![LOG[successCodeList: 0 3010]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:579">
<![LOG[Variable name: SMSTSDisableWow64Redirection]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSTSRunCommandLineAsUser]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: WorkingDirectory]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Action command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0003.cmd]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:522">
<![LOG[Adding instruction at 16]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:524">
<![LOG[
Parsing step node: CLS0004]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:466">
<![LOG[successCodeList: 0 3010]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:579">
<![LOG[Variable name: SMSTSDisableWow64Redirection]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSTSRunCommandLineAsUser]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: WorkingDirectory]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Action command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0004.cmd]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:522">
<![LOG[Adding instruction at 17]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:524">
<![LOG[
Parsing step node: CLS0005]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:458">
<![LOG[Description: ]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:462">
<![LOG[ContinueOnError: ]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:466">
<![LOG[successCodeList: 0 3010]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:474">
<![LOG[(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\NTS_SCCM_RELEASE\sms\common\inc\ccmxml.h,582)]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="ccmxml.h:582">
<![LOG[No condition is associated with the step.]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:670">
<![LOG[Disable: ]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:483">
<![LOG[Run in attribute: WinPEandFullOS]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:491">
<![LOG[Timeout: ]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:495">
<![LOG[DefaultVarlist found]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:579">
<![LOG[Variable name: SMSTSDisableWow64Redirection]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: _SMSTSRunCommandLineAsUser]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Variable name: WorkingDirectory]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:620">
<![LOG[Action command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0005.cmd]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:522">
<![LOG[Adding instruction at 18]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:524">
<![LOG[Processed all elements]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:333">
<![LOG[Adding end group instruction at 19]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:402">
<![LOG[The next instruction after group will be at 20]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:408">
<![LOG[Processed all elements]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:333">
<![LOG[
Reading Global variable list]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:183">
<![LOG[Got root node now getting global var list]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:194">
<![LOG[GlobalVarlist found]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:210">
<![LOG[Variable name: OSDEnableTCPIPFiltering]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsxml.cpp:244">
<![LOG[starting Task Sequence Engine . . . ]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:747">
<![LOG[****************************************************************************]LOG]!><time="15:37:35.572-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:749">
<![LOG[NextInstructionPointer: 14]LOG]!><time="15:37:35.588-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="executionenv.cxx:482">
<![LOG[set a global environment variable _SMSTSInstructionTableSize=20]LOG]!><time="15:37:35.588-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:668">
<![LOG[set a global environment variable SMSTSRebootRequested=]LOG]!><time="15:37:35.588-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:668">
<![LOG[set a global environment variable SMSTSRebootDelay=]LOG]!><time="15:37:35.588-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:668">
<![LOG[set a global environment variable SMSTSRebootMessage=]LOG]!><time="15:37:35.588-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:668">
<![LOG[set a global environment variable SMSTSRebootReason=]LOG]!><time="15:37:35.588-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:668">
<![LOG[set a global environment variable SMSTSRetryRequested=]LOG]!><time="15:37:35.588-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:668">
<![LOG[succeeded loading resource DLL 'C:\WINDOWS\CCM\1033\TSRES.DLL']LOG]!><time="15:37:35.588-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="util.cpp:910">
<![LOG[The task execution engine started execution]LOG]!><time="15:37:35.603-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="engine.cxx:70">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="15:37:35.681-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="15:37:35.759-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="15:37:35.759-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="libsmsmessaging.cpp:7552">
<![LOG[sending StatusMessage]LOG]!><time="15:37:35.806-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="libsmsmessaging.cpp:4003">
<![LOG[setting message signatures.]LOG]!><time="15:37:35.806-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="15:37:35.806-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="15:37:35.837-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="libsmsmessaging.cpp:8382">
<![LOG[Request was succesful.]LOG]!><time="15:37:35.884-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="libsmsmessaging.cpp:8718">
<![LOG[start executing an instruciton. Instruction name: CLS0001. Instruction pointer: 14]LOG]!><time="15:37:35.884-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="engine.cxx:117">
<![LOG[set a global environment variable _SMSTSCurrentActionName=CLS0001]LOG]!><time="15:37:35.884-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSNextInstructionPointer=14]LOG]!><time="15:37:35.884-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:668">
<![LOG[set a local default variable SMSTSDisableWow64Redirection]LOG]!><time="15:37:36.134-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:700">
<![LOG[set a local default variable _SMSTSRunCommandLineAsUser]LOG]!><time="15:37:36.134-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:700">
<![LOG[set a local default variable WorkingDirectory]LOG]!><time="15:37:36.134-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:700">
<![LOG[set a global environment variable _SMSTSLogPath=C:\WINDOWS\CCM\Logs\SMSTSLog]LOG]!><time="15:37:36.134-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:668">
<![LOG[Expand a string: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0001.cmd]LOG]!><time="15:37:36.134-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:782">
<![LOG[Expand a string: ]LOG]!><time="15:37:36.134-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:782">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="15:37:36.134-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="commandline.cpp:228">
<![LOG[set command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0001.cmd]LOG]!><time="15:37:36.134-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="commandline.cpp:705">
<![LOG[start executing the command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0001.cmd]LOG]!><time="15:37:36.149-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="instruction.cxx:2929">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="15:37:36.149-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="instruction.cxx:2958">
<![LOG[Expand a string: WinPEandFullOS]LOG]!><time="15:37:36.149-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:782">
<![LOG[Executing command line: smsswd.exe /run: start C:\Windows\Delta\CLS\CLS0001.cmd]LOG]!><time="15:37:36.149-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="commandline.cpp:801">
<![LOG[[ smsswd.exe ]]LOG]!><time="15:37:36.415-600" date="01-27-2012" component="InstallSoftware" context="" type="1" thread="2292" file="main.cpp:289">
<![LOG[PackageID = '']LOG]!><time="15:37:36.415-600" date="01-27-2012" component="InstallSoftware" context="" type="1" thread="2292" file="main.cpp:318">
<![LOG[baseVar = '', ContinueOnError='']LOG]!><time="15:37:36.415-600" date="01-27-2012" component="InstallSoftware" context="" type="1" thread="2292" file="main.cpp:319">
<![LOG[ProgramName = 'start C:\Windows\Delta\CLS\CLS0001.cmd']LOG]!><time="15:37:36.415-600" date="01-27-2012" component="InstallSoftware" context="" type="1" thread="2292" file="main.cpp:320">
<![LOG[swdAction = '0001']LOG]!><time="15:37:36.415-600" date="01-27-2012" component="InstallSoftware" context="" type="1" thread="2292" file="main.cpp:321">
<![LOG[set command line: Run command line]LOG]!><time="15:37:36.415-600" date="01-27-2012" component="InstallSoftware" context="" type="0" thread="2292" file="commandline.cpp:705">
<![LOG[Working dir 'C:\Windows']LOG]!><time="15:37:36.415-600" date="01-27-2012" component="InstallSoftware" context="" type="1" thread="2292" file="runcommandline.cpp:542">
<![LOG[Executing command line: Run command line]LOG]!><time="15:37:36.415-600" date="01-27-2012" component="InstallSoftware" context="" type="1" thread="2292" file="commandline.cpp:801">
<![LOG[CreateProcess( NULL, (LPWSTR)m_sCommandLine.c_str(), NULL, NULL, TRUE, bNT ? CREATE_UNICODE_ENVIRONMENT : 0, m_pEnvironmentBlock, pszWorkingDir, &si, π ), HRESULT=80070002 (e:\nts_sccm_release\sms\framework\core\ccmcore\commandline.cpp,993)]LOG]!><time="15:37:36.415-600" date="01-27-2012" component="InstallSoftware" context="" type="0" thread="2292" file="commandline.cpp:993">
<![LOG[CreateProcess failed. Code(0x80070002)]LOG]!><time="15:37:36.415-600" date="01-27-2012" component="InstallSoftware" context="" type="3" thread="2292" file="commandline.cpp:993">
<![LOG[Command line execution failed (80070002)]LOG]!><time="15:37:36.415-600" date="01-27-2012" component="InstallSoftware" context="" type="3" thread="2292" file="commandline.cpp:1217">
<![LOG[clCommandLine.Execute( uOptions, pszWorkingDir, lpDesktop ), HRESULT=80070002 (e:\nts_sccm_release\sms\client\osdeployment\installsoftware\runcommandline.cpp,558)]LOG]!><time="15:37:36.415-600" date="01-27-2012" component="InstallSoftware" context="" type="0" thread="2292" file="runcommandline.cpp:558">
<![LOG[Failed to execute command line 'start C:\Windows\Delta\CLS\CLS0001.cmd' .
The system cannot find the file specified. (Error: 80070002; Source: Windows)]LOG]!><time="15:37:36.415-600" date="01-27-2012" component="InstallSoftware" context="" type="3" thread="2292" file="runcommandline.cpp:558">
<![LOG[cmd.Execute(pszPkgID, sProgramName, dwCmdLineExitCode), HRESULT=80070002 (e:\nts_sccm_release\sms\client\osdeployment\installsoftware\main.cpp,372)]LOG]!><time="15:37:36.415-600" date="01-27-2012" component="InstallSoftware" context="" type="0" thread="2292" file="main.cpp:372">
<![LOG[install Software failed to run command line, hr=0x80070002]LOG]!><time="15:37:36.415-600" date="01-27-2012" component="InstallSoftware" context="" type="3" thread="2292" file="main.cpp:372">
<![LOG[Process completed with exit code 2147942402]LOG]!><time="15:37:36.415-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="commandline.cpp:1098">
<![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="15:37:36.430-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="instruction.cxx:3011">
<![LOG[Failed to run the action: CLS0001.
The system cannot find the file specified. (Error: 80070002; Source: Windows)]LOG]!><time="15:37:36.430-600" date="01-27-2012" component="TSManager" context="" type="3" thread="1704" file="instruction.cxx:3102">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="15:37:36.446-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="15:37:36.461-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="15:37:36.461-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="libsmsmessaging.cpp:7552">
<![LOG[sending StatusMessage]LOG]!><time="15:37:36.477-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="libsmsmessaging.cpp:4003">
<![LOG[setting message signatures.]LOG]!><time="15:37:36.477-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="15:37:36.477-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="15:37:36.477-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="libsmsmessaging.cpp:8382">
<![LOG[Request was succesful.]LOG]!><time="15:37:36.508-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="libsmsmessaging.cpp:8718">
<![LOG[set a global environment variable _SMSTSLastActionRetCode=-2147024894]LOG]!><time="15:37:36.508-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:668">
<![LOG[set a global environment variable _SMSTSLastActionSucceeded=false]LOG]!><time="15:37:36.508-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:668">
<![LOG[Clear local default environment]LOG]!><time="15:37:36.508-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="executionenv.cxx:807">
<![LOG[Let the parent group (Setup Operating System) decides whether to continue execution]LOG]!><time="15:37:36.508-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="instruction.cxx:3211">
<![LOG[The execution of the group (Setup Operating System) has failed and the execution has been aborted. An action failed.
Operation aborted (Error: 80004004; Source: Windows)]LOG]!><time="15:37:36.524-600" date="01-27-2012" component="TSManager" context="" type="3" thread="1704" file="instruction.cxx:2425">
<![LOG[Failed to run the last action: CLS0001. Execution of task sequence failed.
The system cannot find the file specified. (Error: 80070002; Source: Windows)]LOG]!><time="15:37:36.524-600" date="01-27-2012" component="TSManager" context="" type="3" thread="1704" file="engine.cxx:214">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="15:37:36.539-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="15:37:36.555-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="15:37:36.555-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="libsmsmessaging.cpp:7552">
<![LOG[sending StatusMessage]LOG]!><time="15:37:36.571-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="libsmsmessaging.cpp:4003">
<![LOG[setting message signatures.]LOG]!><time="15:37:36.571-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="15:37:36.571-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="15:37:36.571-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="libsmsmessaging.cpp:8382">
<![LOG[Request was succesful.]LOG]!><time="15:37:36.602-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="libsmsmessaging.cpp:8718">
<![LOG[Execution::enExecutionFail != m_eExecutionResult, HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmanager\tsmanager.cpp,756)]LOG]!><time="15:39:32.822-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="tsmanager.cpp:756">
<![LOG[Task Sequence Engine failed! Code: enExecutionFail]LOG]!><time="15:39:32.822-600" date="01-27-2012" component="TSManager" context="" type="3" thread="1704" file="tsmanager.cpp:756">
<![LOG[****************************************************************************]LOG]!><time="15:39:32.822-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:779">
<![LOG[Task sequence execution failed with error code 80004005]LOG]!><time="15:39:32.822-600" date="01-27-2012" component="TSManager" context="" type="3" thread="1704" file="tsmanager.cpp:780">
<![LOG[Cleaning Up.]LOG]!><time="15:39:32.822-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:574">
<![LOG[Removing Authenticator]LOG]!><time="15:39:32.822-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:585">
<![LOG[Cleaning up task sequence folder]LOG]!><time="15:39:32.822-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:1503">
<![LOG[DeleteFileW(sVolumeIDFile.c_str()), HRESULT=80070002 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,518)]LOG]!><time="15:39:33.072-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="resolvesource.cpp:518">
<![LOG[successfully unregistered Task Sequencing Environment COM Interface.]LOG]!><time="15:39:33.072-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="environmentlib.cpp:885">
<![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="15:39:33.072-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="commandline.cpp:228">
<![LOG[set command line: "C:\WINDOWS\CCM\TsProgressUI.exe" /Unregister]LOG]!><time="15:39:33.072-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="commandline.cpp:705">
<![LOG[Executing command line: "C:\WINDOWS\CCM\TsProgressUI.exe" /Unregister]LOG]!><time="15:39:33.072-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="commandline.cpp:801">
<![LOG[==========[ TsProgressUI started in process 2808 ]==========]LOG]!><time="15:39:33.087-600" date="01-27-2012" component="TsProgressUI" context="" type="1" thread="2812" file="winmain.cpp:329">
<![LOG[Command line: "C:\WINDOWS\CCM\TsProgressUI.exe" /Unregister]LOG]!><time="15:39:33.087-600" date="01-27-2012" component="TsProgressUI" context="" type="0" thread="2812" file="winmain.cpp:332">
<![LOG[unregistering COM classes]LOG]!><time="15:39:33.087-600" date="01-27-2012" component="TsProgressUI" context="" type="1" thread="2812" file="winmain.cpp:204">
<![LOG[unregistering class objects]LOG]!><time="15:39:33.087-600" date="01-27-2012" component="TsProgressUI" context="" type="1" thread="2812" file="winmain.cpp:495">
<![LOG[shutdown complete.]LOG]!><time="15:39:33.103-600" date="01-27-2012" component="TsProgressUI" context="" type="1" thread="2812" file="winmain.cpp:512">
<![LOG[Process completed with exit code 0]LOG]!><time="15:39:33.103-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="commandline.cpp:1098">
<![LOG[successfully unregistered TS Progress UI.]LOG]!><time="15:39:33.103-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:2075">
<![LOG[setting program history for BCA0003D:*]LOG]!><time="15:39:33.134-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanagerutils.cpp:212">
<![LOG[Opening the task sequence key HKLM\Software\Microsoft\SMS\Task Sequence]LOG]!><time="15:39:33.134-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:3215">
<![LOG[kTaskSequence.Open(HKEY_LOCAL_MACHINE, sTaskSequenceKey.c_str(), KEY_READ|KEY_WRITE), HRESULT=80070002 (e:\nts_sccm_release\sms\framework\tscore\utils.cpp,3219)]LOG]!><time="15:39:33.134-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:3219">
<![LOG[Failed to open the task sequence key HKLM\Software\Microsoft\SMS\Task Sequence. Error code 0x80070002]LOG]!><time="15:39:33.134-600" date="01-27-2012" component="TSManager" context="" type="2" thread="1704" file="utils.cpp:3219">
<![LOG[start to cleanup TS policy]LOG]!><time="15:39:33.134-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2773">
<![LOG[TS deleting 'CCM_ClientActions.PolicyID="{78a544df-4189-4e6e-92a7-14bc0a082f19}",PolicyInstanceID="{DE8E16EC-FEC1-477A-B43C-9D0320FF850B}",PolicyRuleID="{d0bd41c3-8f73-4eca-910b-6f954f888a62}",PolicySource="CcmTaskSequence",PolicyVersion="2.00"'.]LOG]!><time="15:39:33.165-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_ClientActions.PolicyID="{78a544df-4189-4e6e-92a7-14bc0a082f19}",PolicyInstanceID="{16AF0CF0-D448-4BF2-8230-4871671490D8}",PolicyRuleID="{d0bd41c3-8f73-4eca-910b-6f954f888a62}",PolicySource="CcmTaskSequence",PolicyVersion="2.00"'.]LOG]!><time="15:39:33.165-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_ClientActions.PolicyID="{78a544df-4189-4e6e-92a7-14bc0a082f19}",PolicyInstanceID="{10F26E51-E376-487A-95B8-A4CEFB74D305}",PolicyRuleID="{d0bd41c3-8f73-4eca-910b-6f954f888a62}",PolicySource="CcmTaskSequence",PolicyVersion="2.00"'.]LOG]!><time="15:39:33.165-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_ClientActions.PolicyID="{78a544df-4189-4e6e-92a7-14bc0a082f19}",PolicyInstanceID="{2B3588CF-02C6-4D36-9FE1-73A4A9471FAE}",PolicyRuleID="{d0bd41c3-8f73-4eca-910b-6f954f888a62}",PolicySource="CcmTaskSequence",PolicyVersion="2.00"'.]LOG]!><time="15:39:33.165-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_SystemHealthClientConfig.PolicyID="{264c3dcd-af3c-4e7f-af18-9b2e02054b1e}",PolicyInstanceID="{78F55902-D319-4612-80F7-E9AF89EA252B}",PolicyRuleID="{51d03156-fcaf-4c83-8596-c7c8710a995d}",PolicySource="CcmTaskSequence",PolicyVersion="1.00"'.]LOG]!><time="15:39:33.165-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_SystemHealthClientConfig.PolicyID="{264c3dcd-af3c-4e7f-af18-9b2e02054b1e}",PolicyInstanceID="{49D8451C-08DC-4C80-A7EF-FF147D562107}",PolicyRuleID="{51d03156-fcaf-4c83-8596-c7c8710a995d}",PolicySource="CcmTaskSequence",PolicyVersion="1.00"'.]LOG]!><time="15:39:33.165-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_SoftwareUpdatesClientConfig.PolicyID="{78a544df-4189-4e6e-92a7-14bc0a082f19}",PolicyInstanceID="{81F25ADC-80A6-4A93-A784-4272DD4124A0}",PolicyRuleID="{d0bd41c3-8f73-4eca-910b-6f954f888a62}",PolicySource="CcmTaskSequence",PolicyVersion="2.00"'.]LOG]!><time="15:39:33.165-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_SoftwareUpdatesClientConfig.PolicyID="{78a544df-4189-4e6e-92a7-14bc0a082f19}",PolicyInstanceID="{D283077A-ECE6-414D-9689-7429CEF9A949}",PolicyRuleID="{d0bd41c3-8f73-4eca-910b-6f954f888a62}",PolicySource="CcmTaskSequence",PolicyVersion="2.00"'.]LOG]!><time="15:39:33.165-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_SoftwareDistributionClientConfig.PolicyID="{dccb4f9d-d8a3-40d2-9dd7-950422c21a23}",PolicyInstanceID="{1A8C067E-34DE-40CA-8AD9-A067BF7F446A}",PolicyRuleID="{dd24261d-4073-4fb1-8190-0aa953dbb931}",PolicySource="CcmTaskSequence",PolicyVersion="1.00"'.]LOG]!><time="15:39:33.165-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_SoftwareDistributionClientConfig.PolicyID="{dccb4f9d-d8a3-40d2-9dd7-950422c21a23}",PolicyInstanceID="{7B5F7246-34CC-497E-9813-D4C9CDDC03DB}",PolicyRuleID="{dd24261d-4073-4fb1-8190-0aa953dbb931}",PolicySource="CcmTaskSequence",PolicyVersion="1.00"'.]LOG]!><time="15:39:33.165-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_NetworkAccessAccount.PolicyID="{64aa0ea3-9339-442a-83c9-35ae1f247559}",PolicyInstanceID="{EAA804CC-D883-4FD3-BE95-E649A10B26F2}",PolicyRuleID="{6b44d283-870f-4986-975b-bb7045067156}",PolicySource="CcmTaskSequence",PolicyVersion="4.00"'.]LOG]!><time="15:39:33.181-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_NetworkAccessAccount.PolicyID="{64aa0ea3-9339-442a-83c9-35ae1f247559}",PolicyInstanceID="{2EC1461B-EA59-4853-88A3-60407AA26963}",PolicyRuleID="{6b44d283-870f-4986-975b-bb7045067156}",PolicySource="CcmTaskSequence",PolicyVersion="4.00"'.]LOG]!><time="15:39:33.181-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_RebootSettings.PolicyID="{81921ef9-d60a-46ac-89e6-58a30fdb9c15}",PolicyInstanceID="{F25D1B75-749A-46F4-AF35-DD6B79F80C9F}",PolicyRuleID="{353f2041-28d7-4585-979e-7b70072fe90d}",PolicySource="CcmTaskSequence",PolicyVersion="1.00"'.]LOG]!><time="15:39:33.181-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_RebootSettings.PolicyID="{81921ef9-d60a-46ac-89e6-58a30fdb9c15}",PolicyInstanceID="{E32D18BB-4431-44F2-A523-5F66E9065A77}",PolicyRuleID="{353f2041-28d7-4585-979e-7b70072fe90d}",PolicySource="CcmTaskSequence",PolicyVersion="1.00"'.]LOG]!><time="15:39:33.181-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_Scheduler_ScheduledMessage.PolicyID="{78a544df-4189-4e6e-92a7-14bc0a082f19}",PolicyInstanceID="{A6E467AC-8DC4-419D-AB83-7E1EBD14CDE1}",PolicyRuleID="{d0bd41c3-8f73-4eca-910b-6f954f888a62}",PolicySource="CcmTaskSequence",PolicyVersion="2.00"'.]LOG]!><time="15:39:33.181-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_Scheduler_ScheduledMessage.PolicyID="{78a544df-4189-4e6e-92a7-14bc0a082f19}",PolicyInstanceID="{36A0B46D-5835-480C-9BDC-E667180E9076}",PolicyRuleID="{d0bd41c3-8f73-4eca-910b-6f954f888a62}",PolicySource="CcmTaskSequence",PolicyVersion="2.00"'.]LOG]!><time="15:39:33.181-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_Scheduler_ScheduledMessage.PolicyID="{78a544df-4189-4e6e-92a7-14bc0a082f19}",PolicyInstanceID="{D1CDB00A-5223-4DD2-AEAC-1C583C9C79DA}",PolicyRuleID="{d0bd41c3-8f73-4eca-910b-6f954f888a62}",PolicySource="CcmTaskSequence",PolicyVersion="2.00"'.]LOG]!><time="15:39:33.181-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_Scheduler_ScheduledMessage.PolicyID="{78a544df-4189-4e6e-92a7-14bc0a082f19}",PolicyInstanceID="{3C3C9574-701D-4626-980C-F3C58C432573}",PolicyRuleID="{d0bd41c3-8f73-4eca-910b-6f954f888a62}",PolicySource="CcmTaskSequence",PolicyVersion="2.00"'.]LOG]!><time="15:39:33.181-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_Scheduler_ScheduledMessage.PolicyID="{78a544df-4189-4e6e-92a7-14bc0a082f19}",PolicyInstanceID="{9D4DC58E-1180-45D5-9908-F6F515CE241D}",PolicyRuleID="{d0bd41c3-8f73-4eca-910b-6f954f888a62}",PolicySource="CcmTaskSequence",PolicyVersion="2.00"'.]LOG]!><time="15:39:33.181-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS deleting 'CCM_Scheduler_ScheduledMessage.PolicyID="{78a544df-4189-4e6e-92a7-14bc0a082f19}",PolicyInstanceID="{45AFDA20-5155-4C44-BBD7-243FC6317BD1}",PolicyRuleID="{d0bd41c3-8f73-4eca-910b-6f954f888a62}",PolicySource="CcmTaskSequence",PolicyVersion="2.00"'.]LOG]!><time="15:39:33.181-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2807">
<![LOG[TS Deleted 20 instances]LOG]!><time="15:39:33.181-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2816">
<![LOG[TS Policy cleanup done]LOG]!><time="15:39:33.181-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2817">
<![LOG[End TS policy cleanup]LOG]!><time="15:39:33.181-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:2821">
<![LOG[Get Install Directory for SMS Client]LOG]!><time="15:39:33.181-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="utils.cpp:3349">
<![LOG[start to evaluate TS policy with lock]LOG]!><time="15:39:33.181-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:10452">
<![LOG[Locked policy transaction lock successfully]LOG]!><time="15:39:33.196-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7481">
<![LOG[updating settings in \\minint-c1p2127\root\ccm\policy\machine\actualconfig]LOG]!><time="15:39:33.196-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:7484">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source SMS:Client:Default:{F65F4963-D55F-4E97-BBF2-547B49F5018D} successfully]LOG]!><time="15:39:33.196-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[RequestedConfig policy instance(s) : 400]LOG]!><time="15:39:33.228-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7181">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source SMS:Client:Default:{F65F4963-D55F-4E97-BBF2-547B49F5018D} successfully]LOG]!><time="15:39:33.228-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\machine\requestedconfig for source SMS:Client:Default:{F65F4963-D55F-4E97-BBF2-547B49F5018D} successfully]LOG]!><time="15:39:33.228-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[Namespace: \\MININT-C1P2127\ROOT\ccm\policy\machine\requestedconfig, Query: SELECT * FROM CCM_Policy_Policy4 WHERE (PolicySource = "SMS:Client:Default:{F65F4963-D55F-4E97-BBF2-547B49F5018D}") AND (PolicyState = "Active") AND (PolicyType = "Machine")]LOG]!><time="15:39:33.228-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:7039">
<![LOG[There is no ccm_policy_policy instance, skipping addition to realinst map]LOG]!><time="15:39:33.228-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:7040">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\machine\requestedconfig for source SMS:Client:Default:{F65F4963-D55F-4E97-BBF2-547B49F5018D} successfully]LOG]!><time="15:39:33.228-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source CcmPortal successfully]LOG]!><time="15:39:33.228-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[RequestedConfig policy instance(s) : 0]LOG]!><time="15:39:33.243-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7181">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source CcmPortal successfully]LOG]!><time="15:39:33.243-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\machine\requestedconfig for source CcmPortal successfully]LOG]!><time="15:39:33.243-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[Namespace: \\MININT-C1P2127\ROOT\ccm\policy\machine\requestedconfig, Query: SELECT * FROM CCM_Policy_Policy4 WHERE (PolicySource = "CcmPortal") AND (PolicyState = "Active") AND (PolicyType = "Machine")]LOG]!><time="15:39:33.243-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:7039">
<![LOG[There is no ccm_policy_policy instance, skipping addition to realinst map]LOG]!><time="15:39:33.243-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:7040">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\machine\requestedconfig for source CcmPortal successfully]LOG]!><time="15:39:33.243-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source Local successfully]LOG]!><time="15:39:33.243-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[RequestedConfig policy instance(s) : 0]LOG]!><time="15:39:33.243-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7181">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source Local successfully]LOG]!><time="15:39:33.243-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\machine\requestedconfig for source Local successfully]LOG]!><time="15:39:33.243-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[RequestedConfig policy instance(s) : 9]LOG]!><time="15:39:33.259-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7181">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\machine\requestedconfig for source Local successfully]LOG]!><time="15:39:33.259-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source CcmTaskSequence successfully]LOG]!><time="15:39:33.259-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[RequestedConfig policy instance(s) : 0]LOG]!><time="15:39:33.259-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7181">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\defaultmachine\requestedconfig for source CcmTaskSequence successfully]LOG]!><time="15:39:33.259-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Locked \\MININT-C1P2127\ROOT\ccm\policy\machine\requestedconfig for source CcmTaskSequence successfully]LOG]!><time="15:39:33.259-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:6993">
<![LOG[Namespace: \\MININT-C1P2127\ROOT\ccm\policy\machine\requestedconfig, Query: SELECT * FROM CCM_Policy_Policy4 WHERE (PolicySource = "CcmTaskSequence") AND (PolicyState = "Active") AND (PolicyType = "Machine")]LOG]!><time="15:39:33.259-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:7039">
<![LOG[There is no ccm_policy_policy instance, skipping addition to realinst map]LOG]!><time="15:39:33.259-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:7040">
<![LOG[unlocked \\MININT-C1P2127\ROOT\ccm\policy\machine\requestedconfig for source CcmTaskSequence successfully]LOG]!><time="15:39:33.259-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7188">
<![LOG[Total RequestedConfig policy instance(s) : 409]LOG]!><time="15:39:33.306-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7651">
<![LOG[Locked ActualConfig successfully]LOG]!><time="15:39:33.306-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7664">
<![LOG[[1] Deleted setting 'CCM_ClientActions.ActionID="{00000000-0000-0000-0000-000000000113}"'.]LOG]!><time="15:39:33.321-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7705">
<![LOG[[2] Deleted setting 'CCM_ClientActions.ActionID="{00000000-0000-0000-0000-000000000108}"'.]LOG]!><time="15:39:33.321-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7705">
<![LOG[[3] Deleted setting 'CCM_Scheduler_ScheduledMessage.ScheduledMessageID="{00000000-0000-0000-0000-000000000113}"'.]LOG]!><time="15:39:33.337-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7705">
<![LOG[[4] Deleted setting 'CCM_Scheduler_ScheduledMessage.ScheduledMessageID="{00000000-0000-0000-0000-000000000114}"'.]LOG]!><time="15:39:33.337-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7705">
<![LOG[[5] Deleted setting 'CCM_Scheduler_ScheduledMessage.ScheduledMessageID="{00000000-0000-0000-0000-000000000108}"'.]LOG]!><time="15:39:33.337-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7705">
<![LOG[[6] Deleted setting 'CCM_NetworkAccessAccount.SiteSettingsKey=1'.]LOG]!><time="15:39:33.337-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7705">
<![LOG[[7] Deleted setting 'CCM_SoftwareDistributionClientConfig.SiteSettingsKey=1'.]LOG]!><time="15:39:33.352-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7705">
<![LOG[[8] Deleted setting 'CCM_SoftwareUpdatesClientConfig.SiteSettingsKey=1'.]LOG]!><time="15:39:33.352-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7705">
<![LOG[[9] Deleted setting 'CCM_SystemHealthClientConfig.SiteSettingsKey=1'.]LOG]!><time="15:39:33.352-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7705">
<![LOG[New/Changed ActualConfig policy instance(s) : 0]LOG]!><time="15:39:33.352-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7729">
<![LOG[unlocked ActualConfig successfully]LOG]!><time="15:39:33.352-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7773">
<![LOG[unlocked policy transaction lock successfully]LOG]!><time="15:39:33.352-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="policyutil.cpp:7779">
<![LOG[Raising event:
instance of CCM_PolicyAgent_SettingsEvaluationComplete
{
ClientID = "GUID:d7485bc5-4a20-40c5-ad81-7e1500538557";
DateTime = "20120127053933.368000+000";
PolicyNamespace = "\\\\minint-c1p2127\\root\\ccm\\policy\\machine\\actualconfig";
ProcessID = 1700;
ThreadID = 1704;
};
]LOG]!><time="15:39:33.368-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="event.cpp:729">
<![LOG[successfully submitted event to the Status Agent.]LOG]!><time="15:39:33.368-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="event.cpp:747">
<![LOG[End TS policy evaluation]LOG]!><time="15:39:33.368-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="policyutil.cpp:10455">
<![LOG[Policy evaluation initiated]LOG]!><time="15:39:33.368-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:3387">
<![LOG[g_TSManager.Run(), HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmanager\tsmanager.cpp,641)]LOG]!><time="15:39:33.368-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="tsmanager.cpp:641">
<![LOG[Error Task Sequence Manager failed to execute task sequence. Code 0x80004005]LOG]!><time="15:39:33.368-600" date="01-27-2012" component="TSManager" context="" type="3" thread="1704" file="tsmanager.cpp:671">
<![LOG[sending error status message]LOG]!><time="15:39:33.368-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanager.cpp:672">
<![LOG[MP server http://BCA-SCCM-DS.SCCM.live. Ports 80,443. CRL=false.]LOG]!><time="15:39:33.368-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:4855">
<![LOG[setting authenticator]LOG]!><time="15:39:33.384-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:4877">
<![LOG[set authenticator in transport]LOG]!><time="15:39:33.384-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="libsmsmessaging.cpp:7552">
<![LOG[sending StatusMessage]LOG]!><time="15:39:33.399-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="libsmsmessaging.cpp:4003">
<![LOG[setting message signatures.]LOG]!><time="15:39:33.399-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="libsmsmessaging.cpp:1291">
<![LOG[setting the authenticator.]LOG]!><time="15:39:33.399-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="libsmsmessaging.cpp:1321">
<![LOG[CLibSMSMessageWinHttpTransport::Send: URL: BCA-SCCM-DS.SCCM.live:80  CCM_POST /ccm_system/request]LOG]!><time="15:39:33.399-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="libsmsmessaging.cpp:8382">
<![LOG[Request was succesful.]LOG]!><time="15:39:33.446-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="libsmsmessaging.cpp:8718">
<![LOG[Finalize logging request ignored from process 1700]LOG]!><time="15:39:33.446-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tslogging.cpp:1737">
<![LOG[Waiting for CcmExec service to be fully operational]LOG]!><time="15:39:33.446-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:4019">
<![LOG[CcmExec service is up and fully operational]LOG]!><time="15:39:33.446-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="utils.cpp:4024">
<![LOG[Access handle will be read from _SMSTSActiveRequestHandle]LOG]!><time="15:39:33.446-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanagerutils.cpp:99">
<![LOG[Access handle: {547EE66B-3122-49D9-9B9E-E253D38F9FD3}]LOG]!><time="15:39:33.446-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanagerutils.cpp:111">
<![LOG[Attempting to release request using {547EE66B-3122-49D9-9B9E-E253D38F9FD3}]LOG]!><time="15:39:33.446-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanagerutils.cpp:118">
<![LOG[CoCreateInstance succeeded]LOG]!><time="15:39:33.477-600" date="01-27-2012" component="TSManager" context="" type="1" thread="1704" file="tsmanagerutils.cpp:133">
<![LOG[pISoftwareExecutionRequestMgr->ReleaseRequest(ActiveRequestGUID), HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmanager\tsmanagerutils.cpp,136)]LOG]!><time="15:39:33.493-600" date="01-27-2012" component="TSManager" context="" type="0" thread="1704" file="tsmanagerutils.cpp:136">
<![LOG[ReleaseRequest failed with error code 0x80004005]LOG]!><time="15:39:33.493-600" date="01-27-2012" component="TSManager" context="" type="3" thread="1704" file="tsmanagerutils.cpp:136">
<![LOG[Task Sequence Manager could not release active TS request. code 80004005]LOG]!><time="15:39:33.493-600" date="01-27-2012" component="TSManager" context="" type="2" thread="1704" file="tsmanagerutils.cpp:165">
<![LOG[Process completed with exit code 2147500037]LOG]!><time="15:39:33.508-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="1668" file="commandline.cpp:1098">
<![LOG[Exiting with return code 0x80004005]LOG]!><time="15:39:33.508-600" date="01-27-2012" component="TSMBootstrap" context="" type="1" thread="1668" file="tsmbootstrap.cpp:1032">
<![LOG[Process completed with exit code 2147500037]LOG]!><time="15:39:33.508-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="commandline.cpp:1098">
<![LOG[Task sequence completed 0x80004005]LOG]!><time="15:39:33.508-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="basesetuphook.cpp:1384">
<![LOG[uninstalling Setup Hook]LOG]!><time="15:39:34.678-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="basesetuphook.cpp:1427">
<![LOG[Removing setup hook from registry.]LOG]!><time="15:39:34.678-600" date="01-27-2012" component="OSDSetupHook" context="" type="0" thread="876" file="vistasetuphook.cpp:143">
<![LOG[successfully removed C:\WINDOWS\system32\OSDGINA.DLL]LOG]!><time="15:39:34.678-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="basesetuphook.cpp:1183">
<![LOG[successfully removed C:\WINDOWS\system32\OSDSETUPHOOK.EXE]LOG]!><time="15:39:34.678-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="basesetuphook.cpp:1183">
<![LOG[successfully removed C:\WINDOWS\system32\_SMSOSDSetup]LOG]!><time="15:39:34.678-600" date="01-27-2012" component="OSDSetupHook" context="" type="1" thread="876" file="basesetuphook.cpp:1220">

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...


×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.