Closed PCL-CrisKolkman closed 2 years ago
Hmm. I've never attempted to monitor a Task Sequence that runs in the OS. There should be no difference though. Are you 100% positive the queries match? If so the data should be there. I would see if it is in the $Messages/$StatusMessages variables. Glancing through the script I don't see anything that stands out as to why it would strip these out.
At this point my only guess would be that something you may have added to the query in the script may be causing this? But I'm only guessing..
Can post your query from the script so I can take a look?
Can post your query from the script so I can take a look?
I will post that tomorrow, but I didn't change anything in the query. And to be 100% sure I used the same query as the script, I ran the script and let it output $Query to a logfile and ran that same query directly against the database.
ok. Yeah post it tomorrow just to be safe. I'm sure you are correct.
Next would be to check the $Messages/$StatusMessages variables to see if it is there.
ok. Yeah post it tomorrow just to be safe. I'm sure you are correct.
Next would be to check the $Messages/$StatusMessages variables to see if it is there.
Okay so here is the output for $Query:
select smsgs.RecordID,
CASE smsgs.Severity
WHEN -1073741824 THEN 'Error'
WHEN 1073741824 THEN 'Informational'
WHEN -2147483648 THEN 'Warning'
ELSE 'Unknown'
END As 'SeverityName',
case smsgs.MessageType
WHEN 256 THEN 'Milestone'
WHEN 512 THEN 'Detail'
WHEN 768 THEN 'Audit'
WHEN 1024 THEN 'NT Event'
ELSE 'Unknown'
END AS 'Type',
smsgs.MessageID, smsgs.Severity, smsgs.MessageType, smsgs.ModuleName,modNames.MsgDLLName, smsgs.Component,
smsgs.MachineName, smsgs.Time, smsgs.SiteCode, smwis.InsString1,
smwis.InsString2, smwis.InsString3, smwis.InsString4, smwis.InsString5,
smwis.InsString6, smwis.InsString7, smwis.InsString8, smwis.InsString9,
smwis.InsString10, v_StatMsgAttributes.*, DATEDIFF(hour,dateadd(hh,1,smsgs.Time),GETDATE()) as DateDiffer
from v_StatusMessage smsgs
join v_StatMsgWithInsStrings smwis on smsgs.RecordID = smwis.RecordID
join v_StatMsgModuleNames modNames on smsgs.ModuleName = modNames.ModuleName
join v_StatMsgAttributes on v_StatMsgAttributes.RecordID = smwis.RecordID
where (smsgs.Component = 'Task Sequence Engine' or smsgs.Component = 'Task Sequence Action')
and v_StatMsgAttributes.AttributeID = 401
and (v_StatMsgAttributes.AttributeValue = 'DTN2002A' or v_StatMsgAttributes.AttributeValue = 'DTN2002F' or v_StatMsgAttributes.AttributeValue = 'DTN20031' or v_StatMsgAttributes.AttributeValue = 'DTN2002E' or v_StatMsgAttributes.AttributeValue = 'DTN20030')
and DATEDIFF(hour,smsgs.Time,GETDATE()) < 24
Order by smsgs.Time DESC
This is the output for $StatusMessages:
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:02:51
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in th
e group (Install Operating System) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:02:51
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Partition Disk
0 - BIOS) in the group (Install Operating System) with exit code 0
Action output: ... drive: C:
Skipping non-local logical drive: F:
Adding logical drive: S:
Skipping non-local logical drive: X:
Formatting drive C: with NTFS filesystem, method quick
Creating instance of service loader
Loading service
Waiting for service to initialize
Querying for software providers
Found a VDS software provider
Querying for IVdsSwProvider
Querying for packs
Found a VDS pack
Querying for IVdsPack
Querying for volumes
Found a VDS software provider
Querying for IVdsSwProvider
Querying forpacks
Found a VDS pack
Querying for IVdsPack
Querying for volumes
Found a VDS volume
Querying for IVdsVolumeMF
Querying for access paths
Found a VDS pack
Querying for IVdsPack
Querying for volumes
Found a VDS volume
Querying for IVdsVolumeMFQuerying for access paths
Found a VDS volume
Querying for IVdsVolumeMF
Querying for access paths
Found a volume with access path 'C:\'
Querying for IVdsVolume
Querying for IVdsVolumeMF
Partition: 3 Recovery
OSDDiskPart.exe completed successfully.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:02:37
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11140
Description : The task sequence execution engine started execution of a task sequence.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:00:54
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Restart in Wind
ows PE) in the group (Install Operating System) with exit code 0
Action output: ========================= [ smsboot.exe ] =========================
Running module version 5.0.9068.1000 from location 'C:\WINDOWS\CCM\smsboot.exe'
Command line: '"smsboot.exe" /target:WinPE'
SMSTSRebootDelay=10
SMSTSRebootMessage=A new Microsoft Windows operating system is being installed. The
computer must reboot to continue.
SMSTSRebootRequested=WinPE.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:00:54
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Check if DHCP e
nabled) in the group (Install Operating System) with exit code 0
Action output: ================================ [ smsswd.exe ] ======================
==========
Running module version 5.0.9068.1000 from location 'C:\WINDOWS\CCM\smsswd.exe'
PackageID = ''
BaseVar = '', ContinueOnError=''
ProgramName is being logged ('OSDDoNotLogCommand' is not set to 'True')
ProgramName = 'powershell.exe -executionpolicy bypass -file "\\DFSE0207\Software$\Pow
erShell Scripts\GetDHCP.PS1"'
SwdAction = '0001'
Will run Command Line under SYSTEM account
Command line for extension .exe is "%1" %*Set command line: Run command line
Working dir 'not set'
Executing command line: Run command line with options (0, 4)
Process completed with exit code 0
Command line is being logged ('OSDDoNotLogCommand' is not set to 'True')
Command line powershell.exe -executionpolicy bypass -file "\\DFSE0207\Software$\Power
Shell Scripts\GetDHCP.PS1" returned 0.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:00:53
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11124
Description : The task sequence execution engine started the group (Install Operating System).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:00:52
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11140
Description : The task sequence execution engine started execution of a task sequence.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:20:09
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11143
Description : The task sequence execution engine successfully completed a task sequence.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:20:09
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11127
Description : The task sequence execution engine successfully completed the group (Setup Operating
System).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:20:09
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11127
Description : The task sequence execution engine successfully completed the group (Voetenwarmer set
screen).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:20:09
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (set res) in the group (Voetenw
armer set screen) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:20:09
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (Set external) in the group (Vo
etenwarmer set screen) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:20:09
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11124
Description : The task sequence execution engine started the group (Voetenwarmer set screen).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:20:09
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (Install Intel ME Driver(IB995A
F)) in the group (Setup Operating System) because the condition was evaluated to be f
alse.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:20:09
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (PenMount Universal Driver(AAEO
N)) in the group (Setup Operating System) because the condition was evaluated to be f
alse.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:20:09
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (Install Vmware Tools) in the g
roup (Setup Operating System) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:20:09
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Install MSMQ) i
n the group (Setup Operating System) with exit code 0
Action output: ... 㴽㴽㴽㴽㴽㴽㴽㴽㘽⸹┴㴽㴽㴽㴽†††††††††⁝嬍㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㜽⸰┵㴽㴽㴽㴽†††††††††⁝嬍㴽㴽㴽㴽㴽㴽㴽㴽㴽
㴽㴽㴽㴽㜽⸱┶㴽㴽㴽㴽‽†††††�㴽㴽㴽㴽㴽㠽⸳┷㴽㴽㴽㴽㴽㴽㴽㴽†††††⁝嬍㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㠽⸴┷㴽㴽㴽㴽㴽㴽㴽㴽‽††††⁝嬍㴽㴽㴽㴽
[===========================86.7%================== ]
[=======================================89.7%==================== ]
[===========================90.7%==================== ]
[===========================91.7%===================== ]
[===========================92.7%===================== ]
[===========================94.0%====================== ]
[===========================95.3%======================= ]
[===========================96.5%======================= ]
[===========================97.7%======================== ].
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:20:01
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Install Prereq
x64) in the group (Setup Operating System) with exit code 0
Action output: ... ecution Manager to install software
Installing software for PackageID='DTN00020' ProgramID='Copy-PreReq' AdvertID='DTN200
2E' has started, jobID='{FD210A4E-3176-4CDC-A7F3-7B530739B030}'
Setting TSEnv variable 'SMSTSInstallSoftwareJobID_DTN00020_DTN2002E_Copy-PreReq'='{FD
210A4E-3176-4CDC-A7F3-7B530739B030}'
Waiting for installation job to complete..
CompleteExecution received
CompleteExecution processed
Received job completion notification from Execution Manager
Installation completed with exitcode 0x00000000
Install successful
Setting TSEnv variable 'SMSTSInstallSoftwareJobID_DTN00020_DTN2002E_Copy-PreReq'=''
GetExecRequestMgrInterface successful
Releasing job request, jobID='{FD210A4E-3176-4CDC-A7F3-7B530739B030}'
Releasing of Job Request successful
CompleteJob successful
ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN00020.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN00020 before releasi
ng
Released the resolved source C:\_SMSTaskSequence\Packages\DTN00020.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:19:27
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (Install RST) in the group (Set
up Operating System) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:19:26
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Install Applica
tion) in the group (Setup Operating System) with exit code 0
Action output: ... bt\1216594\repo\src\Framework\Core\CCMCore\util.cpp,4647)
CcmGetProfilerInstance(&g_spCcmProfiler), HRESULT=80004005 (X:\bt\1216594\repo\src\Fr
amework\Core\CCMCore\Logging.cpp,805)
Unable to load profiler: 0x80004005
LSGetInternetMode
LSGetInternetMode: In Intranet
LSGetHomeMPFromWMI
Current Assigned Management Point is DFSE0207.DOMAIN.COM with Versi
on 9068 and Capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSL" Vers
ion="1"/><Property Name="SSLState" Value="63"/></Capabilities>
Successfully connected to Management Point DFSE0207.DOMAIN.COM:80
Assigned site code has been resolved
Setting progress step for initialization
Setting total steps to 1
Succeeded loading resource DLL 'C:\WINDOWS\CCM\1033\TSRES.DLL'
Adding 6 installs to steps
Setting total steps to 7
Step 1 out of 7 complete
Step 2 out of 7 complete
Step 3 out of 7 complete
Step 4 out of 7 complete
Step 5 out of 7 complete
Step 6 out of 7 complete
Step 7 out of 7 complete.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:17:07
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11140
Description : The task sequence execution engine started execution of a task sequence.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:16:42
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11142
Description : The task sequence execution engine performed a system reboot initiated by the action
(Install Application) in the group (Setup Operating System).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 10-3-2022 15:16:38
System : DFTE0525
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Install Applica
tion) in the group (Setup Operating System) with exit code 0
Action output: ... (Application installed and reboot is pending )
App installation successful, reboot is required
Setting TSEnv variable 'SMSTSRebootRequested'='HD'
Setting TSEnv variable '_TSAppInstallStatus'='Success'
Setting TSEnv variable 'SMSTSInstallApplicationJobID__ScopeId_0E64DAC1-E50F-4749-9E34
-9DAFF6124011/Application_e4d97699-2435-46b8-9376-3ab630dd13b7'=''
Completed installation job.
Step 7 out of 7 complete
Sending success status message
Setting URL = https://DFSE0207.DOMAIN.COM, Ports = 80,443, CRL =
false
Setting Server Certificates.
Setting Authenticator.
::DecompressBuffer(65536)
Decompression (zlib) succeeded: original size 2333, uncompressed size 7700.
And $Messages:
Count Name Group
----- ---- -----
7 SCCMWIN10X86 {@{Severity=Informational; Type=Milestone; SiteCode=DTN; Date / ...
28 DFTE0525 {@{Severity=Informational; Type=Milestone; SiteCode=DTN; Date / ...
22 MININT-0VSRMKL {@{Severity=Informational; Type=Milestone; SiteCode=DTN; Date / ...
But now getting below error again (has been away for a while):
When I run the above query directly on the database, I get below results:
RecordID SeverityName Type MessageID Severity MessageType ModuleName MsgDLLName Component MachineName Time SiteCode InsString1 InsString2 InsString3 InsString4 InsString5 InsString6 InsString7 InsString8 InsString9 InsString10 RecordID AttributeID AttributeValue AttributeTime DateDiffer
72057594047648901 Informational Milestone 11130 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:02:51.343 DTN 4 Partition Disk 0 - UEFI Install Operating System 0 NULL NULL NULL NULL NULL NULL 72057594047648901 401 DTN2002E 2022-03-11 12:02:51.343 0
72057594047648900 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:02:51.097 DTN 3 Partition Disk 0 - BIOS Install Operating System 0 ... drive: C: Skipping non-local logical drive: F: Adding logical drive: S: Skipping non-local logical drive: X: Formatting drive C: with NTFS filesystem, method quick Creating instance of service loader Loading service Waiting for service to initi alize Querying for software providers Found a VDS software provider Querying for IVdsSwProvider Querying for packs Found a VDS pack Querying for IVdsPack Querying for volumes Found a VDS software provider Querying for IVdsSwProvider Querying for packs Found a VDS pack Querying for IVdsPack Querying for volumes Found a VDS volume Querying for IVdsVolumeMF Querying for access paths Found a VDS pack Querying for IVdsPack Querying for volumes Found a VDS volume Querying for IVdsVolumeMF Querying for access paths Found a VDS volume Querying for IVdsVolumeMF Querying for access paths Found a volume with access path 'C:\' Querying for IVdsVolume Querying for IVdsVolumeMF Partition: 3 Recovery OSDDiskPart.exe completed successfully SMS_TaskSequence_PartitionDiskAction NULL 72057594047648900 401 DTN2002E 2022-03-11 12:02:51.097 0
72057594047648899 Informational Milestone 11140 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:02:37.693 DTN 3 NULL NULL 0 NULL NULL NULL NULL NULL NULL 72057594047648899 401 DTN2002E 2022-03-11 12:02:37.693 0
72057594047648897 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:00:54.797 DTN 2 Restart in Windows PE Install Operating System 0 ========================= [ smsboot.exe ] ========================= Running module version 5.0.9068.1000 from location 'C:\WINDOWS\CCM\smsboot.exe' Command line: '"smsboot.exe" /target:WinPE' SMSTSRebootDelay=10 SMSTSRebootMessage=A new Microsoft Wind ows operating system is being installed. The computer must reboot to continue. SMSTSRebootRequested=WinPE NULL NULL SMS_TaskSequence_RebootAction NULL 72057594047648897 401 DTN2002E 2022-03-11 12:00:54.797 0
72057594047648896 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:00:54.327 DTN 1 Check if DHCP enabled Install Operating System 0 ================================ [ smsswd.exe ] ================================ Running module version 5.0.9068.1000 from location 'C:\WINDOWS\CCM\smsswd.exe' PackageID = '' BaseVar = '', ContinueOnError='' ProgramName is being logged ('OSDDoNotLog Command' is not set to 'True') ProgramName = 'powershell.exe -executionpolicy bypass -file "\\DFSE0207\Software$\PowerShell Scripts\GetDHCP.PS1"' SwdAction = '0001' Will run Command Line under SYSTEM account Command line for extension .exe is "%1" %* Set command line: Run command line Working dir 'not set' Executing command line: Run command line with options (0, 4) Process completed with exit code 0 Command line is being logged ('OSDDoNotLogCommand' is not set to 'True') Command line powershell .exe -executionpolicy bypass -file "\\DFSE0207\Software$\PowerShell Scripts\GetDHCP.PS1" returned 0 SMS_TaskSequence_RunCommandLineAction NULL 72057594047648896 401 DTN2002E 2022-03-11 12:00:54.327 0
72057594047648895 Informational Milestone 11124 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:00:53.017 DTN 0 NULL Install Operating System 0 NULL NULL NULL NULL NULL NULL 72057594047648895 401 DTN2002E 2022-03-11 12:00:53.017 0
72057594047648894 Informational Milestone 11140 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:00:52.717 DTN 0 NULL NULL 0 NULL NULL NULL NULL NULL NULL 72057594047648894 401 DTN2002E 2022-03-11 12:00:52.717 0
Output for $Table:
RecordID : 72057594047649020
SeverityName : Informational
Type : Milestone
MessageID : 11142
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:16:13
SiteCode : DTN
InsString1 : 19
InsString2 : Setup Windows and Configuration Manager
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649020
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:16:13
DateDiffer : 0
RecordID : 72057594047649019
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:16:03
SiteCode : DTN
InsString1 : 19
InsString2 : Setup Windows and Configuration Manager
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... ount 1 for the source C:\_SMSTaskSequence\Packages\DTN00003 before releasing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN00003
Exiting ConfigureEx: 0x00000000
Process completed with exit code 0
Installing hook to 'C:\WINDOWS'
Com
InsString6 : mand line for extension .EXE is "%1" %*
Set command line: "X:\sms\bin\x64\OSDSETUPHOOK.EXE" "/install:C:\WINDOWS" /version
:10.0
Executing command line: "X:\sms\bin\x64\OSDSETUPHOOK.EXE" "/install:C:\WINDOWS" /v
ersion:10.0 with options (0, 0)
Installing
InsString7 : OSD setup hook
Setup hook install completed successfully
Process completed with exit code 0
OfflineRegistry::Init("C:\WINDOWS")
Loading offline registry hive "C:\WINDOWS\system32\config\software" into HKLM\Offl
ineRegistry1
Loading offline registry h
InsString8 : ive "C:\WINDOWS\system32\config\system" into HKLM\OfflineRegistry2
CurrentControlSet is mapped to ControlSet001
SMS Client is not installed
Unloading offline SOFTWARE registry hive
Unloading offline SYSTEM registry hive
Exiting with code 0x00000000
InsString9 : SMS_TaskSequence_SetupWindowsAndSMSAction
InsString10 :
RecordID1 : 72057594047649019
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:16:03
DateDiffer : 0
RecordID : 72057594047649018
SeverityName : Informational
Type : Milestone
MessageID : 11124
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 18
InsString2 :
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649018
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 0
RecordID : 72057594047649017
SeverityName : Informational
Type : Milestone
MessageID : 11127
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 17
InsString2 :
InsString3 : Install Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649017
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 0
RecordID : 72057594047649016
SeverityName : Informational
Type : Milestone
MessageID : 11127
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 16
InsString2 :
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649016
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 0
RecordID : 72057594047649015
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 15
InsString2 : IB995AF
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649015
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 0
RecordID : 72057594047649014
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 14
InsString2 : HP Mini Drivers
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649014
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 0
RecordID : 72057594047649013
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 13
InsString2 : Voetenwarmer Drivers
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649013
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 0
RecordID : 72057594047649012
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 12
InsString2 : Ebox Drivers
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649012
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 0
RecordID : 72057594047649011
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 11
InsString2 : Beckhoff
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649011
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 0
RecordID : 72057594047649010
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 10
InsString2 : AAEON Drivers
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649010
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 0
RecordID : 72057594047649009
SeverityName : Informational
Type : Milestone
MessageID : 11124
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 9
InsString2 :
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649009
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 0
RecordID : 72057594047649008
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:13
SiteCode : DTN
InsString1 : 8
InsString2 : Apply Device Drivers
InsString3 : Install Operating System
InsString4 : 0
InsString5 : ... a suitable device driver for device 'EISA programmable interrupt controller'.
Unsuccessful in finding a suitable device driver for device 'NDIS Virtual Network
Adapter Enumerator'.
Unsuccessful in finding a suitable device driver for device 'CPU to
InsString6 : PCI Bridge'.
Unsuccessful in finding a suitable device driver for device 'Video Controller (VGA
Compatible)'.
Unsuccessful in finding a suitable device driver for device 'USB Composite Device'
.
Unsuccessful in finding a suitable device driver for devi
InsString7 : ce 'System timer'.
Unsuccessful in finding a suitable device driver for device 'Microsoft System Mana
gement BIOS Driver'.
Unsuccessful in finding a suitable device driver for device 'PCI-to-PCI Bridge'.
Unsuccessful in finding a suitable device driver
InsString8 : for device 'Plug and Play Software Device Enumerator'.
Unsuccessful in finding a suitable device driver for device 'PS/2 Compatible Mouse
'.
Unsuccessful in finding a suitable device driver for device 'Generic Bus'.
Exiting with return code 0x00000000
InsString9 : SMS_TaskSequence_AutoApplyAction
InsString10 :
RecordID1 : 72057594047649008
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:13
DateDiffer : 0
RecordID : 72057594047648995
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:14:58
SiteCode : DTN
InsString1 : 7
InsString2 : Apply Network Settings
InsString3 : Install Operating System
InsString4 : 0
InsString5 : ... Joining workgroup: COMPANY
Getting namespace "Microsoft-Windows-UnattendedJoin" for architecture "amd64"
DNS domain:
DNS domain search order:
IP filter sec enabled: false
Configuring 1 of 1 network adapters
Configuring DHCP
DNS suffix:
DNS
InsString6 : server search order:
DNS registration enabled: false
Full DNS registration enabled: true
Permitted IP protocols:
Permitted TCP ports:
Permitted UDP ports:
Tcpip Netbios options: 0
Enable WINS: false
WINS server(s):
MAC address not specified
InsString7 : for adapter 0. Applying settings to MAC address 00:50:56:9c:d9:89.
Adapter index: 0
Adapter name: Factory Network
Getting namespace "Microsoft-Windows-TCPIP" for architecture "amd64"
Added list item with key value '00-50-56-9c-d9-89'
Writing configu
InsString8 : ration information to C:\WINDOWS\panther\unattend\unattend.xml
Successfully saved configuration information to C:\WINDOWS\panther\unattend\unatte
nd.xml
Configuring "OSDNetSettings.exe finalize" to run on first boot
OSDNetSettings finished: 0x00000000
InsString9 : SMS_TaskSequence_ApplyNetworkSettingsAction
InsString10 :
RecordID1 : 72057594047648995
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:14:58
DateDiffer : 0
RecordID : 72057594047648994
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:14:58
SiteCode : DTN
InsString1 : 6
InsString2 : Apply Windows Settings
InsString3 : Install Operating System
InsString4 : 0
InsString5 : ... ile.
The OSDWindowsSettingsSystemLocale variable is not set in the environment. Not se
tting the system locale in the unattend answer file.
The OSDWindowsSettingsUserLocale variable is not set in the environment. Not sett
ing the user locale in the
InsString6 : unattend answer file.
The OSDWindowsSettingsUILanguage variable is not set in the environment. Not sett
ing the UI language in the unattend answer file.
The OSDWindowsSettingsUILanguageFallback variable is not set in the environment.
Not setting the UI
InsString7 : language fallback in the unattend answer file.
Registered Organization: DFSE0207
Time Zone: W. Europe Standard Time
Time zone: W. Europe Standard Time
The OSDProductKey variable is not set in the environment. Not setting the product
key in the unatt
InsString8 : end answer file.
Setting local admin password.
Writing configuration information to C:\WINDOWS\panther\unattend\unattend.xml
Successfully saved configuration information to C:\WINDOWS\panther\unattend\unatte
nd.xml
Exiting with return code 0x00000000
InsString9 : SMS_TaskSequence_ApplyWindowsSettingsAction
InsString10 :
RecordID1 : 72057594047648994
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:14:58
DateDiffer : 0
RecordID : 72057594047648993
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:14:57
SiteCode : DTN
InsString1 : 5
InsString2 : Apply Operating System
InsString3 : Install Operating System
InsString4 : 0
InsString5 : ... 003E.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN0003E before rele
asing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN0003E
Setting %SystemRoot% to "C:\WINDOWS"
Loading existing answer file "C:\WINDOWS\panther\
InsString6 : unattend\unattend.xml"
Getting namespace "Microsoft-Windows-Deployment" for architecture "amd64"
Getting namespace "Microsoft-Windows-Shell-Setup" for architecture "amd64"
Getting namespace "Microsoft-Windows-International-Core" for architecture "amd64
InsString7 : "
Writing configuration information to C:\WINDOWS\panther\unattend\unattend.xml
Successfully saved configuration information to C:\WINDOWS\panther\unattend\unatte
nd.xml
Image installation completed successfully.
Closing image file C:\_SMSTaskSequence\
InsString8 : Packages\DTN000AB\win10x64wk2208.wim
ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN000AB.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN000AB before rele
asing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN000AB
InsString9 : SMS_TaskSequence_ApplyOperatingSystemAction
InsString10 :
RecordID1 : 72057594047648993
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:14:57
DateDiffer : 0
RecordID : 72057594047648901
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:02:51
SiteCode : DTN
InsString1 : 4
InsString2 : Partition Disk 0 - UEFI
InsString3 : Install Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047648901
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:02:51
DateDiffer : 0
RecordID : 72057594047648900
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:02:51
SiteCode : DTN
InsString1 : 3
InsString2 : Partition Disk 0 - BIOS
InsString3 : Install Operating System
InsString4 : 0
InsString5 : ... drive: C:
Skipping non-local logical drive: F:
Adding logical drive: S:
Skipping non-local logical drive: X:
Formatting drive C: with NTFS filesystem, method quick
Creating instance of service loader
Loading service
Waiting for service to initi
InsString6 : alize
Querying for software providers
Found a VDS software provider
Querying for IVdsSwProvider
Querying for packs
Found a VDS pack
Querying for IVdsPack
Querying for volumes
Found a VDS software provider
Querying for IVdsSwProvider
Querying for
InsString7 : packs
Found a VDS pack
Querying for IVdsPack
Querying for volumes
Found a VDS volume
Querying for IVdsVolumeMF
Querying for access paths
Found a VDS pack
Querying for IVdsPack
Querying for volumes
Found a VDS volume
Querying for IVdsVolumeMF
InsString8 : Querying for access paths
Found a VDS volume
Querying for IVdsVolumeMF
Querying for access paths
Found a volume with access path 'C:\'
Querying for IVdsVolume
Querying for IVdsVolumeMF
Partition: 3 Recovery
OSDDiskPart.exe completed successfully
InsString9 : SMS_TaskSequence_PartitionDiskAction
InsString10 :
RecordID1 : 72057594047648900
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:02:51
DateDiffer : 0
RecordID : 72057594047648899
SeverityName : Informational
Type : Milestone
MessageID : 11140
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:02:37
SiteCode : DTN
InsString1 : 3
InsString2 :
InsString3 :
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047648899
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:02:37
DateDiffer : 0
RecordID : 72057594047648897
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:00:54
SiteCode : DTN
InsString1 : 2
InsString2 : Restart in Windows PE
InsString3 : Install Operating System
InsString4 : 0
InsString5 : ========================= [ smsboot.exe ] =========================
Running module version 5.0.9068.1000 from location 'C:\WINDOWS\CCM\smsboot.exe'
Command line: '"smsboot.exe" /target:WinPE'
SMSTSRebootDelay=10
SMSTSRebootMessage=A new Microsoft Wind
InsString6 : ows operating system is being installed. The computer must reboot to continue.
SMSTSRebootRequested=WinPE
InsString7 :
InsString8 :
InsString9 : SMS_TaskSequence_RebootAction
InsString10 :
RecordID1 : 72057594047648897
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:00:54
DateDiffer : 0
RecordID : 72057594047648896
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:00:54
SiteCode : DTN
InsString1 : 1
InsString2 : Check if DHCP enabled
InsString3 : Install Operating System
InsString4 : 0
InsString5 : ================================ [ smsswd.exe ] ================================
Running module version 5.0.9068.1000 from location 'C:\WINDOWS\CCM\smsswd.exe'
PackageID = ''
BaseVar = '', ContinueOnError=''
ProgramName is being logged ('OSDDoNotLog
InsString6 : Command' is not set to 'True')
ProgramName = 'powershell.exe -executionpolicy bypass -file "\\DFSE0207\Software$\
PowerShell Scripts\GetDHCP.PS1"'
SwdAction = '0001'
Will run Command Line under SYSTEM account
Command line for extension .exe is "%1" %*
InsString7 : Set command line: Run command line
Working dir 'not set'
Executing command line: Run command line with options (0, 4)
Process completed with exit code 0
Command line is being logged ('OSDDoNotLogCommand' is not set to 'True')
Command line powershell
InsString8 : .exe -executionpolicy bypass -file "\\DFSE0207\Software$\PowerShell Scripts\GetDHC
P.PS1" returned 0
InsString9 : SMS_TaskSequence_RunCommandLineAction
InsString10 :
RecordID1 : 72057594047648896
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:00:54
DateDiffer : 0
RecordID : 72057594047648895
SeverityName : Informational
Type : Milestone
MessageID : 11124
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:00:53
SiteCode : DTN
InsString1 : 0
InsString2 :
InsString3 : Install Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047648895
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:00:53
DateDiffer : 0
RecordID : 72057594047648894
SeverityName : Informational
Type : Milestone
MessageID : 11140
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:00:52
SiteCode : DTN
InsString1 : 0
InsString2 :
InsString3 :
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047648894
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:00:52
DateDiffer : 0
RecordID : 72057594047642613
SeverityName : Informational
Type : Milestone
MessageID : 11143
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:20:09
SiteCode : DTN
InsString1 : 33
InsString2 :
InsString3 :
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642613
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:20:09
DateDiffer : 22
RecordID : 72057594047642612
SeverityName : Informational
Type : Milestone
MessageID : 11127
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:20:09
SiteCode : DTN
InsString1 : 33
InsString2 :
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642612
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:20:09
DateDiffer : 22
RecordID : 72057594047642611
SeverityName : Informational
Type : Milestone
MessageID : 11127
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:20:09
SiteCode : DTN
InsString1 : 32
InsString2 :
InsString3 : Voetenwarmer set screen
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642611
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:20:09
DateDiffer : 22
RecordID : 72057594047642610
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:20:09
SiteCode : DTN
InsString1 : 31
InsString2 : set res
InsString3 : Voetenwarmer set screen
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642610
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:20:09
DateDiffer : 22
RecordID : 72057594047642609
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:20:09
SiteCode : DTN
InsString1 : 30
InsString2 : Set external
InsString3 : Voetenwarmer set screen
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642609
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:20:09
DateDiffer : 22
RecordID : 72057594047642608
SeverityName : Informational
Type : Milestone
MessageID : 11124
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:20:09
SiteCode : DTN
InsString1 : 29
InsString2 :
InsString3 : Voetenwarmer set screen
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642608
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:20:09
DateDiffer : 22
RecordID : 72057594047642607
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:20:09
SiteCode : DTN
InsString1 : 28
InsString2 : Install Intel ME Driver(IB995AF)
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642607
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:20:09
DateDiffer : 22
RecordID : 72057594047642606
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:20:09
SiteCode : DTN
InsString1 : 27
InsString2 : PenMount Universal Driver(AAEON)
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642606
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:20:09
DateDiffer : 22
RecordID : 72057594047642605
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:20:09
SiteCode : DTN
InsString1 : 26
InsString2 : Install Vmware Tools
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642605
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:20:09
DateDiffer : 22
RecordID : 72057594047642604
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:20:09
SiteCode : DTN
InsString1 : 25
InsString2 : Install MSMQ
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... 㴽㴽㴽㴽㴽㴽㴽㴽㘽⸹┴㴽㴽㴽㴽†††††††††⁝嬍㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㜽⸰┵㴽㴽㴽㴽†††††††††⁝嬍㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㜽⸱┶㴽㴽㴽㴽‽
†††††�
InsString6 : 㴽㴽㴽㴽㴽㠽⸳┷㴽㴽㴽㴽㴽㴽㴽㴽†††††⁝嬍㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㠽⸴┷㴽㴽㴽㴽㴽㴽㴽㴽‽††††⁝嬍㴽㴽㴽㴽
[===========================86.7%================== ]
[===============
InsString7 : ========================89.7%==================== ]
[===========================90.7%==================== ]
[===========================91.7%===================== ]
[===========================92.7%===================== ]
[==
InsString8 : =========================94.0%====================== ]
[===========================95.3%======================= ]
[===========================96.5%======================= ]
[===========================97.7%======================== ]
InsString9 : SMS_TaskSequence_RunCommandLineAction
InsString10 :
RecordID1 : 72057594047642604
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:20:09
DateDiffer : 22
RecordID : 72057594047642594
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:20:01
SiteCode : DTN
InsString1 : 24
InsString2 : Install Prereq x64
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... ecution Manager to install software
Installing software for PackageID='DTN00020' ProgramID='Copy-PreReq' AdvertID='DTN
2002E' has started, jobID='{FD210A4E-3176-4CDC-A7F3-7B530739B030}'
Setting TSEnv variable 'SMSTSInstallSoftwareJobID_DTN00020_DTN2
InsString6 : 002E_Copy-PreReq'='{FD210A4E-3176-4CDC-A7F3-7B530739B030}'
Waiting for installation job to complete..
CompleteExecution received
CompleteExecution processed
Received job completion notification from Execution Manager
Installation completed with exit
InsString7 : code 0x00000000
Install successful
Setting TSEnv variable 'SMSTSInstallSoftwareJobID_DTN00020_DTN2002E_Copy-PreReq'='
'
GetExecRequestMgrInterface successful
Releasing job request, jobID='{FD210A4E-3176-4CDC-A7F3-7B530739B030}'
Releasing of Job Reques
InsString8 : t successful
CompleteJob successful
ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN00020.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN00020 before rele
asing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN00020
InsString9 : SMS_TaskSequence_InstallSoftwareAction
InsString10 :
RecordID1 : 72057594047642594
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:20:01
DateDiffer : 22
RecordID : 72057594047642589
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:19:27
SiteCode : DTN
InsString1 : 23
InsString2 : Install RST
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642589
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:19:27
DateDiffer : 22
RecordID : 72057594047642588
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:19:26
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... bt\1216594\repo\src\Framework\Core\CCMCore\util.cpp,4647)
CcmGetProfilerInstance(&g_spCcmProfiler), HRESULT=80004005 (X:\bt\1216594\repo\src
\Framework\Core\CCMCore\Logging.cpp,805)
Unable to load profiler: 0x80004005
LSGetInternetMode
LSGetInterne
InsString6 : tMode: In Intranet
LSGetHomeMPFromWMI
Current Assigned Management Point is DFSE0207.DOMAIN.COM with Ve
rsion 9068 and Capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSL
" Version="1"/><Property Name="SSLState" Value="63"
InsString7 : /></Capabilities>
Successfully connected to Management Point DFSE0207.DOMAIN.COM:8
0
Assigned site code has been resolved
Setting progress step for initialization
Setting total steps to 1
Succeeded loading resource DLL 'C:\WINDOWS\CC
InsString8 : M\1033\TSRES.DLL'
Adding 6 installs to steps
Setting total steps to 7
Step 1 out of 7 complete
Step 2 out of 7 complete
Step 3 out of 7 complete
Step 4 out of 7 complete
Step 5 out of 7 complete
Step 6 out of 7 complete
Step 7 out of 7 complete
InsString9 : SMS_TaskSequence_InstallApplicationAction
InsString10 :
RecordID1 : 72057594047642588
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:19:26
DateDiffer : 22
RecordID : 72057594047642578
SeverityName : Informational
Type : Milestone
MessageID : 11140
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:17:07
SiteCode : DTN
InsString1 : 22
InsString2 :
InsString3 :
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642578
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:17:07
DateDiffer : 22
RecordID : 72057594047642575
SeverityName : Informational
Type : Milestone
MessageID : 11142
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:16:42
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642575
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:16:42
DateDiffer : 22
RecordID : 72057594047642574
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:16:38
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... (Application installed and reboot is pending )
App installation successful, reboot is required
Setting TSEnv variable 'SMSTSRebootRequested'='HD'
Setting TSEnv variable '_TSAppInstallStatus'='Success'
Setting TSEnv variable 'SMSTSInstallApplicati
InsString6 : onJobID__ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_e4d97699-2435-46
b8-9376-3ab630dd13b7'=''
Completed installation job.
Step 7 out of 7 complete
Sending success status message
Setting URL = https://DFSE0207.DOMAIN.C
InsString7 : OM, Ports = 80,443, CRL = false
Setting Server Certificates.
Setting Authenticator.
::DecompressBuffer(65536)
Decompression (zlib) succeeded: original size 2333, uncompressed size 7700.
Setting client certificate context to http transport
Send
InsString8 : ing StatusMessage
Setting the authenticator.
CLibSMSMessageWinHttpTransport::Send: WinHttpOpenRequest - URL: DFSE0207.COMP
ANY.COM:443 CCM_POST /ccm_system_AltAuth/request
SSL, using authenticator in request.
Request was successful.
InsString9 : SMS_TaskSequence_InstallApplicationAction
InsString10 :
RecordID1 : 72057594047642574
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:16:38
DateDiffer : 22
RecordID : 72057594047642573
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : DFTE0525
Time : 10-3-2022 14:16:38
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : FIS Middleware 3.0.1 V2
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_e4d97699-2435-46b8-9376-3
ab630dd13b7
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642573
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:16:38
DateDiffer : 22
RecordID : 72057594047642561
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : DFTE0525
Time : 10-3-2022 14:15:28
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : PL2303
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_faf046fb-8a72-40c3-9586-f
b170e1d7af1
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642561
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:15:28
DateDiffer : 22
RecordID : 72057594047642548
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : DFTE0525
Time : 10-3-2022 14:14:29
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : NodeInstaller 4.0
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_c1ff9fac-5d40-4b66-a811-f
7eca3ea59bd
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642548
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:14:29
DateDiffer : 22
RecordID : 72057594047642547
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : DFTE0525
Time : 10-3-2022 14:14:23
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : Framework Security
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_a8ce03e9-4c81-4bf1-b13b-8
7a08dc76659
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642547
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:14:23
DateDiffer : 22
RecordID : 72057594047642545
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : DFTE0525
Time : 10-3-2022 14:13:53
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : COMPANYInstallTool
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_569f3599-5638-4844-be49-f
ccd68e138cf
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642545
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:13:53
DateDiffer : 22
RecordID : 72057594047642544
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : DFTE0525
Time : 10-3-2022 14:13:47
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : TightVNC
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_c90ccbeb-ac6b-4768-b928-9
01b22b143c9
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642544
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:13:47
DateDiffer : 22
RecordID : 72057594047642524
SeverityName : Informational
Type : Milestone
MessageID : 11143
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:09:55
SiteCode : DTN
InsString1 : 33
InsString2 :
InsString3 :
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642524
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:09:55
DateDiffer : 22
RecordID : 72057594047642523
SeverityName : Informational
Type : Milestone
MessageID : 11127
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:09:55
SiteCode : DTN
InsString1 : 33
InsString2 :
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642523
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:09:55
DateDiffer : 22
RecordID : 72057594047642522
SeverityName : Informational
Type : Milestone
MessageID : 11127
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:09:55
SiteCode : DTN
InsString1 : 32
InsString2 :
InsString3 : Voetenwarmer set screen
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642522
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:09:55
DateDiffer : 22
RecordID : 72057594047642521
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:09:55
SiteCode : DTN
InsString1 : 31
InsString2 : set res
InsString3 : Voetenwarmer set screen
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642521
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:09:55
DateDiffer : 22
RecordID : 72057594047642520
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:09:55
SiteCode : DTN
InsString1 : 30
InsString2 : Set external
InsString3 : Voetenwarmer set screen
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642520
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:09:55
DateDiffer : 22
RecordID : 72057594047642519
SeverityName : Informational
Type : Milestone
MessageID : 11124
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:09:55
SiteCode : DTN
InsString1 : 29
InsString2 :
InsString3 : Voetenwarmer set screen
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642519
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:09:55
DateDiffer : 22
RecordID : 72057594047642518
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:09:55
SiteCode : DTN
InsString1 : 28
InsString2 : Install Intel ME Driver(IB995AF)
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642518
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:09:55
DateDiffer : 22
RecordID : 72057594047642517
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:09:55
SiteCode : DTN
InsString1 : 27
InsString2 : PenMount Universal Driver(AAEON)
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642517
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:09:55
DateDiffer : 22
RecordID : 72057594047642516
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:09:54
SiteCode : DTN
InsString1 : 26
InsString2 : Install Vmware Tools
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642516
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:09:54
DateDiffer : 22
RecordID : 72057594047642515
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:09:54
SiteCode : DTN
InsString1 : 25
InsString2 : Install MSMQ
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... 㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㘽⸷┳㴽㴽㴽‽†††††††††⁝嬍㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㘽⸸┳㴽㴽㴽‽†††††††††⁝嬍㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㘽⸹┴㴽㴽㴽
㴽††††�
InsString6 : 㴽㴽㴽㴽㴽㴽㴽㠽⸱┷㴽㴽㴽㴽㴽㴽㴽‽†††††⁝嬍㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㠽⸲┷㴽㴽㴽㴽㴽㴽㴽‽†††††⁝嬍㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㠽⸳┷㴽㴽㴽㴽㴽㴽㴽㴽††
††�
InsString7 : ========================88.7%=================== ]
[===========================89.7%==================== ]
[===========================90.7%==================== ]
[===========================91.7%===================== ]
[==
InsString8 : =========================92.7%===================== ]
[===========================94.0%====================== ]
[===========================95.3%======================= ]
[===========================96.5%======================= ]
InsString9 : SMS_TaskSequence_RunCommandLineAction
InsString10 :
RecordID1 : 72057594047642515
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:09:54
DateDiffer : 22
RecordID : 72057594047642514
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:09:47
SiteCode : DTN
InsString1 : 24
InsString2 : Install Prereq x64
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... ecution Manager to install software
Installing software for PackageID='DTN00020' ProgramID='Copy-PreReq' AdvertID='DTN
2002A' has started, jobID='{B646882F-68BD-47C1-BBB3-33B133299C7C}'
Setting TSEnv variable 'SMSTSInstallSoftwareJobID_DTN00020_DTN2
InsString6 : 002A_Copy-PreReq'='{B646882F-68BD-47C1-BBB3-33B133299C7C}'
Waiting for installation job to complete..
CompleteExecution received
CompleteExecution processed
Received job completion notification from Execution Manager
Installation completed with exit
InsString7 : code 0x00000000
Install successful
Setting TSEnv variable 'SMSTSInstallSoftwareJobID_DTN00020_DTN2002A_Copy-PreReq'='
'
GetExecRequestMgrInterface successful
Releasing job request, jobID='{B646882F-68BD-47C1-BBB3-33B133299C7C}'
Releasing of Job Reques
InsString8 : t successful
CompleteJob successful
ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN00020.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN00020 before rele
asing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN00020
InsString9 : SMS_TaskSequence_InstallSoftwareAction
InsString10 :
RecordID1 : 72057594047642514
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:09:47
DateDiffer : 22
RecordID : 72057594047642513
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:09:42
SiteCode : DTN
InsString1 : 23
InsString2 : Install RST
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642513
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:09:42
DateDiffer : 22
RecordID : 72057594047642512
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:09:42
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... bt\1216594\repo\src\Framework\Core\CCMCore\util.cpp,4647)
CcmGetProfilerInstance(&g_spCcmProfiler), HRESULT=80004005 (X:\bt\1216594\repo\src
\Framework\Core\CCMCore\Logging.cpp,805)
Unable to load profiler: 0x80004005
LSGetInternetMode
LSGetInterne
InsString6 : tMode: In Intranet
LSGetHomeMPFromWMI
Current Assigned Management Point is DFSE0207.DOMAIN.COM with Ve
rsion 9068 and Capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSL
" Version="1"/><Property Name="SSLState" Value="63"
InsString7 : /></Capabilities>
Successfully connected to Management Point DFSE0207.DOMAIN.COM:8
0
Assigned site code has been resolved
Setting progress step for initialization
Setting total steps to 1
Succeeded loading resource DLL 'C:\WINDOWS\CC
InsString8 : M\1033\TSRES.DLL'
Adding 6 installs to steps
Setting total steps to 7
Step 1 out of 7 complete
Step 2 out of 7 complete
Step 3 out of 7 complete
Step 4 out of 7 complete
Step 5 out of 7 complete
Step 6 out of 7 complete
Step 7 out of 7 complete
InsString9 : SMS_TaskSequence_InstallApplicationAction
InsString10 :
RecordID1 : 72057594047642512
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:09:42
DateDiffer : 22
RecordID : 72057594047642495
SeverityName : Informational
Type : Milestone
MessageID : 11140
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:07:22
SiteCode : DTN
InsString1 : 22
InsString2 :
InsString3 :
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642495
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:07:22
DateDiffer : 22
RecordID : 72057594047642492
SeverityName : Informational
Type : Milestone
MessageID : 11142
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:07:01
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642492
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:07:01
DateDiffer : 22
RecordID : 72057594047642491
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:06:30
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... ending
Installation job completed with exit code 0x00000000
Execution status received: 14 (Application installed and reboot is pending )
App installation successful, reboot is required
Setting TSEnv variable 'SMSTSRebootRequested'='HD'
Setting TS
InsString6 : Env variable '_TSAppInstallStatus'='Success'
Setting TSEnv variable 'SMSTSInstallApplicationJobID__ScopeId_0E64DAC1-E50F-4749-9
E34-9DAFF6124011/Application_e4d97699-2435-46b8-9376-3ab630dd13b7'=''
Completed installation job.
Step 7 out of 7 complete
S
InsString7 : ending success status message
Setting URL = https://DFSE0207.DOMAIN.COM, Ports = 80,443, CR
L = false
Setting Server Certificates.
Setting Authenticator.
Sending StatusMessage
Setting the authenticator.
CLibSMSMessageWinHtt
InsString8 : pTransport::Send: WinHttpOpenRequest - URL: DFSE0207.DOMAIN.COM:
443 CCM_POST /ccm_system_AltAuth/request
SSL, using authenticator in request.
In SSL, but with no client cert.
In SSL, but with no media cert.
Request was successful.
InsString9 : SMS_TaskSequence_InstallApplicationAction
InsString10 :
RecordID1 : 72057594047642491
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:06:30
DateDiffer : 22
RecordID : 72057594047642490
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:06:30
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : FIS Middleware 3.0.1 V2
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_e4d97699-2435-46b8-9376-3
ab630dd13b7
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642490
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:06:30
DateDiffer : 22
RecordID : 72057594047642488
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:06:04
SiteCode : DTN
InsString1 : 21
InsString2 : netsh winhttp reset proxy
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 : SMS_TaskSequence_RunCommandLineAction
InsString10 :
RecordID1 : 72057594047642488
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:06:04
DateDiffer : 22
RecordID : 72057594047642487
SeverityName : Informational
Type : Milestone
MessageID : 11140
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:06:03
SiteCode : DTN
InsString1 : 21
InsString2 :
InsString3 :
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642487
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:06:03
DateDiffer : 22
RecordID : 72057594047642485
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:05:26
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : PL2303
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_faf046fb-8a72-40c3-9586-f
b170e1d7af1
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642485
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:05:26
DateDiffer : 22
RecordID : 72057594047642484
SeverityName : Informational
Type : Milestone
MessageID : 11142
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:05:24
SiteCode : DTN
InsString1 : 20
InsString2 : Join Domain or Workgroup
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642484
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:05:24
DateDiffer : 22
RecordID : 72057594047642483
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:05:13
SiteCode : DTN
InsString1 : 20
InsString2 : Join Domain or Workgroup
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ==================[ OSDJoin.exe ]=================
Running osdjoin.exe
Running module version 5.0.9068.1000 from location 'C:\WINDOWS\CCM\osdjoin.exe'
Stripping LDAP prefix from OU
Current status = Workgroup, lpNameBuffer="COMPANY"
Joining domain
InsString6 : DOMAIN.COM and OU CN=Computers,DC=OUR_OU,DC=COM
PANY,DC=COM
Attempting to join and create account with OU
Result= 0x000008b0
Attempting to join and create account, without OU
Result= 0x00000000
Successfully joined do
InsString7 : main DOMAIN.COM
Finished with error code 0x00000000
InsString8 :
InsString9 : SMS_TaskSequence_JoinDomainWorkgroupAction
InsString10 :
RecordID1 : 72057594047642483
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:05:13
DateDiffer : 22
RecordID : 72057594047642481
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:05:07
SiteCode : DTN
InsString1 : 19
InsString2 : Setup Windows and Configuration Manager
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... S registration enabled: false
Full DNS registration enabled: true
Permitted IP protocols:
Permitted TCP ports:
Permitted UDP ports:
Tcpip Netbios options: 0
Enable WINS: false
WINS server(s):
MAC address not specified for adapter 0. Apply
InsString6 : ing settings to MAC address 98:e7:f4:bd:3b:5f.
Adapter index: 0
Adapter name: Factory Network
Adapter '98:e7:f4:bd:3b:5f' requires reset
Acquiring write lock (this may take up to 120000 milliseconds)
Write lock acquired
Unbinding "ms_tcpip" from ada
InsString7 : pter "PCI\VEN_10EC&DEV_8168&SUBSYS_82A5103C&REV_15\01000000684CE00000"
NetAdapterBindUnbind exiting: 0x00000000
Acquiring write lock (this may take up to 120000 milliseconds)
Write lock acquired
Binding "ms_tcpip" to adapter "PCI\VEN_10EC&DEV_8168&SUB
InsString8 : SYS_82A5103C&REV_15\01000000684CE00000"
NetAdapterBindUnbind exiting: 0x00000000
OSDNetSettings finished: 0x00000000
Process completed with exit code 0
Successfully executed command lines, clearing _SMSTSRunOnFirstBoot.
Exiting with code 0x00000000
InsString9 : SMS_TaskSequence_SetupWindowsAndSMSAction
InsString10 :
RecordID1 : 72057594047642481
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:05:07
DateDiffer : 22
RecordID : 72057594047642480
SeverityName : Informational
Type : Milestone
MessageID : 11140
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : DFTE0525
Time : 10-3-2022 14:05:06
SiteCode : DTN
InsString1 : 19
InsString2 :
InsString3 :
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642480
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 10-3-2022 14:05:06
DateDiffer : 22
RecordID : 72057594047642467
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:04:33
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : NodeInstaller 4.0
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_c1ff9fac-5d40-4b66-a811-f
7eca3ea59bd
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642467
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:04:33
DateDiffer : 22
RecordID : 72057594047642466
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:04:27
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : Framework Security
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_a8ce03e9-4c81-4bf1-b13b-8
7a08dc76659
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642466
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:04:27
DateDiffer : 22
RecordID : 72057594047642462
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:03:57
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : COMPANYInstallTool
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_569f3599-5638-4844-be49-f
ccd68e138cf
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642462
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:03:57
DateDiffer : 22
RecordID : 72057594047642461
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : MININT-0VSRMKL
Time : 10-3-2022 14:03:50
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : TightVNC
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_c90ccbeb-ac6b-4768-b928-9
01b22b143c9
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047642461
AttributeID : 401
AttributeValue : DTN2002A
AttributeTime : 10-3-2022 14:03:50
DateDiffer : 22
And output for $html:
<h2 style='text-align: center;'><strong>At least one device was detected as starting the Task Sequence but there is an issue sorting the steps.</strong></h2>
Task sequence is now done but still showing:
$Query:
select smsgs.RecordID,
CASE smsgs.Severity
WHEN -1073741824 THEN 'Error'
WHEN 1073741824 THEN 'Informational'
WHEN -2147483648 THEN 'Warning'
ELSE 'Unknown'
END As 'SeverityName',
case smsgs.MessageType
WHEN 256 THEN 'Milestone'
WHEN 512 THEN 'Detail'
WHEN 768 THEN 'Audit'
WHEN 1024 THEN 'NT Event'
ELSE 'Unknown'
END AS 'Type',
smsgs.MessageID, smsgs.Severity, smsgs.MessageType, smsgs.ModuleName,modNames.MsgDLLName, smsgs.Component,
smsgs.MachineName, smsgs.Time, smsgs.SiteCode, smwis.InsString1,
smwis.InsString2, smwis.InsString3, smwis.InsString4, smwis.InsString5,
smwis.InsString6, smwis.InsString7, smwis.InsString8, smwis.InsString9,
smwis.InsString10, v_StatMsgAttributes.*, DATEDIFF(hour,dateadd(hh,1,smsgs.Time),GETDATE()) as DateDiffer
from v_StatusMessage smsgs
join v_StatMsgWithInsStrings smwis on smsgs.RecordID = smwis.RecordID
join v_StatMsgModuleNames modNames on smsgs.ModuleName = modNames.ModuleName
join v_StatMsgAttributes on v_StatMsgAttributes.RecordID = smwis.RecordID
where (smsgs.Component = 'Task Sequence Engine' or smsgs.Component = 'Task Sequence Action')
and v_StatMsgAttributes.AttributeID = 401
and (v_StatMsgAttributes.AttributeValue = 'DTN2002A' or v_StatMsgAttributes.AttributeValue = 'DTN2002F' or v_StatMsgAttributes.AttributeValue = 'DTN20031' or v_StatMsgAttributes.AttributeValue = 'DTN2002E' or v_StatMsgAttributes.AttributeValue = 'DTN20030')
and DATEDIFF(hour,smsgs.Time,GETDATE()) < 24
Order by smsgs.Time DESC
$StatusMessages:
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:39:12
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11143
Description : The task sequence execution engine successfully completed a task sequence.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:39:12
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11127
Description : The task sequence execution engine successfully completed the group (Setup Operating
System).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:39:12
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11127
Description : The task sequence execution engine successfully completed the group (Voetenwarmer set
screen).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:39:12
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (set res) in the group (Voetenw
armer set screen) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:39:12
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (Set external) in the group (Vo
etenwarmer set screen) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:39:12
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11124
Description : The task sequence execution engine started the group (Voetenwarmer set screen).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:39:12
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (Install Intel ME Driver(IB995A
F)) in the group (Setup Operating System) because the condition was evaluated to be f
alse.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:39:11
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (PenMount Universal Driver(AAEO
N)) in the group (Setup Operating System) because the condition was evaluated to be f
alse.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:39:11
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (Install Vmware Tools) in the g
roup (Setup Operating System) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:39:11
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Install MSMQ) i
n the group (Setup Operating System) with exit code 0
Action output: ... 㴽㴽㴽㴽㴽㴽㜽⸱┶㴽㴽㴽㴽‽††††††††⁝嬍㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㜽⸲┶㴽㴽㴽㴽㴽††††††††⁝嬍㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽
㴽㴽㜽⸳┷㴽㴽㴽㴽㴽†††††††�=======================86.7%================== ]
[===========================87.7%================== ]
[===========================88.7%=================== ]
[===========================89.7%==================== ]
[===========================90.7%==================== ]
[===========================91.7%===================== ]
[===========================92.7%===================== ]
[===========================94.0%====================== ]
[===========================95.3%======================= ]
[===========================96.5%======================= ]
[===========================97.7%======================== ]
[===========================99.0%========================= ].
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:39:02
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Install Prereq
x64) in the group (Setup Operating System) with exit code 0
Action output: ... ecution Manager to install software
Installing software for PackageID='DTN00020' ProgramID='Copy-PreReq' AdvertID='DTN200
2E' has started, jobID='{33BBB817-48AF-4DF5-80DC-C2E0BE53F7A2}'
Setting TSEnv variable 'SMSTSInstallSoftwareJobID_DTN00020_DTN2002E_Copy-PreReq'='{33
BBB817-48AF-4DF5-80DC-C2E0BE53F7A2}'
Waiting for installation job to complete..
CompleteExecution received
CompleteExecution processed
Received job completion notification from Execution Manager
Installation completed with exitcode 0x00000000
Install successful
Setting TSEnv variable 'SMSTSInstallSoftwareJobID_DTN00020_DTN2002E_Copy-PreReq'=''
GetExecRequestMgrInterface successful
Releasing job request, jobID='{33BBB817-48AF-4DF5-80DC-C2E0BE53F7A2}'
Releasing of Job Request successful
CompleteJob successful
ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN00020.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN00020 before releasi
ng
Released the resolved source C:\_SMSTaskSequence\Packages\DTN00020.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:38:24
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (Install RST) in the group (Set
up Operating System) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:38:24
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Install Applica
tion) in the group (Setup Operating System) with exit code 0
Action output: ... bt\1216594\repo\src\Framework\Core\CCMCore\util.cpp,4647)
CcmGetProfilerInstance(&g_spCcmProfiler), HRESULT=80004005 (X:\bt\1216594\repo\src\Fr
amework\Core\CCMCore\Logging.cpp,805)
Unable to load profiler: 0x80004005
LSGetInternetMode
LSGetInternetMode: In Intranet
LSGetHomeMPFromWMI
Current Assigned Management Point is DFSE0207.DOMAIN.COM with Versi
on 9068 and Capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSL" Vers
ion="1"/><Property Name="SSLState" Value="63"/></Capabilities>
Successfully connected to Management Point DFSE0207.DOMAIN.COM:80
Assigned site code has been resolved
Setting progress step for initialization
Setting total steps to 1
Succeeded loading resource DLL 'C:\WINDOWS\CCM\1033\TSRES.DLL'
Adding 6 installs to steps
Setting total steps to 7
Step 1 out of 7 complete
Step 2 out of 7 complete
Step 3 out of 7 complete
Step 4 out of 7 complete
Step 5 out of 7 complete
Step 6 out of 7 complete
Step 7 out of 7 complete.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:35:58
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11140
Description : The task sequence execution engine started execution of a task sequence.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:35:28
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11142
Description : The task sequence execution engine performed a system reboot initiated by the action
(Install Application) in the group (Setup Operating System).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:35:18
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Install Applica
tion) in the group (Setup Operating System) with exit code 0
Action output: ... (Application installed and reboot is pending )
App installation successful, reboot is required
Setting TSEnv variable 'SMSTSRebootRequested'='HD'
Setting TSEnv variable '_TSAppInstallStatus'='Success'
Setting TSEnv variable 'SMSTSInstallApplicationJobID__ScopeId_0E64DAC1-E50F-4749-9E34
-9DAFF6124011/Application_e4d97699-2435-46b8-9376-3ab630dd13b7'=''
Completed installation job.
Step 7 out of 7 complete
Sending success status message
Setting URL = https://DFSE0207.DOMAIN.COM, Ports = 80,443, CRL =
false
Setting Server Certificates.
Setting Authenticator.
::DecompressBuffer(65536)
Decompression (zlib) succeeded: original size 2344, uncompressed size 7732.
Setting client certificate context to http transport
Sending StatusMessage
Setting the authenticator.
CLibSMSMessageWinHttpTransport::Send: WinHttpOpenRequest - URL: DFSE0207.DOMAIN.
COM:443 CCM_POST /ccm_system_AltAuth/request
SSL, using authenticator in request.
Request was successful..
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:35:18
System : SCCMWIN10X86
Component : Task Sequence Action
Module : SMS Client
MessageID : 11902
Description : The task sequence successfully installed application FIS Middleware 3.0.1 V2(ScopeId_
0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_e4d97699-2435-46b8-9376-3ab630dd13b7
) for action (Install Application) in the group () with exit code 0.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:33:26
System : SCCMWIN10X86
Component : Task Sequence Action
Module : SMS Client
MessageID : 11902
Description : The task sequence successfully installed application PL2303(ScopeId_0E64DAC1-E50F-474
9-9E34-9DAFF6124011/Application_faf046fb-8a72-40c3-9586-fb170e1d7af1) for action (Ins
tall Application) in the group () with exit code 0.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:32:32
System : SCCMWIN10X86
Component : Task Sequence Action
Module : SMS Client
MessageID : 11902
Description : The task sequence successfully installed application NodeInstaller 4.0(ScopeId_0E64DA
C1-E50F-4749-9E34-9DAFF6124011/Application_c1ff9fac-5d40-4b66-a811-f7eca3ea59bd) for
action (Install Application) in the group () with exit code 0.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:32:24
System : SCCMWIN10X86
Component : Task Sequence Action
Module : SMS Client
MessageID : 11902
Description : The task sequence successfully installed application Framework Security(ScopeId_0E64D
AC1-E50F-4749-9E34-9DAFF6124011/Application_a8ce03e9-4c81-4bf1-b13b-87a08dc76659) for
action (Install Application) in the group () with exit code 0.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:31:49
System : SCCMWIN10X86
Component : Task Sequence Action
Module : SMS Client
MessageID : 11902
Description : The task sequence successfully installed application COMPANYInstallTool(ScopeId_0E64D
AC1-E50F-4749-9E34-9DAFF6124011/Application_569f3599-5638-4844-be49-fccd68e138cf) for
action (Install Application) in the group () with exit code 0.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:31:40
System : SCCMWIN10X86
Component : Task Sequence Action
Module : SMS Client
MessageID : 11902
Description : The task sequence successfully installed application TightVNC(ScopeId_0E64DAC1-E50F-4
749-9E34-9DAFF6124011/Application_c90ccbeb-ac6b-4768-b928-901b22b143c9) for action (I
nstall Application) in the group () with exit code 0.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:22:50
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (netsh winhttp r
eset proxy) in the group (Setup Operating System) with exit code 0
Action output: ================================ [ smsswd.exe ] ======================
==========
Running module version 5.0.9068.1000 from location 'C:\WINDOWS\CCM\smsswd.exe'
PackageID = ''
BaseVar = '', ContinueOnError=''
ProgramName is being logged ('OSDDoNotLogCommand' is not set to 'True')
ProgramName = 'netsh winhttp reset proxy'
SwdAction = '0001'
Will run Command Line under SYSTEM account
Set command line: Run command line
Working dir 'not set'
Executing command line: Run command line with options (0,4)
P.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:22:49
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11140
Description : The task sequence execution engine started execution of a task sequence.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:22:11
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11142
Description : The task sequence execution engine performed a system reboot initiated by the action
(Join Domain or Workgroup) in the group (Setup Operating System).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:22:01
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Join Domain or
Workgroup) in the group (Setup Operating System) with exit code 0
Action output: ==================[ OSDJoin.exe ]=================
Running osdjoin.exe
Running module version 5.0.9068.1000 from location 'C:\WINDOWS\CCM\osdjoin.exe'
Stripping LDAP prefix from OU
Current status = Workgroup, lpNameBuffer="COMPANY"
Joining domainDOMAIN.COM and OU CN=Computers,DC=OUR_OU,DC=DOMAIN,DC=COM
Attempting to join and create account with OU
Result= 0x000008b0
Attempting to join and create account, without OU
Result= 0x00000000
Successfully joined domain DOMAIN.COM
Finished with error code 0x00000000.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:21:56
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Setup Windows a
nd Configuration Manager) in the group (Setup Operating System) with exit code 0
Action output: ... S registration enabled: false
Full DNS registration enabled: true
Permitted IP protocols:
Permitted TCP ports:
Permitted UDP ports:
Tcpip Netbios options: 0
Enable WINS: false
WINS server(s):
MAC address not specified for adapter 0. Applying settings to MAC address 00:50:56:9
c:d9:89.
Adapter index: 0
Adapter name: Factory Network
Adapter '00:50:56:9c:d9:89' requires reset
Acquiring write lock (this may take up to 120000 milliseconds)
Write lock acquired
Unbinding "ms_tcpip" from adapter "PCI\VEN_8086&DEV_10D3&SUBSYS_07D015AD&REV_00\00505
6FFFF9CD98900"
NetAdapterBindUnbind exiting: 0x00000000
Acquiring write lock (this may take up to 120000 milliseconds)
Write lock acquired
Binding "ms_tcpip" to adapter "PCI\VEN_8086&DEV_10D3&SUBSYS_07D015AD&REV_00\005056FFF
F9CD98900"
NetAdapterBindUnbind exiting: 0x00000000
OSDNetSettings finished: 0x00000000
Process completed with exit code 0
Successfully executed command lines, clearing _SMSTSRunOnFirstBoot.
Exiting with code 0x00000000.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:21:53
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11140
Description : The task sequence execution engine started execution of a task sequence.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:16:13
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11142
Description : The task sequence execution engine performed a system reboot initiated by the action
(Setup Windows and Configuration Manager) in the group (Setup Operating System).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:16:03
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Setup Windows a
nd Configuration Manager) in the group (Setup Operating System) with exit code 0
Action output: ... ount 1 for the source C:\_SMSTaskSequence\Packages\DTN00003 before
releasing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN00003
Exiting ConfigureEx: 0x00000000
Process completed with exit code 0
Installing hook to 'C:\WINDOWS'
Command line for extension .EXE is "%1" %*
Set command line: "X:\sms\bin\x64\OSDSETUPHOOK.EXE" "/install:C:\WINDOWS" /version:10
.0
Executing command line: "X:\sms\bin\x64\OSDSETUPHOOK.EXE" "/install:C:\WINDOWS" /vers
ion:10.0 with options (0, 0)
InstallingOSD setup hook
Setup hook install completed successfully
Process completed with exit code 0
OfflineRegistry::Init("C:\WINDOWS")
Loading offline registry hive "C:\WINDOWS\system32\config\software" into HKLM\Offline
Registry1
Loading offline registry hive "C:\WINDOWS\system32\config\system" into HKLM\OfflineRe
gistry2
CurrentControlSet is mapped to ControlSet001
SMS Client is not installed
Unloading offline SOFTWARE registry hive
Unloading offline SYSTEM registry hive
Exiting with code 0x00000000.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:15:14
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11124
Description : The task sequence execution engine started the group (Setup Operating System).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:15:14
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11127
Description : The task sequence execution engine successfully completed the group (Install Operatin
g System).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:15:14
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11127
Description : The task sequence execution engine successfully completed the group (Device Drivers).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:15:14
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (IB995AF) in the group (Device
Drivers) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:15:14
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (HP Mini Drivers) in the group
(Device Drivers) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:15:14
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (Voetenwarmer Drivers) in the g
roup (Device Drivers) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:15:14
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (Ebox Drivers) in the group (De
vice Drivers) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:15:14
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (Beckhoff) in the group (Device
Drivers) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:15:14
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (AAEON Drivers) in the group (D
evice Drivers) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:15:14
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11124
Description : The task sequence execution engine started the group (Device Drivers).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:15:13
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Apply Device Dr
ivers) in the group (Install Operating System) with exit code 0
Action output: ... a suitable device driver for device 'EISA programmable interrupt
controller'.
Unsuccessful in finding a suitable device driver for device 'NDIS Virtual Network Ada
pter Enumerator'.
Unsuccessful in finding a suitable device driver for device 'CPU toPCI Bridge'.
Unsuccessful in finding a suitable device driver for device 'Video Controller (VGA Co
mpatible)'.
Unsuccessful in finding a suitable device driver for device 'USB Composite Device'.
Unsuccessful in finding a suitable device driver for device 'System timer'.
Unsuccessful in finding a suitable device driver for device 'Microsoft System Managem
ent BIOS Driver'.
Unsuccessful in finding a suitable device driver for device 'PCI-to-PCI Bridge'.
Unsuccessful in finding a suitable device driverfor device 'Plug and Play Software De
vice Enumerator'.
Unsuccessful in finding a suitable device driver for device 'PS/2 Compatible Mouse'.
Unsuccessful in finding a suitable device driver for device 'Generic Bus'.
Exiting with return code 0x00000000.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:14:58
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Apply Network S
ettings) in the group (Install Operating System) with exit code 0
Action output: ... Joining workgroup: COMPANY
Getting namespace "Microsoft-Windows-UnattendedJoin" for architecture "amd64"
DNS domain:
DNS domain search order:
IP filter sec enabled: false
Configuring 1 of 1 network adapters
Configuring DHCP
DNS suffix:
DNSserver search order:
DNS registration enabled: false
Full DNS registration enabled: true
Permitted IP protocols:
Permitted TCP ports:
Permitted UDP ports:
Tcpip Netbios options: 0
Enable WINS: false
WINS server(s):
MAC address not specifiedfor adapter 0. Applying settings to MAC address 00:50:56:9c
:d9:89.
Adapter index: 0
Adapter name: Factory Network
Getting namespace "Microsoft-Windows-TCPIP" for architecture "amd64"
Added list item with key value '00-50-56-9c-d9-89'
Writing configuration information to C:\WINDOWS\panther\unattend\unattend.xml
Successfully saved configuration information to C:\WINDOWS\panther\unattend\unattend.
xml
Configuring "OSDNetSettings.exe finalize" to run on first boot
OSDNetSettings finished: 0x00000000.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:14:58
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Apply Windows S
ettings) in the group (Install Operating System) with exit code 0
Action output: ... ile.
The OSDWindowsSettingsSystemLocale variable is not set in the environment. Not setti
ng the system locale in the unattend answer file.
The OSDWindowsSettingsUserLocale variable is not set in the environment. Not setting
the user locale in theunattend answer file.
The OSDWindowsSettingsUILanguage variable is not set in the environment. Not setting
the UI language in the unattend answer file.
The OSDWindowsSettingsUILanguageFallback variable is not set in the environment. Not
setting the UIlanguage fallback in the unattend answer file.
Registered Organization: DFSE0207
Time Zone: W. Europe Standard Time
Time zone: W. Europe Standard Time
The OSDProductKey variable is not set in the environment. Not setting the product ke
y in the unattend answer file.
Setting local admin password.
Writing configuration information to C:\WINDOWS\panther\unattend\unattend.xml
Successfully saved configuration information to C:\WINDOWS\panther\unattend\unattend.
xml
Exiting with return code 0x00000000.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:14:57
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Apply Operating
System) in the group (Install Operating System) with exit code 0
Action output: ... 003E.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN0003E before releasi
ng
Released the resolved source C:\_SMSTaskSequence\Packages\DTN0003E
Setting %SystemRoot% to "C:\WINDOWS"
Loading existing answer file "C:\WINDOWS\panther\unattend\unattend.xml"
Getting namespace "Microsoft-Windows-Deployment" for architecture "amd64"
Getting namespace "Microsoft-Windows-Shell-Setup" for architecture "amd64"
Getting namespace "Microsoft-Windows-International-Core" for architecture "amd64"
Writing configuration information to C:\WINDOWS\panther\unattend\unattend.xml
Successfully saved configuration information to C:\WINDOWS\panther\unattend\unattend.
xml
Image installation completed successfully.
Closing image file C:\_SMSTaskSequence\Packages\DTN000AB\win10x64wk2208.wim
ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN000AB.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN000AB before releasi
ng
Released the resolved source C:\_SMSTaskSequence\Packages\DTN000AB.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:02:51
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11130
Description : The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in th
e group (Install Operating System) because the condition was evaluated to be false.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:02:51
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Partition Disk
0 - BIOS) in the group (Install Operating System) with exit code 0
Action output: ... drive: C:
Skipping non-local logical drive: F:
Adding logical drive: S:
Skipping non-local logical drive: X:
Formatting drive C: with NTFS filesystem, method quick
Creating instance of service loader
Loading service
Waiting for service to initialize
Querying for software providers
Found a VDS software provider
Querying for IVdsSwProvider
Querying for packs
Found a VDS pack
Querying for IVdsPack
Querying for volumes
Found a VDS software provider
Querying for IVdsSwProvider
Querying forpacks
Found a VDS pack
Querying for IVdsPack
Querying for volumes
Found a VDS volume
Querying for IVdsVolumeMF
Querying for access paths
Found a VDS pack
Querying for IVdsPack
Querying for volumes
Found a VDS volume
Querying for IVdsVolumeMFQuerying for access paths
Found a VDS volume
Querying for IVdsVolumeMF
Querying for access paths
Found a volume with access path 'C:\'
Querying for IVdsVolume
Querying for IVdsVolumeMF
Partition: 3 Recovery
OSDDiskPart.exe completed successfully.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:02:37
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11140
Description : The task sequence execution engine started execution of a task sequence.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:00:54
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Restart in Wind
ows PE) in the group (Install Operating System) with exit code 0
Action output: ========================= [ smsboot.exe ] =========================
Running module version 5.0.9068.1000 from location 'C:\WINDOWS\CCM\smsboot.exe'
Command line: '"smsboot.exe" /target:WinPE'
SMSTSRebootDelay=10
SMSTSRebootMessage=A new Microsoft Windows operating system is being installed. The
computer must reboot to continue.
SMSTSRebootRequested=WinPE.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:00:54
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11134
Description : The task sequence execution engine successfully completed the action (Check if DHCP e
nabled) in the group (Install Operating System) with exit code 0
Action output: ================================ [ smsswd.exe ] ======================
==========
Running module version 5.0.9068.1000 from location 'C:\WINDOWS\CCM\smsswd.exe'
PackageID = ''
BaseVar = '', ContinueOnError=''
ProgramName is being logged ('OSDDoNotLogCommand' is not set to 'True')
ProgramName = 'powershell.exe -executionpolicy bypass -file "\\DFSE0207\Software$\Pow
erShell Scripts\GetDHCP.PS1"'
SwdAction = '0001'
Will run Command Line under SYSTEM account
Command line for extension .exe is "%1" %*Set command line: Run command line
Working dir 'not set'
Executing command line: Run command line with options (0, 4)
Process completed with exit code 0
Command line is being logged ('OSDDoNotLogCommand' is not set to 'True')
Command line powershell.exe -executionpolicy bypass -file "\\DFSE0207\Software$\Power
Shell Scripts\GetDHCP.PS1" returned 0.
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:00:53
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11124
Description : The task sequence execution engine started the group (Install Operating System).
Severity : Informational
Type : Milestone
SiteCode : DTN
Date / Time : 11-3-2022 13:00:52
System : SCCMWIN10X86
Component : Task Sequence Engine
Module : SMS Client
MessageID : 11140
Description : The task sequence execution engine started execution of a task sequence.
$Messages:
Count Name Group
----- ---- -----
51 SCCMWIN10X86 {@{Severity=Informational; Type=Milestone; SiteCode=DTN; Date / ...
$Table:
RecordID : 72057594047649150
SeverityName : Informational
Type : Milestone
MessageID : 11143
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:39:12
SiteCode : DTN
InsString1 : 33
InsString2 :
InsString3 :
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649150
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:39:12
DateDiffer : 1
RecordID : 72057594047649149
SeverityName : Informational
Type : Milestone
MessageID : 11127
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:39:12
SiteCode : DTN
InsString1 : 33
InsString2 :
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649149
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:39:12
DateDiffer : 1
RecordID : 72057594047649148
SeverityName : Informational
Type : Milestone
MessageID : 11127
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:39:12
SiteCode : DTN
InsString1 : 32
InsString2 :
InsString3 : Voetenwarmer set screen
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649148
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:39:12
DateDiffer : 1
RecordID : 72057594047649147
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:39:12
SiteCode : DTN
InsString1 : 31
InsString2 : set res
InsString3 : Voetenwarmer set screen
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649147
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:39:12
DateDiffer : 1
RecordID : 72057594047649146
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:39:12
SiteCode : DTN
InsString1 : 30
InsString2 : Set external
InsString3 : Voetenwarmer set screen
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649146
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:39:12
DateDiffer : 1
RecordID : 72057594047649145
SeverityName : Informational
Type : Milestone
MessageID : 11124
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:39:12
SiteCode : DTN
InsString1 : 29
InsString2 :
InsString3 : Voetenwarmer set screen
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649145
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:39:12
DateDiffer : 1
RecordID : 72057594047649144
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:39:12
SiteCode : DTN
InsString1 : 28
InsString2 : Install Intel ME Driver(IB995AF)
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649144
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:39:12
DateDiffer : 1
RecordID : 72057594047649143
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:39:11
SiteCode : DTN
InsString1 : 27
InsString2 : PenMount Universal Driver(AAEON)
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649143
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:39:11
DateDiffer : 1
RecordID : 72057594047649142
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:39:11
SiteCode : DTN
InsString1 : 26
InsString2 : Install Vmware Tools
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649142
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:39:11
DateDiffer : 1
RecordID : 72057594047649141
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:39:11
SiteCode : DTN
InsString1 : 25
InsString2 : Install MSMQ
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... 㴽㴽㴽㴽㴽㴽㜽⸱┶㴽㴽㴽㴽‽††††††††⁝嬍㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㜽⸲┶㴽㴽㴽㴽㴽††††††††⁝嬍㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㜽⸳┷㴽㴽㴽㴽㴽††
†††††�
InsString6 : =======================86.7%================== ]
[===========================87.7%================== ]
[===========================88.7%=================== ]
[===========================89.7%==================== ]
[===
InsString7 : ========================90.7%==================== ]
[===========================91.7%===================== ]
[===========================92.7%===================== ]
[===========================94.0%====================== ]
[==
InsString8 : =========================95.3%======================= ]
[===========================96.5%======================= ]
[===========================97.7%======================== ]
[===========================99.0%========================= ]
InsString9 : SMS_TaskSequence_RunCommandLineAction
InsString10 :
RecordID1 : 72057594047649141
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:39:11
DateDiffer : 1
RecordID : 72057594047649140
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:39:02
SiteCode : DTN
InsString1 : 24
InsString2 : Install Prereq x64
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... ecution Manager to install software
Installing software for PackageID='DTN00020' ProgramID='Copy-PreReq' AdvertID='DTN
2002E' has started, jobID='{33BBB817-48AF-4DF5-80DC-C2E0BE53F7A2}'
Setting TSEnv variable 'SMSTSInstallSoftwareJobID_DTN00020_DTN2
InsString6 : 002E_Copy-PreReq'='{33BBB817-48AF-4DF5-80DC-C2E0BE53F7A2}'
Waiting for installation job to complete..
CompleteExecution received
CompleteExecution processed
Received job completion notification from Execution Manager
Installation completed with exit
InsString7 : code 0x00000000
Install successful
Setting TSEnv variable 'SMSTSInstallSoftwareJobID_DTN00020_DTN2002E_Copy-PreReq'='
'
GetExecRequestMgrInterface successful
Releasing job request, jobID='{33BBB817-48AF-4DF5-80DC-C2E0BE53F7A2}'
Releasing of Job Reques
InsString8 : t successful
CompleteJob successful
ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN00020.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN00020 before rele
asing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN00020
InsString9 : SMS_TaskSequence_InstallSoftwareAction
InsString10 :
RecordID1 : 72057594047649140
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:39:02
DateDiffer : 1
RecordID : 72057594047649139
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:38:24
SiteCode : DTN
InsString1 : 23
InsString2 : Install RST
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649139
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:38:24
DateDiffer : 1
RecordID : 72057594047649138
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:38:24
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... bt\1216594\repo\src\Framework\Core\CCMCore\util.cpp,4647)
CcmGetProfilerInstance(&g_spCcmProfiler), HRESULT=80004005 (X:\bt\1216594\repo\src
\Framework\Core\CCMCore\Logging.cpp,805)
Unable to load profiler: 0x80004005
LSGetInternetMode
LSGetInterne
InsString6 : tMode: In Intranet
LSGetHomeMPFromWMI
Current Assigned Management Point is DFSE0207.DOMAIN.COM with Ve
rsion 9068 and Capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSL
" Version="1"/><Property Name="SSLState" Value="63"
InsString7 : /></Capabilities>
Successfully connected to Management Point DFSE0207.DOMAIN.COM:8
0
Assigned site code has been resolved
Setting progress step for initialization
Setting total steps to 1
Succeeded loading resource DLL 'C:\WINDOWS\CC
InsString8 : M\1033\TSRES.DLL'
Adding 6 installs to steps
Setting total steps to 7
Step 1 out of 7 complete
Step 2 out of 7 complete
Step 3 out of 7 complete
Step 4 out of 7 complete
Step 5 out of 7 complete
Step 6 out of 7 complete
Step 7 out of 7 complete
InsString9 : SMS_TaskSequence_InstallApplicationAction
InsString10 :
RecordID1 : 72057594047649138
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:38:24
DateDiffer : 1
RecordID : 72057594047649137
SeverityName : Informational
Type : Milestone
MessageID : 11140
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:35:58
SiteCode : DTN
InsString1 : 22
InsString2 :
InsString3 :
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649137
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:35:58
DateDiffer : 1
RecordID : 72057594047649136
SeverityName : Informational
Type : Milestone
MessageID : 11142
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:35:28
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649136
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:35:28
DateDiffer : 1
RecordID : 72057594047649135
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:35:18
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... (Application installed and reboot is pending )
App installation successful, reboot is required
Setting TSEnv variable 'SMSTSRebootRequested'='HD'
Setting TSEnv variable '_TSAppInstallStatus'='Success'
Setting TSEnv variable 'SMSTSInstallApplicati
InsString6 : onJobID__ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_e4d97699-2435-46
b8-9376-3ab630dd13b7'=''
Completed installation job.
Step 7 out of 7 complete
Sending success status message
Setting URL = https://DFSE0207.DOMAIN.C
InsString7 : OM, Ports = 80,443, CRL = false
Setting Server Certificates.
Setting Authenticator.
::DecompressBuffer(65536)
Decompression (zlib) succeeded: original size 2344, uncompressed size 7732.
Setting client certificate context to http transport
Send
InsString8 : ing StatusMessage
Setting the authenticator.
CLibSMSMessageWinHttpTransport::Send: WinHttpOpenRequest - URL: DFSE0207.DOM
AIN.COM:443 CCM_POST /ccm_system_AltAuth/request
SSL, using authenticator in request.
Request was successful.
InsString9 : SMS_TaskSequence_InstallApplicationAction
InsString10 :
RecordID1 : 72057594047649135
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:35:18
DateDiffer : 1
RecordID : 72057594047649134
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:35:18
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : FIS Middleware 3.0.1 V2
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_e4d97699-2435-46b8-9376-3
ab630dd13b7
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649134
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:35:18
DateDiffer : 1
RecordID : 72057594047649120
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:33:26
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : PL2303
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_faf046fb-8a72-40c3-9586-f
b170e1d7af1
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649120
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:33:26
DateDiffer : 1
RecordID : 72057594047649119
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:32:32
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : NodeInstaller 4.0
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_c1ff9fac-5d40-4b66-a811-f
7eca3ea59bd
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649119
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:32:32
DateDiffer : 1
RecordID : 72057594047649118
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:32:24
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : Framework Security
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_a8ce03e9-4c81-4bf1-b13b-8
7a08dc76659
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649118
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:32:24
DateDiffer : 1
RecordID : 72057594047649117
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:31:49
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : COMPANYInstallTool
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_569f3599-5638-4844-be49-f
ccd68e138cf
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649117
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:31:49
DateDiffer : 1
RecordID : 72057594047649116
SeverityName : Informational
Type : Milestone
MessageID : 11902
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Action
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:31:40
SiteCode : DTN
InsString1 : 22
InsString2 : Install Application
InsString3 :
InsString4 : 0
InsString5 : TightVNC
InsString6 : ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_c90ccbeb-ac6b-4768-b928-9
01b22b143c9
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649116
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:31:40
DateDiffer : 1
RecordID : 72057594047649067
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:22:50
SiteCode : DTN
InsString1 : 21
InsString2 : netsh winhttp reset proxy
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ================================ [ smsswd.exe ] ================================
Running module version 5.0.9068.1000 from location 'C:\WINDOWS\CCM\smsswd.exe'
PackageID = ''
BaseVar = '', ContinueOnError=''
ProgramName is being logged ('OSDDoNotLog
InsString6 : Command' is not set to 'True')
ProgramName = 'netsh winhttp reset proxy'
SwdAction = '0001'
Will run Command Line under SYSTEM account
Set command line: Run command line
Working dir 'not set'
Executing command line: Run command line with options (0,
InsString7 : 4)
P
InsString8 :
InsString9 : SMS_TaskSequence_RunCommandLineAction
InsString10 :
RecordID1 : 72057594047649067
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:22:50
DateDiffer : 1
RecordID : 72057594047649066
SeverityName : Informational
Type : Milestone
MessageID : 11140
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:22:49
SiteCode : DTN
InsString1 : 21
InsString2 :
InsString3 :
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649066
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:22:49
DateDiffer : 1
RecordID : 72057594047649065
SeverityName : Informational
Type : Milestone
MessageID : 11142
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:22:11
SiteCode : DTN
InsString1 : 20
InsString2 : Join Domain or Workgroup
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649065
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:22:11
DateDiffer : 1
RecordID : 72057594047649064
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:22:01
SiteCode : DTN
InsString1 : 20
InsString2 : Join Domain or Workgroup
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ==================[ OSDJoin.exe ]=================
Running osdjoin.exe
Running module version 5.0.9068.1000 from location 'C:\WINDOWS\CCM\osdjoin.exe'
Stripping LDAP prefix from OU
Current status = Workgroup, lpNameBuffer="COMPANY"
Joining domain
InsString6 : DOMAIN.COM and OU CN=Computers,DC=OUR_OU,DC=DOM
AIN,DC=COM
Attempting to join and create account with OU
Result= 0x000008b0
Attempting to join and create account, without OU
Result= 0x00000000
Successfully joined do
InsString7 : main DOMAIN.COM
Finished with error code 0x00000000
InsString8 :
InsString9 : SMS_TaskSequence_JoinDomainWorkgroupAction
InsString10 :
RecordID1 : 72057594047649064
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:22:01
DateDiffer : 1
RecordID : 72057594047649054
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:21:56
SiteCode : DTN
InsString1 : 19
InsString2 : Setup Windows and Configuration Manager
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... S registration enabled: false
Full DNS registration enabled: true
Permitted IP protocols:
Permitted TCP ports:
Permitted UDP ports:
Tcpip Netbios options: 0
Enable WINS: false
WINS server(s):
MAC address not specified for adapter 0. Apply
InsString6 : ing settings to MAC address 00:50:56:9c:d9:89.
Adapter index: 0
Adapter name: Factory Network
Adapter '00:50:56:9c:d9:89' requires reset
Acquiring write lock (this may take up to 120000 milliseconds)
Write lock acquired
Unbinding "ms_tcpip" from ada
InsString7 : pter "PCI\VEN_8086&DEV_10D3&SUBSYS_07D015AD&REV_00\005056FFFF9CD98900"
NetAdapterBindUnbind exiting: 0x00000000
Acquiring write lock (this may take up to 120000 milliseconds)
Write lock acquired
Binding "ms_tcpip" to adapter "PCI\VEN_8086&DEV_10D3&SUB
InsString8 : SYS_07D015AD&REV_00\005056FFFF9CD98900"
NetAdapterBindUnbind exiting: 0x00000000
OSDNetSettings finished: 0x00000000
Process completed with exit code 0
Successfully executed command lines, clearing _SMSTSRunOnFirstBoot.
Exiting with code 0x00000000
InsString9 : SMS_TaskSequence_SetupWindowsAndSMSAction
InsString10 :
RecordID1 : 72057594047649054
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:21:56
DateDiffer : 1
RecordID : 72057594047649053
SeverityName : Informational
Type : Milestone
MessageID : 11140
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:21:53
SiteCode : DTN
InsString1 : 19
InsString2 :
InsString3 :
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649053
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:21:53
DateDiffer : 1
RecordID : 72057594047649020
SeverityName : Informational
Type : Milestone
MessageID : 11142
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:16:13
SiteCode : DTN
InsString1 : 19
InsString2 : Setup Windows and Configuration Manager
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649020
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:16:13
DateDiffer : 1
RecordID : 72057594047649019
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:16:03
SiteCode : DTN
InsString1 : 19
InsString2 : Setup Windows and Configuration Manager
InsString3 : Setup Operating System
InsString4 : 0
InsString5 : ... ount 1 for the source C:\_SMSTaskSequence\Packages\DTN00003 before releasing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN00003
Exiting ConfigureEx: 0x00000000
Process completed with exit code 0
Installing hook to 'C:\WINDOWS'
Com
InsString6 : mand line for extension .EXE is "%1" %*
Set command line: "X:\sms\bin\x64\OSDSETUPHOOK.EXE" "/install:C:\WINDOWS" /version
:10.0
Executing command line: "X:\sms\bin\x64\OSDSETUPHOOK.EXE" "/install:C:\WINDOWS" /v
ersion:10.0 with options (0, 0)
Installing
InsString7 : OSD setup hook
Setup hook install completed successfully
Process completed with exit code 0
OfflineRegistry::Init("C:\WINDOWS")
Loading offline registry hive "C:\WINDOWS\system32\config\software" into HKLM\Offl
ineRegistry1
Loading offline registry h
InsString8 : ive "C:\WINDOWS\system32\config\system" into HKLM\OfflineRegistry2
CurrentControlSet is mapped to ControlSet001
SMS Client is not installed
Unloading offline SOFTWARE registry hive
Unloading offline SYSTEM registry hive
Exiting with code 0x00000000
InsString9 : SMS_TaskSequence_SetupWindowsAndSMSAction
InsString10 :
RecordID1 : 72057594047649019
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:16:03
DateDiffer : 1
RecordID : 72057594047649018
SeverityName : Informational
Type : Milestone
MessageID : 11124
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 18
InsString2 :
InsString3 : Setup Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649018
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 1
RecordID : 72057594047649017
SeverityName : Informational
Type : Milestone
MessageID : 11127
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 17
InsString2 :
InsString3 : Install Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649017
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 1
RecordID : 72057594047649016
SeverityName : Informational
Type : Milestone
MessageID : 11127
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 16
InsString2 :
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649016
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 1
RecordID : 72057594047649015
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 15
InsString2 : IB995AF
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649015
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 1
RecordID : 72057594047649014
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 14
InsString2 : HP Mini Drivers
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649014
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 1
RecordID : 72057594047649013
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 13
InsString2 : Voetenwarmer Drivers
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649013
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 1
RecordID : 72057594047649012
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 12
InsString2 : Ebox Drivers
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649012
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 1
RecordID : 72057594047649011
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 11
InsString2 : Beckhoff
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649011
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 1
RecordID : 72057594047649010
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 10
InsString2 : AAEON Drivers
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649010
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 1
RecordID : 72057594047649009
SeverityName : Informational
Type : Milestone
MessageID : 11124
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:14
SiteCode : DTN
InsString1 : 9
InsString2 :
InsString3 : Device Drivers
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047649009
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:14
DateDiffer : 1
RecordID : 72057594047649008
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:15:13
SiteCode : DTN
InsString1 : 8
InsString2 : Apply Device Drivers
InsString3 : Install Operating System
InsString4 : 0
InsString5 : ... a suitable device driver for device 'EISA programmable interrupt controller'.
Unsuccessful in finding a suitable device driver for device 'NDIS Virtual Network
Adapter Enumerator'.
Unsuccessful in finding a suitable device driver for device 'CPU to
InsString6 : PCI Bridge'.
Unsuccessful in finding a suitable device driver for device 'Video Controller (VGA
Compatible)'.
Unsuccessful in finding a suitable device driver for device 'USB Composite Device'
.
Unsuccessful in finding a suitable device driver for devi
InsString7 : ce 'System timer'.
Unsuccessful in finding a suitable device driver for device 'Microsoft System Mana
gement BIOS Driver'.
Unsuccessful in finding a suitable device driver for device 'PCI-to-PCI Bridge'.
Unsuccessful in finding a suitable device driver
InsString8 : for device 'Plug and Play Software Device Enumerator'.
Unsuccessful in finding a suitable device driver for device 'PS/2 Compatible Mouse
'.
Unsuccessful in finding a suitable device driver for device 'Generic Bus'.
Exiting with return code 0x00000000
InsString9 : SMS_TaskSequence_AutoApplyAction
InsString10 :
RecordID1 : 72057594047649008
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:15:13
DateDiffer : 1
RecordID : 72057594047648995
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:14:58
SiteCode : DTN
InsString1 : 7
InsString2 : Apply Network Settings
InsString3 : Install Operating System
InsString4 : 0
InsString5 : ... Joining workgroup: COMPANY
Getting namespace "Microsoft-Windows-UnattendedJoin" for architecture "amd64"
DNS domain:
DNS domain search order:
IP filter sec enabled: false
Configuring 1 of 1 network adapters
Configuring DHCP
DNS suffix:
DNS
InsString6 : server search order:
DNS registration enabled: false
Full DNS registration enabled: true
Permitted IP protocols:
Permitted TCP ports:
Permitted UDP ports:
Tcpip Netbios options: 0
Enable WINS: false
WINS server(s):
MAC address not specified
InsString7 : for adapter 0. Applying settings to MAC address 00:50:56:9c:d9:89.
Adapter index: 0
Adapter name: Factory Network
Getting namespace "Microsoft-Windows-TCPIP" for architecture "amd64"
Added list item with key value '00-50-56-9c-d9-89'
Writing configu
InsString8 : ration information to C:\WINDOWS\panther\unattend\unattend.xml
Successfully saved configuration information to C:\WINDOWS\panther\unattend\unatte
nd.xml
Configuring "OSDNetSettings.exe finalize" to run on first boot
OSDNetSettings finished: 0x00000000
InsString9 : SMS_TaskSequence_ApplyNetworkSettingsAction
InsString10 :
RecordID1 : 72057594047648995
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:14:58
DateDiffer : 1
RecordID : 72057594047648994
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:14:58
SiteCode : DTN
InsString1 : 6
InsString2 : Apply Windows Settings
InsString3 : Install Operating System
InsString4 : 0
InsString5 : ... ile.
The OSDWindowsSettingsSystemLocale variable is not set in the environment. Not se
tting the system locale in the unattend answer file.
The OSDWindowsSettingsUserLocale variable is not set in the environment. Not sett
ing the user locale in the
InsString6 : unattend answer file.
The OSDWindowsSettingsUILanguage variable is not set in the environment. Not sett
ing the UI language in the unattend answer file.
The OSDWindowsSettingsUILanguageFallback variable is not set in the environment.
Not setting the UI
InsString7 : language fallback in the unattend answer file.
Registered Organization: DFSE0207
Time Zone: W. Europe Standard Time
Time zone: W. Europe Standard Time
The OSDProductKey variable is not set in the environment. Not setting the product
key in the unatt
InsString8 : end answer file.
Setting local admin password.
Writing configuration information to C:\WINDOWS\panther\unattend\unattend.xml
Successfully saved configuration information to C:\WINDOWS\panther\unattend\unatte
nd.xml
Exiting with return code 0x00000000
InsString9 : SMS_TaskSequence_ApplyWindowsSettingsAction
InsString10 :
RecordID1 : 72057594047648994
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:14:58
DateDiffer : 1
RecordID : 72057594047648993
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:14:57
SiteCode : DTN
InsString1 : 5
InsString2 : Apply Operating System
InsString3 : Install Operating System
InsString4 : 0
InsString5 : ... 003E.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN0003E before rele
asing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN0003E
Setting %SystemRoot% to "C:\WINDOWS"
Loading existing answer file "C:\WINDOWS\panther\
InsString6 : unattend\unattend.xml"
Getting namespace "Microsoft-Windows-Deployment" for architecture "amd64"
Getting namespace "Microsoft-Windows-Shell-Setup" for architecture "amd64"
Getting namespace "Microsoft-Windows-International-Core" for architecture "amd64
InsString7 : "
Writing configuration information to C:\WINDOWS\panther\unattend\unattend.xml
Successfully saved configuration information to C:\WINDOWS\panther\unattend\unatte
nd.xml
Image installation completed successfully.
Closing image file C:\_SMSTaskSequence\
InsString8 : Packages\DTN000AB\win10x64wk2208.wim
ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN000AB.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN000AB before rele
asing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN000AB
InsString9 : SMS_TaskSequence_ApplyOperatingSystemAction
InsString10 :
RecordID1 : 72057594047648993
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:14:57
DateDiffer : 1
RecordID : 72057594047648901
SeverityName : Informational
Type : Milestone
MessageID : 11130
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:02:51
SiteCode : DTN
InsString1 : 4
InsString2 : Partition Disk 0 - UEFI
InsString3 : Install Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047648901
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:02:51
DateDiffer : 1
RecordID : 72057594047648900
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:02:51
SiteCode : DTN
InsString1 : 3
InsString2 : Partition Disk 0 - BIOS
InsString3 : Install Operating System
InsString4 : 0
InsString5 : ... drive: C:
Skipping non-local logical drive: F:
Adding logical drive: S:
Skipping non-local logical drive: X:
Formatting drive C: with NTFS filesystem, method quick
Creating instance of service loader
Loading service
Waiting for service to initi
InsString6 : alize
Querying for software providers
Found a VDS software provider
Querying for IVdsSwProvider
Querying for packs
Found a VDS pack
Querying for IVdsPack
Querying for volumes
Found a VDS software provider
Querying for IVdsSwProvider
Querying for
InsString7 : packs
Found a VDS pack
Querying for IVdsPack
Querying for volumes
Found a VDS volume
Querying for IVdsVolumeMF
Querying for access paths
Found a VDS pack
Querying for IVdsPack
Querying for volumes
Found a VDS volume
Querying for IVdsVolumeMF
InsString8 : Querying for access paths
Found a VDS volume
Querying for IVdsVolumeMF
Querying for access paths
Found a volume with access path 'C:\'
Querying for IVdsVolume
Querying for IVdsVolumeMF
Partition: 3 Recovery
OSDDiskPart.exe completed successfully
InsString9 : SMS_TaskSequence_PartitionDiskAction
InsString10 :
RecordID1 : 72057594047648900
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:02:51
DateDiffer : 1
RecordID : 72057594047648899
SeverityName : Informational
Type : Milestone
MessageID : 11140
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:02:37
SiteCode : DTN
InsString1 : 3
InsString2 :
InsString3 :
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047648899
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:02:37
DateDiffer : 1
RecordID : 72057594047648897
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:00:54
SiteCode : DTN
InsString1 : 2
InsString2 : Restart in Windows PE
InsString3 : Install Operating System
InsString4 : 0
InsString5 : ========================= [ smsboot.exe ] =========================
Running module version 5.0.9068.1000 from location 'C:\WINDOWS\CCM\smsboot.exe'
Command line: '"smsboot.exe" /target:WinPE'
SMSTSRebootDelay=10
SMSTSRebootMessage=A new Microsoft Wind
InsString6 : ows operating system is being installed. The computer must reboot to continue.
SMSTSRebootRequested=WinPE
InsString7 :
InsString8 :
InsString9 : SMS_TaskSequence_RebootAction
InsString10 :
RecordID1 : 72057594047648897
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:00:54
DateDiffer : 1
RecordID : 72057594047648896
SeverityName : Informational
Type : Milestone
MessageID : 11134
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:00:54
SiteCode : DTN
InsString1 : 1
InsString2 : Check if DHCP enabled
InsString3 : Install Operating System
InsString4 : 0
InsString5 : ================================ [ smsswd.exe ] ================================
Running module version 5.0.9068.1000 from location 'C:\WINDOWS\CCM\smsswd.exe'
PackageID = ''
BaseVar = '', ContinueOnError=''
ProgramName is being logged ('OSDDoNotLog
InsString6 : Command' is not set to 'True')
ProgramName = 'powershell.exe -executionpolicy bypass -file "\\DFSE0207\Software$\
PowerShell Scripts\GetDHCP.PS1"'
SwdAction = '0001'
Will run Command Line under SYSTEM account
Command line for extension .exe is "%1" %*
InsString7 : Set command line: Run command line
Working dir 'not set'
Executing command line: Run command line with options (0, 4)
Process completed with exit code 0
Command line is being logged ('OSDDoNotLogCommand' is not set to 'True')
Command line powershell
InsString8 : .exe -executionpolicy bypass -file "\\DFSE0207\Software$\PowerShell Scripts\GetDHC
P.PS1" returned 0
InsString9 : SMS_TaskSequence_RunCommandLineAction
InsString10 :
RecordID1 : 72057594047648896
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:00:54
DateDiffer : 1
RecordID : 72057594047648895
SeverityName : Informational
Type : Milestone
MessageID : 11124
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:00:53
SiteCode : DTN
InsString1 : 0
InsString2 :
InsString3 : Install Operating System
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047648895
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:00:53
DateDiffer : 1
RecordID : 72057594047648894
SeverityName : Informational
Type : Milestone
MessageID : 11140
Severity : 1073741824
MessageType : 256
ModuleName : SMS Client
MsgDLLName : climsgs.dll
Component : Task Sequence Engine
MachineName : SCCMWIN10X86
Time : 11-3-2022 12:00:52
SiteCode : DTN
InsString1 : 0
InsString2 :
InsString3 :
InsString4 : 0
InsString5 :
InsString6 :
InsString7 :
InsString8 :
InsString9 :
InsString10 :
RecordID1 : 72057594047648894
AttributeID : 401
AttributeValue : DTN2002E
AttributeTime : 11-3-2022 12:00:52
DateDiffer : 1
$html:
<h2 style='text-align: center;'><strong>At least one device was detected as starting the Task Sequence but there is an issue sorting the steps.</strong></h2>
@tcox8 I changed the code a bit.
In your original code you have:
ForEach ($Computer in $Messages) #Loop through each computer
{
$Computer = $Computer.Group | Sort-Object -Property "Date / Time" #Here we are resorting so that the newest statmessage comes first. We have to sort again here because the first sort puts the newest computer at top but rearranges the statmsg group
$green = '<img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark">' #Green is always the same so we can declare it here.
$varHash = [ordered]@{} #hash table used for storing variables
$DriverCount = 1 #Count used for cycling through driver steps
If ($Computer.MessageID -contains "11144")
{
ForEach ($statmsg in $Computer) #Loop through each status message
{
$NameDuringImaging = $statmsg.System #Get the computer name
$VarCount = 1 #Count used for adding to name (this is used in the HTML to show what step we are on)
$ImageDuration = $null #Null out some variables between computers so we don't carry over unwanted data
$ImageCompleted = $null
#$ImageStarted = $null
$LastLog = $null
ForEach ($step in $TSStepsNoDrivers) #Loop through each TS Step
{
$var = "$($VarCount)" + ' - ' + $step #This sets the variable to include a number plus the name. Just for the html page
If ($Statmsg.MessageID -eq "11144") { $ImageStarted = $statmsg."Date / Time"} #MessageID 11144 is the start of a task sequence
But for the TS started from Software Center, the first MessageID is 11140 and none of the steps contain 11144:
RecordID SeverityName Type MessageID Severity MessageType ModuleName MsgDLLName Component MachineName Time
72057594047649150 Informational Milestone 11143 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:39:12.837
72057594047649149 Informational Milestone 11127 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:39:12.677
72057594047649148 Informational Milestone 11127 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:39:12.520
72057594047649147 Informational Milestone 11130 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:39:12.427
72057594047649146 Informational Milestone 11130 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:39:12.323
72057594047649145 Informational Milestone 11124 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:39:12.160
72057594047649144 Informational Milestone 11130 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:39:12.063
72057594047649143 Informational Milestone 11130 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:39:11.963
72057594047649142 Informational Milestone 11130 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:39:11.863
72057594047649141 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:39:11.693
72057594047649140 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:39:02.170
72057594047649139 Informational Milestone 11130 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:38:24.863
72057594047649138 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:38:24.647
72057594047649137 Informational Milestone 11140 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:35:58.723
72057594047649136 Informational Milestone 11142 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:35:28.477
72057594047649135 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:35:18.150
72057594047649134 Informational Milestone 11902 1073741824 256 SMS Client climsgs.dll Task Sequence Action SCCMWIN10X86 2022-03-11 12:35:18.023
72057594047649120 Informational Milestone 11902 1073741824 256 SMS Client climsgs.dll Task Sequence Action SCCMWIN10X86 2022-03-11 12:33:26.067
72057594047649119 Informational Milestone 11902 1073741824 256 SMS Client climsgs.dll Task Sequence Action SCCMWIN10X86 2022-03-11 12:32:32.167
72057594047649118 Informational Milestone 11902 1073741824 256 SMS Client climsgs.dll Task Sequence Action SCCMWIN10X86 2022-03-11 12:32:24.683
72057594047649117 Informational Milestone 11902 1073741824 256 SMS Client climsgs.dll Task Sequence Action SCCMWIN10X86 2022-03-11 12:31:49.163
72057594047649116 Informational Milestone 11902 1073741824 256 SMS Client climsgs.dll Task Sequence Action SCCMWIN10X86 2022-03-11 12:31:40.950
72057594047649067 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:22:50.587
72057594047649066 Informational Milestone 11140 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:22:49.977
72057594047649065 Informational Milestone 11142 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:22:11.897
72057594047649064 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:22:01.540
72057594047649054 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:21:56.020
72057594047649053 Informational Milestone 11140 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:21:53.850
72057594047649020 Informational Milestone 11142 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:16:13.647
72057594047649019 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:16:03.333
72057594047649018 Informational Milestone 11124 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:15:14.977
72057594047649017 Informational Milestone 11127 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:15:14.847
72057594047649016 Informational Milestone 11127 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:15:14.720
72057594047649015 Informational Milestone 11130 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:15:14.637
72057594047649014 Informational Milestone 11130 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:15:14.550
72057594047649013 Informational Milestone 11130 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:15:14.460
72057594047649012 Informational Milestone 11130 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:15:14.363
72057594047649011 Informational Milestone 11130 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:15:14.277
72057594047649010 Informational Milestone 11130 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:15:14.187
72057594047649009 Informational Milestone 11124 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:15:14.040
72057594047649008 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:15:13.880
72057594047648995 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:14:58.443
72057594047648994 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:14:58.090
72057594047648993 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:14:57.730
72057594047648901 Informational Milestone 11130 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:02:51.343
72057594047648900 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:02:51.097
72057594047648899 Informational Milestone 11140 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:02:37.693
72057594047648897 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:00:54.797
72057594047648896 Informational Milestone 11134 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:00:54.327
72057594047648895 Informational Milestone 11124 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:00:53.017
72057594047648894 Informational Milestone 11140 1073741824 256 SMS Client climsgs.dll Task Sequence Engine SCCMWIN10X86 2022-03-11 12:00:52.717
So I modified If ($Computer.MessageID -contains "11144")
to If ($Computer.MessageID -contains "11144" -or $Computer.MessageID -eq "11140")
and If ($Statmsg.MessageID -eq "11144") { $ImageStarted = $statmsg."Date / Time"}
to If ($Statmsg.MessageID -eq "11144" -or $Statmsg.MessageID -eq "11140") { $ImageStarted = $statmsg."Date / Time"}
, and it seems to be fine now:
This was tested on a VM, have to test it on hardware as well.
You are spot on! Great find! I had no idea it separated it out like that.
You are spot on! Great find! I had no idea it separated it out like that.
Yeah I think this is it yes, the computers I was missing are also showing in the table now.
@tcox8 Thank you very much for the change!
Another thing (which is probably an error on my side) is that I wasn't able to add multiple $TSAdvertisementID to the script (or I just don't know how to do it). I tried a few different ways to add more TSAdvertisementID but they all resulted in the message that no computers had run the TS.
In order to get this working I changed your code a bit.
Original code:
$TSAdvString = $null #This will be used in the next foreach loop
[int]$TSCount = $TSAdvertisementID.Count #If we have more than one TS advertisement we have to change up our query
ForEach ($AdvID in $TSAdvertisementID)
{
If ($TSCount -gt 1) #If there is more than one, we need to add "or" in our query
{
$TSAdvstring += "v_StatMsgAttributes.AttributeValue = '" + $AdvID + "' or "
}
else
{
$TSAdvstring += "v_StatMsgAttributes.AttributeValue = '" + $AdvID + "'"
}
$TScount -= 1
}
Edited code:
[int]$TSCount = $TSAdvertisementID.Split(",").Count
$TSAdvString = $null #This will be used in the next foreach loop
if ($TSCount -eq 1){
$TSAdvstring += "v_StatMsgAttributes.AttributeValue = '" + $TSAdvertisementID + "'"
} else {
$AdvArray = $TSAdvertisementID -split ","
foreach ($AdvID in $AdvArray){
if ($TSCount -gt 1){
$TSAdvstring += "v_StatMsgAttributes.AttributeValue = '" + $AdvID + "' or "
$TScount -= 1
} else {
$TSAdvstring += "v_StatMsgAttributes.AttributeValue = '" + $AdvID + "'"
}
}
}
With the edited code you can add multiple TSAdvertisementID seperated by a , like this in the scheduled task: ... -TSAdvertisementID "DTN2002A,DTN2002F,DTN20031,DTN2002E,DTN20030" ...
Again, I probably did something wrong setting up the scheduled task but I wasn't able to add multiple TSAdvertisementID, maybe you can tell me what I did wrong?
@tcox8 I'm not 100% sure this change gives the wanted result. I'm now PXE imaging a pc and for some reason I have multiple 11140 MessageID in the database (the InsStrings only contain NULL):
This SEEMS to be causing that the overview is not showing the correct time:
(Note that the original start time was 16:30 +1 hour so 17:30 and not 17:42 like in the image above).
I see above happen with TS started from Software Center as well. Didn't notice it first but when I look at the image duration, it's not correct (below is a mix of PXE and OS deployments, both containing multiple 11140 MessageID):
I see above happen with TS started from Software Center as well. Didn't notice it first but when I look at the image duration, it's not correct (below is a mix of PXE and OS deployments, both containing multiple 11140 MessageID):
@tcox8 Looks like above can be fixed with some more code changes.
ORIGINAL CODE:
If ($Statmsg.MessageID -eq "11144" -or $Statmsg.MessageID -eq "11140") { $ImageStarted = $statmsg."Date / Time"} #MessageID 11144 is the start of a task sequence
MODIFIED CODE:
if (-not (Get-Variable -Name "$Started_($NameDuringImaging)" -ValueOnly) -eq "1") {
If ($Statmsg.MessageID -eq "11144" -or $Statmsg.MessageID -eq "11140") {
$ImageStarted = $statmsg."Date / Time"
New-Variable -Name "$Started_($NameDuringImaging)" -Value "1" -Force
} #MessageID 11144 is the start of a task sequence
}
Hello,
I'm missing PCs from the overview now.
When I run the exact same query as the script is using directly on the database, I do see the missing PCs being returned:
The only difference between the 2 is that the MININT PC was installed with PXE, and the DFTE0527 (and 2 others which are also missing in the overview) were re-imaged via Software Center.
What could I be missing here?