tcox8 / OSD-Reporting

This script creates a webpage to show SCCM OSD Reporting
16 stars 5 forks source link

Issue sorting the steps #17

Closed PCL-CrisKolkman closed 2 years ago

PCL-CrisKolkman commented 2 years ago

Hello,

I'm trying to use the OSD Reporting tool but while testing I only see below in the webpage:

image

PCL-CrisKolkman commented 2 years ago

Could this be because some of the InsString columns have NULL as value?

image

PCL-CrisKolkman commented 2 years ago

Or maybe because one of the values contains Chinese (?):

image

PCL-CrisKolkman commented 2 years ago

@tcox8

PCL-CrisKolkman commented 2 years ago

This seems to be the problem when the script is being run as a scheduled task (doesn't matter which user account I'm using to run the task) and when this implementation is not running on the SCCM Site Server itself (then scheduled task nor direct running the PS script is working)...

tcox8 commented 2 years ago

It shouldn't matter if you are running on the site server or not. As long as you specify the database server and database name AND you run it from a machine that has the Config manager console. It uses the powershell cmdlets that install with the console and then just queries the database. Of course, firewalls, AV products, and permissions have to be configured for communication.

As far as troubleshooting this.. Manually run it and see what you get in some of the variables. Start with $Messages and $StatusMessages. note: $Messages is just a sorted version of $StatusMessages. If both are blank, you would most likely have an issue getting data from the database.

PCL-CrisKolkman commented 2 years ago

It shouldn't matter if you are running on the site server or not. As long as you specify the database server and database name AND you run it from a machine that has the Config manager console. It uses the powershell cmdlets that install with the console and then just queries the database. Of course, firewalls, AV products, and permissions have to be configured for communication.

As far as troubleshooting this.. Manually run it and see what you get in some of the variables. Start with $Messages and $StatusMessages. note: $Messages is just a sorted version of $StatusMessages. If both are blank, you would most likely have an issue getting data from the database.

Hello @tcox8,

Yes I've been working at this with our DBA. After adding a lot of logging to find out where it went wrong while running it with a scheduled task, I found out that adding -MDM $False (or $True) (like in your documentation) broke it. After removing that from the parameters everything runs fine.

PCL-CrisKolkman commented 2 years ago

@tcox8,

We have the same error again..

The variable $StatusMessages seems fine (only this time we have an input which contains Chinese(?) again): image

And the variable $Messages seems to be fine as well? image

PCL-CrisKolkman commented 2 years ago

I can confirm that when I exclude the "Chinese" from the SQL query, it seems to be working again (but I don't know if this breaks things...):

and (smwis.InsString2 LIKE N'%[A-Za-z]%' or smwis.InsString2 IS NULL)
and (smwis.InsString3 LIKE N'%[A-Za-z]%' or smwis.InsString3 IS NULL)
and (smwis.InsString5 LIKE N'%[A-Za-z]%' or smwis.InsString5 IS NULL)
and (smwis.InsString6 LIKE N'%[A-Za-z]%' or smwis.InsString6 IS NULL)
and (smwis.InsString7 LIKE N'%[A-Za-z]%' or smwis.InsString7 IS NULL)
and (smwis.InsString8 LIKE N'%[A-Za-z]%' or smwis.InsString8 IS NULL)
and (smwis.InsString9 LIKE N'%[A-Za-z]%' or smwis.InsString9 IS NULL)
and (smwis.InsString10 LIKE N'%[A-Za-z]%' or smwis.InsString10 IS NULL)

Above is added to the $Query so it looks like this now:

# Define the SQl query
$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," + $HoursUTCoffset + ",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 (smwis.InsString2 LIKE N'%[A-Za-z]%' or smwis.InsString2 IS NULL)
and (smwis.InsString3 LIKE N'%[A-Za-z]%' or smwis.InsString3 IS NULL)
and (smwis.InsString5 LIKE N'%[A-Za-z]%' or smwis.InsString5 IS NULL)
and (smwis.InsString6 LIKE N'%[A-Za-z]%' or smwis.InsString6 IS NULL)
and (smwis.InsString7 LIKE N'%[A-Za-z]%' or smwis.InsString7 IS NULL)
and (smwis.InsString8 LIKE N'%[A-Za-z]%' or smwis.InsString8 IS NULL)
and (smwis.InsString9 LIKE N'%[A-Za-z]%' or smwis.InsString9 IS NULL)
and (smwis.InsString10 LIKE N'%[A-Za-z]%' or smwis.InsString10 IS NULL)
and v_StatMsgAttributes.AttributeID = 401 
and (" + $TSAdvstring + ")
and DATEDIFF(hour,smsgs.Time,GETDATE()) < " + $TimeInHours + "
Order by smsgs.Time DESC
"
PCL-CrisKolkman commented 2 years ago

I can confirm that when I exclude the "Chinese" from the SQL query, it seems to be working again (but I don't know if this breaks things...):

and (smwis.InsString2 LIKE N'%[A-Za-z]%' or smwis.InsString2 IS NULL)
and (smwis.InsString3 LIKE N'%[A-Za-z]%' or smwis.InsString3 IS NULL)
and (smwis.InsString5 LIKE N'%[A-Za-z]%' or smwis.InsString5 IS NULL)
and (smwis.InsString6 LIKE N'%[A-Za-z]%' or smwis.InsString6 IS NULL)
and (smwis.InsString7 LIKE N'%[A-Za-z]%' or smwis.InsString7 IS NULL)
and (smwis.InsString8 LIKE N'%[A-Za-z]%' or smwis.InsString8 IS NULL)
and (smwis.InsString9 LIKE N'%[A-Za-z]%' or smwis.InsString9 IS NULL)
and (smwis.InsString10 LIKE N'%[A-Za-z]%' or smwis.InsString10 IS NULL)

Above is added to the $Query so it looks like this now:

# Define the SQl query
$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," + $HoursUTCoffset + ",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 (smwis.InsString2 LIKE N'%[A-Za-z]%' or smwis.InsString2 IS NULL)
and (smwis.InsString3 LIKE N'%[A-Za-z]%' or smwis.InsString3 IS NULL)
and (smwis.InsString5 LIKE N'%[A-Za-z]%' or smwis.InsString5 IS NULL)
and (smwis.InsString6 LIKE N'%[A-Za-z]%' or smwis.InsString6 IS NULL)
and (smwis.InsString7 LIKE N'%[A-Za-z]%' or smwis.InsString7 IS NULL)
and (smwis.InsString8 LIKE N'%[A-Za-z]%' or smwis.InsString8 IS NULL)
and (smwis.InsString9 LIKE N'%[A-Za-z]%' or smwis.InsString9 IS NULL)
and (smwis.InsString10 LIKE N'%[A-Za-z]%' or smwis.InsString10 IS NULL)
and v_StatMsgAttributes.AttributeID = 401 
and (" + $TSAdvstring + ")
and DATEDIFF(hour,smsgs.Time,GETDATE()) < " + $TimeInHours + "
Order by smsgs.Time DESC
"

This looks like it's making some task sequences missing some steps (what you would expect ofc.), the strange thing is that the original scripts sometimes works (also when there are Chinese(?) characters in the values) but not all the time. I got the feeling I'm missing some steps in the TS anyway (below images are 2 different TS):

image

image

tcox8 commented 2 years ago

The "Chinese" can be ignored. I believe it is just encoding. I have it in my environment as well. Can you send a screenshot of one of the task sequences (from SCCM) and then a screenshot of the results in the variable $TSsteps? Those should line up.

PCL-CrisKolkman commented 2 years ago

@tcox8,

See the screenshot:

image

tcox8 commented 2 years ago

ok, so all your steps are present. What's the output for $TSStepsNoDrivers and $TSDriverSteps?

PCL-CrisKolkman commented 2 years ago

TSDriverSteps

Hello @tcox8,

A bit more info, at the end of the TS you see 2 steps under Voetenwarmer set screen. Those steps are hardware specific and skipped by 90% of our installs, so I kinda would expect a grey checkmark there right?

$TSStepsNoDrivers

image

$TSDriverSteps

image

PCL-CrisKolkman commented 2 years ago

And like you see in below image, it seems that the results shifted 1 step to the left. This machine failed at the step Join domain...:

image

And missing some timestamps:

image

PCL-CrisKolkman commented 2 years ago

Also, at the time of below image the installation is at step 14 (I can confirm this by looking in the database directly) but like above screenshots the steps "seem" to have shifted (in this case 2 steps?) to the left:

image

PCL-CrisKolkman commented 2 years ago

The "missing" steps are also inconsistent, in below image the last pc installed fine and missing 3 (maybe grey?) checkmarks? While the one below that seems to "only" miss one?

image

tcox8 commented 2 years ago

A bit more info, at the end of the TS you see 2 steps under Voetenwarmer set screen. Those steps are hardware specific and skipped by 90% of our installs, so I kinda would expect a grey checkmark there right?

It would be grey if the step has a condition on it that measures false. That would produce the "The task sequence execution engine skipped the action" text in the Status Messages that would trigger that step to be grey.

Also, at the time of below image the installation is at step 14 (I can confirm this by looking in the database directly) but like above screenshots the steps "seem" to have shifted (in this case 2 steps?) to the left:

The page updates every 5 minutes (or what you've set in your scheduled task) so you can expect that the steps won't match up directly with the database. i.e. there can be up-to a 5 minute lag.

And missing some timestamps:

Looks like it is not getting the "Last Log" time from the Status message. You can change line 353 from "$LastLog = $null" to: $LastLog = $statmsg."Date / Time" if you wish. But I think this is missing due to an issue processing your driver steps. Can you paste in the Status Messages from the database for one of these devices?

PCL-CrisKolkman commented 2 years ago

It would be grey if the step has a condition on it that measures false. That would produce the "The task sequence execution engine skipped the action" text in the Status Messages that would trigger that step to be grey.

It should be like that I think: image

The page updates every 5 minutes (or what you've set in your scheduled task) so you can expect that the steps won't match up directly with the database. i.e. there can be up-to a 5 minute lag.

Yes but I ran the task manually (comparing with what I get from the database) and as you can see in the final results it's missing a few steps.

Looks like it is not getting the "Last Log" time from the Status message. You can change line 353 from "$LastLog = $null" to: $LastLog = $statmsg."Date / Time" if you wish. But I think this is missing due to an issue processing your driver steps. Can you paste in the Status Messages from the database for one of these devices?

I hope the pasting will work:

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
72057594047574934   Informational   Milestone   11143   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:49:45.770 DTN 35  NULL    NULL    0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574934   401 DTN20046    2022-02-28 14:49:45.770 1
72057594047574933   Informational   Milestone   11127   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:49:45.637 DTN 35  NULL    Setup Operating System  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574933   401 DTN20046    2022-02-28 14:49:45.637 1
72057594047574932   Informational   Milestone   11122   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:49:45.547 DTN 31  NULL    Voetenwarmer set screen 0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574932   401 DTN20046    2022-02-28 14:49:45.547 1
72057594047574931   Informational   Milestone   11128   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:49:45.447 DTN 30  Install RST Setup Operating System  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574931   401 DTN20046    2022-02-28 14:49:45.447 1
72057594047574930   Informational   Milestone   11130   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:49:45.350 DTN 29  PenMount Universal Driver(AAEON)    Setup Operating System  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574930   401 DTN20046    2022-02-28 14:49:45.350 1
72057594047574929   Informational   Milestone   11130   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:49:45.247 DTN 28  Install Package Setup Operating System  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574929   401 DTN20046    2022-02-28 14:49:45.247 1
72057594047574928   Informational   Milestone   11134   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:49:45.077 DTN 27  Install MSMQ    Setup 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 ('OSDDoNotLogCommand' is not set to 'True') ProgramName = 'DISM.exe /Online /Enable-Feature /FeatureName:MSMQ-Container' 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)  Deployment Image Servicing and Management tool Version: 6.1.7601.24499  Image Version: 6.1.7601.24499  Enabling feature(s) Process completed with exit code 0 The operation completed   successfully. Command line is being logged ('OSDDoNotLogCommand' is not set to 'True') Command line DISM.exe /Online /Enable-Feature /FeatureName:MSMQ-Container returned 0 敄汰祯敭瑮䤠慭敧匠牥楶楣杮愠摮䴠湡条浥湥⁴潴汯敖獲潩㩮�    SMS_TaskSequence_RunCommandLineAction   NULL    72057594047574928   401 DTN20046    2022-02-28 14:49:45.077 1
72057594047574917   Informational   Milestone   11134   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:49:13.473 DTN 26  Install Prereq x64  Setup Operating System  0   ... ecution Manager to install software  Installing software for PackageID='DTN00020' ProgramID='Copy-PreReq' AdvertID='DTN20046' has started, jobID='{201E0EA8-0474-498D-B021-66D01B852166}' Setting TSEnv variable 'SMSTSInstallSoftwareJobID_DTN00020_DTN2   0046_Copy-PreReq'='{201E0EA8-0474-498D-B021-66D01B852166}' Waiting for installation job to complete.. CompleteExecution received CompleteExecution processed Received job completion notification from Execution Manager Installation completed with exit   code 0x00000000 Install successful Setting TSEnv variable 'SMSTSInstallSoftwareJobID_DTN00020_DTN20046_Copy-PreReq'='' GetExecRequestMgrInterface successful Releasing job request, jobID='{201E0EA8-0474-498D-B021-66D01B852166}' Releasing of Job Reques  t successful CompleteJob successful ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN00020. reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN00020 before releasing Released the resolved source C:\_SMSTaskSequence\Packages\DTN00020   SMS_TaskSequence_InstallSoftwareAction  NULL    72057594047574917   401 DTN20046    2022-02-28 14:49:13.473 1
72057594047574914   Informational   Milestone   11130   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:49:09.550 DTN 25  Install RST Setup Operating System  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574914   401 DTN20046    2022-02-28 14:49:09.550 1
72057594047574913   Informational   Milestone   11134   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:49:09.307 DTN 24  Install Application Setup Operating System  0   ... 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 tMode: In Intranet LSGetHomeMPFromWMI Current Assigned Management Point is DFSE0207.DOMAIN.COM with Version 9068 and Capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSL" Version="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\CC    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    SMS_TaskSequence_InstallApplicationAction   NULL    72057594047574913   401 DTN20046    2022-02-28 14:49:09.307 1
72057594047574904   Informational   Milestone   11140   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:46:36.310 DTN 24  NULL    NULL    0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574904   401 DTN20046    2022-02-28 14:46:36.310 1
72057594047574903   Informational   Milestone   11142   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:46:01.140 DTN 24  Install Application Setup Operating System  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574903   401 DTN20046    2022-02-28 14:46:01.140 1
72057594047574901   Informational   Milestone   11134   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:45:30.523 DTN 24  Install Application Setup Operating System  0   ... 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  Env 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 S ending success status message    Setting URL = https://DFSE0207.DOMAIN.COM, Ports = 80,443, CRL = false    Setting Server Certificates.    Setting Authenticator. Sending StatusMessage Setting the authenticator. CLibSMSMessageWinHtt 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. SMS_TaskSequence_InstallApplicationAction   NULL    72057594047574901   401 DTN20046    2022-02-28 14:45:30.523 1
72057594047574900   Informational   Milestone   11902   1073741824  256 SMS Client  climsgs.dll Task Sequence Action    MININT-L3GNT4T  2022-02-28 14:45:30.417 DTN 24  Install Application NULL    0   FIS Middleware 3.0.1 V2 ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_e4d97699-2435-46b8-9376-3ab630dd13b7   NULL    NULL    NULL    NULL    72057594047574900   401 DTN20046    2022-02-28 14:45:30.417 1
72057594047574872   Informational   Milestone   11902   1073741824  256 SMS Client  climsgs.dll Task Sequence Action    MININT-L3GNT4T  2022-02-28 14:44:03.933 DTN 24  Install Application NULL    0   PL2303  ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_faf046fb-8a72-40c3-9586-fb170e1d7af1   NULL    NULL    NULL    NULL    72057594047574872   401 DTN20046    2022-02-28 14:44:03.933 1
72057594047574871   Informational   Milestone   11902   1073741824  256 SMS Client  climsgs.dll Task Sequence Action    MININT-L3GNT4T  2022-02-28 14:43:05.180 DTN 24  Install Application NULL    0   NodeInstaller 4.0   ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_c1ff9fac-5d40-4b66-a811-f7eca3ea59bd   NULL    NULL    NULL    NULL    72057594047574871   401 DTN20046    2022-02-28 14:43:05.180 1
72057594047574870   Informational   Milestone   11902   1073741824  256 SMS Client  climsgs.dll Task Sequence Action    MININT-L3GNT4T  2022-02-28 14:42:58.797 DTN 24  Install Application NULL    0   Framework Security  ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_a8ce03e9-4c81-4bf1-b13b-87a08dc76659   NULL    NULL    NULL    NULL    72057594047574870   401 DTN20046    2022-02-28 14:42:58.797 1
72057594047574869   Informational   Milestone   11902   1073741824  256 SMS Client  climsgs.dll Task Sequence Action    MININT-L3GNT4T  2022-02-28 14:42:27.027 DTN 24  Install Application NULL    0   COMPANYInstallTool  ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_569f3599-5638-4844-be49-fccd68e138cf   NULL    NULL    NULL    NULL    72057594047574869   401 DTN20046    2022-02-28 14:42:27.027 1
72057594047574861   Informational   Milestone   11902   1073741824  256 SMS Client  climsgs.dll Task Sequence Action    MININT-L3GNT4T  2022-02-28 14:42:04.423 DTN 24  Install Application NULL    0   TightVNC    ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_c90ccbeb-ac6b-4768-b928-901b22b143c9   NULL    NULL    NULL    NULL    72057594047574861   401 DTN20046    2022-02-28 14:42:04.423 1
72057594047574819   Informational   Milestone   11134   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:36:25.393 DTN 23  netsh winhttp reset proxy   Setup Operating System  0   NULL    NULL    NULL    NULL    SMS_TaskSequence_RunCommandLineAction   NULL    72057594047574819   401 DTN20046    2022-02-28 14:36:25.393 1
72057594047574817   Informational   Milestone   11140   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:36:25.023 DTN 23  NULL    NULL    0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574817   401 DTN20046    2022-02-28 14:36:25.023 1
72057594047574816   Informational   Milestone   11142   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:36:00.143 DTN 22  Join Domain or Workgroup    Setup Operating System  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574816   401 DTN20046    2022-02-28 14:36:00.143 1
72057594047574815   Informational   Milestone   11134   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:35:29.430 DTN 22  Join Domain or Workgroup    Setup Operating System  0   ==================[ 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    DOMAIN.COM and OU CN=Computers,DC=OUR_OU,DC=OUR_OU,DC=LAN,DC=COMPANY,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    main DOMAIN.COM Finished with error code 0x00000000 NULL    SMS_TaskSequence_JoinDomainWorkgroupAction  NULL    72057594047574815   401 DTN20046    2022-02-28 14:35:29.430 1
72057594047574814   Informational   Milestone   11128   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:35:26.270 DTN 21  Install Updates Setup Operating System  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574814   401 DTN20046    2022-02-28 14:35:26.270 1
72057594047574813   Informational   Milestone   11134   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:35:26.027 DTN 20  Setup Windows and Configuration Manager Setup Operating System  0   ... 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 ing settings to MAC address 00:50:56:9c:24:e2. Adapter index: 0 Adapter name: Factory Network Adapter '00:50:56:9c:24:e2' requires reset Acquiring write lock (this may take up to 120000 milliseconds) Write lock acquired Unbinding "ms_tcpip" from ada   pter "PCI\VEN_8086&DEV_10D3&SUBSYS_07D015AD&REV_00\005056FFFF9C24E200" 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 SYS_07D015AD&REV_00\005056FFFF9C24E200" NetAdapterBindUnbind exiting: 0x00000000 OSDNetSettings finished: 0x00000000 Process completed with exit code 0 Successfully executed command lines, clearing _SMSTSRunOnFirstBoot. Exiting with code 0x00000000    SMS_TaskSequence_SetupWindowsAndSMSAction   NULL    72057594047574813   401 DTN20046    2022-02-28 14:35:26.027 1
72057594047574812   Informational   Milestone   11140   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:35:16.977 DTN 20  NULL    NULL    0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574812   401 DTN20046    2022-02-28 14:35:16.977 1
72057594047574757   Informational   Milestone   11142   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:27:09.603 DTN 20  Setup Windows and Configuration Manager Setup Operating System  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574757   401 DTN20046    2022-02-28 14:27:09.603 1
72057594047574756   Informational   Milestone   11134   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:26:39.287 DTN 20  Setup Windows and Configuration Manager Setup Operating System  0   ...  count 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' C  ommand line for extension .EXE is "%1" %* Set command line: "X:\sms\bin\x64\OSDSETUPHOOK.EXE" "/install:C:\WINDOWS" /version:6.1 Executing command line: "X:\sms\bin\x64\OSDSETUPHOOK.EXE" "/install:C:\WINDOWS" /version:6.1 with options (0, 0) Installing    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\OfflineRegistry1 Loading offline registry h   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    SMS_TaskSequence_SetupWindowsAndSMSAction   NULL    72057594047574756   401 DTN20046    2022-02-28 14:26:39.287 1
72057594047574746   Informational   Milestone   11124   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:26:22.130 DTN 19  NULL    Setup Operating System  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574746   401 DTN20046    2022-02-28 14:26:22.130 1
72057594047574745   Informational   Milestone   11127   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:26:22.003 DTN 18  NULL    Install Operating System    0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574745   401 DTN20046    2022-02-28 14:26:22.003 1
72057594047574744   Informational   Milestone   11127   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:26:21.880 DTN 17  NULL    Device Drivers  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574744   401 DTN20046    2022-02-28 14:26:21.880 1
72057594047574743   Informational   Milestone   11128   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:26:21.797 DTN 16  IB995AF Device Drivers  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574743   401 DTN20046    2022-02-28 14:26:21.797 1
72057594047574742   Informational   Milestone   11130   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:26:21.713 DTN 15  HP Mini Drivers Device Drivers  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574742   401 DTN20046    2022-02-28 14:26:21.713 1
72057594047574741   Informational   Milestone   11130   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:26:21.623 DTN 14  Voetenwarmer Drivers    Device Drivers  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574741   401 DTN20046    2022-02-28 14:26:21.623 1
72057594047574740   Informational   Milestone   11130   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:26:21.527 DTN 13  Ebox Drivers    Device Drivers  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574740   401 DTN20046    2022-02-28 14:26:21.527 1
72057594047574739   Informational   Milestone   11130   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:26:21.430 DTN 12  AAEON Drivers   Device Drivers  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574739   401 DTN20046    2022-02-28 14:26:21.430 1
72057594047574738   Informational   Milestone   11124   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:26:21.297 DTN 11  NULL    Device Drivers  0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574738   401 DTN20046    2022-02-28 14:26:21.297 1
72057594047574737   Informational   Milestone   11134   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:26:21.147 DTN 10  Apply Device Drivers    Install Operating System    0   ...  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   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 ce 'System timer'. Unsuccessful in finding a suitable device driver for device 'Microsoft System Management BIOS Driver'. Unsuccessful in finding a suitable device driver for device 'PCI-to-PCI Bridge'. Unsuccessful in finding a suitable device driver 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  SMS_TaskSequence_AutoApplyAction    NULL    72057594047574737   401 DTN20046    2022-02-28 14:26:21.147 1
72057594047574736   Informational   Milestone   11134   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:25:36.493 DTN 9   Apply Network Settings  Install Operating System    0   ... 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  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   for adapter 0.  Applying settings to MAC address 00:50:56:9c:24:e2. 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-24-e2' Writing configu  ration 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  SMS_TaskSequence_ApplyNetworkSettingsAction NULL    72057594047574736   401 DTN20046    2022-02-28 14:25:36.493 1
72057594047574735   Informational   Milestone   11134   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:25:36.197 DTN 8   Apply Windows Settings  Install Operating System    0   ... ile. The OSDWindowsSettingsSystemLocale variable is not set in the environment.  Not setting the system locale in the unattend answer file. The OSDWindowsSettingsUserLocale variable is not set in the environment.  Not setting the user locale in the    unattend 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 UI   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  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\unattend.xml Exiting with return code 0x00000000   SMS_TaskSequence_ApplyWindowsSettingsAction NULL    72057594047574735   401 DTN20046    2022-02-28 14:25:36.197 1
72057594047574734   Informational   Milestone   11134   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:25:35.893 DTN 7   Apply Operating System  Install Operating System    0   ...  m_spSettingsEngine, m_spTargetInfo, sXml ), HRESULT=80220001 (..\smiinterface.cpp,1070) fromXml( oDoc ), HRESULT=80220001 (..\smiinterface.cpp,963) Failed to load existing answer file "C:\WINDOWS\panther\unattend\unattend.xml" Getting namespace "M    icrosoft-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:\W    INDOWS\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\DTN00085\win7x64wk2010.wim Failed  to deserialize settings (0x80220001) ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN00085. reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN00085 before releasing Released the resolved source C:\_SMSTaskSequence\Packages\DTN00085  SMS_TaskSequence_ApplyOperatingSystemAction NULL    72057594047574734   401 DTN20046    2022-02-28 14:25:35.893 1
72057594047574661   Informational   Milestone   11130   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:14:52.360 DTN 6   Partition Disk 0 - UEFI Install Operating System    0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574661   401 DTN20046    2022-02-28 14:14:52.360 1
72057594047574660   Informational   Milestone   11134   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:14:52.147 DTN 5   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    72057594047574660   401 DTN20046    2022-02-28 14:14:52.147 1
72057594047574659   Informational   Milestone   11128   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:14:45.337 DTN 4   Run VNC Install Operating System    0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574659   401 DTN20046    2022-02-28 14:14:45.337 1
72057594047574658   Informational   Milestone   11128   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:14:45.260 DTN 3   Disable firewall    Install Operating System    0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574658   401 DTN20046    2022-02-28 14:14:45.260 1
72057594047574657   Informational   Milestone   11130   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:14:45.180 DTN 2   Restart in Windows PE   Install Operating System    0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574657   401 DTN20046    2022-02-28 14:14:45.180 1
72057594047574656   Informational   Milestone   11130   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:14:45.080 DTN 1   Check if DHCP enabled   Install Operating System    0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574656   401 DTN20046    2022-02-28 14:14:45.080 1
72057594047574655   Informational   Milestone   11124   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:14:44.960 DTN 0   NULL    Install Operating System    0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574655   401 DTN20046    2022-02-28 14:14:44.960 1
72057594047574654   Informational   Milestone   11144   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:14:44.847 DTN 0   NULL    NULL    0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574654   401 DTN20046    2022-02-28 14:14:44.847 1
72057594047574653   Informational   Milestone   11140   1073741824  256 SMS Client  climsgs.dll Task Sequence Engine    MININT-L3GNT4T  2022-02-28 14:14:44.780 DTN 0   NULL    NULL    0   NULL    NULL    NULL    NULL    NULL    NULL    72057594047574653   401 DTN20046    2022-02-28 14:14:44.780 1

@tcox8 Above database output is only from the last try.

tcox8 commented 2 years ago

Can you add the State Message Description to the database output please and repost.

PCL-CrisKolkman commented 2 years ago

Can you add the State Message Description to the database output please and repost.

I'm using the same query as you are using in your script (only modified to get only the last try) so not sure what I'm doing wrong (please not that I'm not an SQL expert so sorry :) )

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 = 'DTN20046'
and DATEDIFF(hour,smsgs.Time,GETDATE()) < '248'
and smsgs.MachineName = 'MININT-L3GNT4T'
Order by smsgs.Time DESC
tcox8 commented 2 years ago

Sorry, please try this query:

select SMS_StatusMessage.*, SMS_StatMsgInsStrings.*, SMS_StatMsgAttributes.*, SMS_StatMsgAttributes.AttributeTime 
from SMS_StatusMessage 
left join SMS_StatMsgInsStrings 
on SMS_StatMsgInsStrings.RecordID = SMS_StatusMessage.RecordID 
left join SMS_StatMsgAttributes 
on SMS_StatMsgAttributes.RecordID = SMS_StatusMessage.RecordID 
where SMS_StatMsgAttributes.AttributeValue = "DTN20046" 
and DATEDIFF(hour,smsgs.Time,GETDATE()) < '248'
and smsgs.MachineName = 'MININT-L3GNT4T'
order by SMS_StatMsgAttributes.AttributeTime 
DESC
PCL-CrisKolkman commented 2 years ago

select SMS_StatusMessage., SMS_StatMsgInsStrings., SMS_StatMsgAttributes.*, SMS_StatMsgAttributes.AttributeTime from SMS_StatusMessage left join SMS_StatMsgInsStrings on SMS_StatMsgInsStrings.RecordID = SMS_StatusMessage.RecordID left join SMS_StatMsgAttributes on SMS_StatMsgAttributes.RecordID = SMS_StatusMessage.RecordID where SMS_StatMsgAttributes.AttributeValue = "DTN20046" and DATEDIFF(hour,smsgs.Time,GETDATE()) < '248' and smsgs.MachineName = 'MININT-L3GNT4T' order by SMS_StatMsgAttributes.AttributeTime DESC

@tcox8 This doesn't work:

image

image

tcox8 commented 2 years ago

Yeah sorry, that was WQL not SQL.

I'm being lazy to convert it to SQL so instead if you can just create a status message query and paste the results that would be awesome.

It just takes a few minutes: https://www.prajwaldesai.com/monitor-sccm-task-sequence-progress/#:~:text=%20Monitor%20SCCM%20Task%20Sequence%20Progress%20with%20Status,Query%20to%20Monitor%20SCCM%20Task%20Sequence...%20More%20

PCL-CrisKolkman commented 2 years ago

Yeah sorry, that was WQL not SQL.

I'm being lazy to convert it to SQL so instead if you can just create a status message query and paste the results that would be awesome.

It just takes a few minutes: https://www.prajwaldesai.com/monitor-sccm-task-sequence-progress/#:~:text=%20Monitor%20SCCM%20Task%20Sequence%20Progress%20with%20Status,Query%20to%20Monitor%20SCCM%20Task%20Sequence...%20More%20

@tcox8 This what you're looking for?

Severity      Type    Site code Date / Time             System           Component       Message ID       Description
Information Milestone   DTN 2/28/2022 3:49:46 PM    MININT-L3GNT4T  Task Sequence Manager   11171   The task sequence manager successfully completed execution of the task sequence.
Information Milestone   DTN 2/28/2022 3:49:45 PM    MININT-L3GNT4T  Task Sequence Engine    11143   The task sequence execution engine successfully completed a task sequence.
Information Milestone   DTN 2/28/2022 3:49:45 PM    MININT-L3GNT4T  Task Sequence Engine    11127   The task sequence execution engine successfully completed the group (Setup Operating System).
Information Milestone   DTN 2/28/2022 3:49:45 PM    MININT-L3GNT4T  Task Sequence Engine    11122   The task sequence execution engine skipped the group (Voetenwarmer set screen) because the condition was evaluated to be false.
Information Milestone   DTN 2/28/2022 3:49:45 PM    MININT-L3GNT4T  Task Sequence Engine    11128   The task sequence execution engine skipped the disabled action (Install RST) in the group (Setup Operating System).
Information Milestone   DTN 2/28/2022 3:49:45 PM    MININT-L3GNT4T  Task Sequence Engine    11130   The task sequence execution engine skipped the action (PenMount Universal Driver(AAEON)) in the group (Setup Operating System) because the condition was evaluated to be false.
Information Milestone   DTN 2/28/2022 3:49:45 PM    MININT-L3GNT4T  Task Sequence Engine    11130   The task sequence execution engine skipped the action (Install Package) in the group (Setup Operating System) because the condition was evaluated to be false.
Information Milestone   DTN 2/28/2022 3:49:45 PM    MININT-L3GNT4T  Task Sequence Engine    11134   The task sequence execution engine successfully completed the action (Install MSMQ) 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 setto 'True') ProgramName = 'DISM.exe /Online /Enable-Feature /FeatureName:MSMQ-Container' 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)  Deployment Image Servicing and Management tool Version: 6.1.7601.24499  Image Version: 6.1.7601.24499  Enabling feature(s) Process completed with exit code 0 The operation completedsuccessfully. Command line is being logged ('OSDDoNotLogCommand' is not set to 'True') Command line DISM.exe /Online /Enable-Feature /FeatureName:MSMQ-Container returned 0 敄汰祯敭瑮䤠慭敧匠牥楶楣杮愠摮䴠湡条浥湥⁴潴汯敖獲潩㩮�.
Information Milestone   DTN 2/28/2022 3:49:13 PM    MININT-L3GNT4T  Task Sequence Engine    11134   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='DTN20046' has started, jobID='{201E0EA8-0474-498D-B021-66D01B852166}' Setting TSEnv variable 'SMSTSInstallSoftwareJobID_DTN00020_DTN20046_Copy-PreReq'='{201E0EA8-0474-498D-B021-66D01B852166}' 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_DTN20046_Copy-PreReq'='' GetExecRequestMgrInterface successful Releasing job request, jobID='{201E0EA8-0474-498D-B021-66D01B852166}' Releasing of Job Request successful CompleteJob successful ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN00020. reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN00020 before releasing Released the resolved source C:\_SMSTaskSequence\Packages\DTN00020.
Information Milestone   DTN 2/28/2022 3:49:09 PM    MININT-L3GNT4T  Task Sequence Engine    11130   The task sequence execution engine skipped the action (Install RST) in the group (Setup Operating System) because the condition was evaluated to be false.
Information Milestone   DTN 2/28/2022 3:49:09 PM    MININT-L3GNT4T  Task Sequence Engine    11134   The task sequence execution engine successfully completed the action (Install Application) 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\Framework\Core\CCMCore\Logging.cpp,805) Unable to load profiler: 0x80004005 LSGetInternetMode LSGetInternetMode: In Intranet LSGetHomeMPFromWMI Current Assigned Management Point is DFSE0207.DOMAIN.COM with Version 9068 and Capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSL" Version="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.
Information Milestone   DTN 2/28/2022 3:46:36 PM    MININT-L3GNT4T  Task Sequence Engine    11140   The task sequence execution engine started execution of a task sequence.
Information Milestone   DTN 2/28/2022 3:46:01 PM    MININT-L3GNT4T  Task Sequence Engine    11142   The task sequence execution engine performed a system reboot initiated by the action (Install Application) in the group (Setup Operating System).
Information Milestone   DTN 2/28/2022 3:45:30 PM    MININT-L3GNT4T  Task Sequence Engine    11134   The task sequence execution engine successfully completed the action (Install Application) in the group (Setup Operating System) with exit code 0  Action output: ... 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 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. Sending StatusMessage Setting the authenticator. CLibSMSMessageWinHttpTransport::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..
Information Milestone   DTN 2/28/2022 3:45:30 PM    MININT-L3GNT4T  Task Sequence Action    11902   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.
Information Milestone   DTN 2/28/2022 3:44:03 PM    MININT-L3GNT4T  Task Sequence Action    11902   The task sequence successfully installed application PL2303(ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_faf046fb-8a72-40c3-9586-fb170e1d7af1) for action (Install Application) in the group () with exit code 0.
Information Milestone   DTN 2/28/2022 3:43:05 PM    MININT-L3GNT4T  Task Sequence Action    11902   The task sequence successfully installed application NodeInstaller 4.0(ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_c1ff9fac-5d40-4b66-a811-f7eca3ea59bd) for action (Install Application) in the group () with exit code 0.
Information Milestone   DTN 2/28/2022 3:42:58 PM    MININT-L3GNT4T  Task Sequence Action    11902   The task sequence successfully installed application Framework Security(ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_a8ce03e9-4c81-4bf1-b13b-87a08dc76659) for action (Install Application) in the group () with exit code 0.
Information Milestone   DTN 2/28/2022 3:42:27 PM    MININT-L3GNT4T  Task Sequence Action    11902   The task sequence successfully installed application COMPANYInstallTool(ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_569f3599-5638-4844-be49-fccd68e138cf) for action (Install Application) in the group () with exit code 0.
Information Milestone   DTN 2/28/2022 3:42:04 PM    MININT-L3GNT4T  Task Sequence Action    11902   The task sequence successfully installed application TightVNC(ScopeId_0E64DAC1-E50F-4749-9E34-9DAFF6124011/Application_c90ccbeb-ac6b-4768-b928-901b22b143c9) for action (Install Application) in the group () with exit code 0.
Information Milestone   DTN 2/28/2022 3:36:25 PM    MININT-L3GNT4T  Task Sequence Engine    11134   The task sequence execution engine successfully completed the action (netsh winhttp reset proxy) in the group (Setup Operating System) with exit code 0  Action output: .
Information Milestone   DTN 2/28/2022 3:36:25 PM    MININT-L3GNT4T  Task Sequence Engine    11140   The task sequence execution engine started execution of a task sequence.
Information Milestone   DTN 2/28/2022 3:36:00 PM    MININT-L3GNT4T  Task Sequence Engine    11142   The task sequence execution engine performed a system reboot initiated by the action (Join Domain or Workgroup) in the group (Setup Operating System).
Information Milestone   DTN 2/28/2022 3:35:29 PM    MININT-L3GNT4T  Task Sequence Engine    11134   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=NL-016,DC=LAN,DC=COMPANY,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.
Information Milestone   DTN 2/28/2022 3:35:26 PM    MININT-L3GNT4T  Task Sequence Engine    11128   The task sequence execution engine skipped the disabled action (Install Updates) in the group (Setup Operating System).
Information Milestone   DTN 2/28/2022 3:35:26 PM    MININT-L3GNT4T  Task Sequence Engine    11134   The task sequence execution engine successfully completed the action (Setup Windows and 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:9c:24:e2. Adapter index: 0 Adapter name: Factory Network Adapter '00:50:56:9c:24:e2' 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\005056FFFF9C24E200" 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\005056FFFF9C24E200" NetAdapterBindUnbind exiting: 0x00000000 OSDNetSettings finished: 0x00000000 Process completed with exit code 0 Successfully executed command lines, clearing _SMSTSRunOnFirstBoot. Exiting with code 0x00000000.
Information Milestone   DTN 2/28/2022 3:35:16 PM    MININT-L3GNT4T  Task Sequence Engine    11140   The task sequence execution engine started execution of a task sequence.
Information Milestone   DTN 2/28/2022 3:27:09 PM    MININT-L3GNT4T  Task Sequence Engine    11142   The task sequence execution engine performed a system reboot initiated by the action (Setup Windows and Configuration Manager) in the group (Setup Operating System).
Information Milestone   DTN 2/28/2022 3:26:39 PM    MININT-L3GNT4T  Task Sequence Engine    11134   The task sequence execution engine successfully completed the action (Setup Windows and Configuration Manager) in the group (Setup Operating System) with exit code 0  Action output: ...  count 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:6.1 Executing command line: "X:\sms\bin\x64\OSDSETUPHOOK.EXE" "/install:C:\WINDOWS" /version:6.1 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\OfflineRegistry1 Loading offline registry hive "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.
Information Milestone   DTN 2/28/2022 3:26:22 PM    MININT-L3GNT4T  Task Sequence Engine    11124   The task sequence execution engine started the group (Setup Operating System).
Information Milestone   DTN 2/28/2022 3:26:22 PM    MININT-L3GNT4T  Task Sequence Engine    11127   The task sequence execution engine successfully completed the group (Install Operating System).
Information Milestone   DTN 2/28/2022 3:26:21 PM    MININT-L3GNT4T  Task Sequence Engine    11127   The task sequence execution engine successfully completed the group (Device Drivers).
Information Milestone   DTN 2/28/2022 3:26:21 PM    MININT-L3GNT4T  Task Sequence Engine    11128   The task sequence execution engine skipped the disabled action (IB995AF) in the group (Device Drivers).
Information Milestone   DTN 2/28/2022 3:26:21 PM    MININT-L3GNT4T  Task Sequence Engine    11130   The task sequence execution engine skipped the action (HP Mini Drivers) in the group (Device Drivers) because the condition was evaluated to be false.
Information Milestone   DTN 2/28/2022 3:26:21 PM    MININT-L3GNT4T  Task Sequence Engine    11130   The task sequence execution engine skipped the action (Voetenwarmer Drivers) in the group (Device Drivers) because the condition was evaluated to be false.
Information Milestone   DTN 2/28/2022 3:26:21 PM    MININT-L3GNT4T  Task Sequence Engine    11130   The task sequence execution engine skipped the action (Ebox Drivers) in the group (Device Drivers) because the condition was evaluated to be false.
Information Milestone   DTN 2/28/2022 3:26:21 PM    MININT-L3GNT4T  Task Sequence Engine    11130   The task sequence execution engine skipped the action (AAEON Drivers) in the group (Device Drivers) because the condition was evaluated to be false.
Information Milestone   DTN 2/28/2022 3:26:21 PM    MININT-L3GNT4T  Task Sequence Engine    11124   The task sequence execution engine started the group (Device Drivers).
Information Milestone   DTN 2/28/2022 3:26:21 PM    MININT-L3GNT4T  Task Sequence Engine    11134   The task sequence execution engine successfully completed the action (Apply Device Drivers) 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 Adapter 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 Compatible)'. 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 Management 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 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.
Information Milestone   DTN 2/28/2022 3:25:36 PM    MININT-L3GNT4T  Task Sequence Engine    11134   The task sequence execution engine successfully completed the action (Apply Network Settings) 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:24:e2. 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-24-e2' 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.
Information Milestone   DTN 2/28/2022 3:25:36 PM    MININT-L3GNT4T  Task Sequence Engine    11134   The task sequence execution engine successfully completed the action (Apply Windows Settings) in the group (Install Operating System) with exit code 0  Action output: ... ile. The OSDWindowsSettingsSystemLocale variable is not set in the environment.  Not setting 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 key 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.
Information Milestone   DTN 2/28/2022 3:25:35 PM    MININT-L3GNT4T  Task Sequence Engine    11134   The task sequence execution engine successfully completed the action (Apply Operating System) in the group (Install Operating System) with exit code 0  Action output: ...  m_spSettingsEngine, m_spTargetInfo, sXml ), HRESULT=80220001 (..\smiinterface.cpp,1070) fromXml( oDoc ), HRESULT=80220001 (..\smiinterface.cpp,963) Failed to load 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\DTN00085\win7x64wk2010.wim Failedto deserialize settings (0x80220001) ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN00085. reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN00085 before releasing Released the resolved source C:\_SMSTaskSequence\Packages\DTN00085.
Information Milestone   DTN 2/28/2022 3:14:52 PM    MININT-L3GNT4T  Task Sequence Engine    11130   The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in the group (Install Operating System) because the condition was evaluated to be false.
Information Milestone   DTN 2/28/2022 3:14:52 PM    MININT-L3GNT4T  Task Sequence Engine    11134   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.
Information Milestone   DTN 2/28/2022 3:14:45 PM    MININT-L3GNT4T  Task Sequence Engine    11128   The task sequence execution engine skipped the disabled action (Run VNC) in the group (Install Operating System).
Information Milestone   DTN 2/28/2022 3:14:45 PM    MININT-L3GNT4T  Task Sequence Engine    11128   The task sequence execution engine skipped the disabled action (Disable firewall) in the group (Install Operating System).
Information Milestone   DTN 2/28/2022 3:14:45 PM    MININT-L3GNT4T  Task Sequence Engine    11130   The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false.
Information Milestone   DTN 2/28/2022 3:14:45 PM    MININT-L3GNT4T  Task Sequence Engine    11130   The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false.
Information Milestone   DTN 2/28/2022 3:14:44 PM    MININT-L3GNT4T  Task Sequence Engine    11124   The task sequence execution engine started the group (Install Operating System).
Information Milestone   DTN 2/28/2022 3:14:44 PM    MININT-L3GNT4T  Task Sequence Engine    11144   The task sequence execution engine from a non-client started execution of a task sequence.
Information Milestone   DTN 2/28/2022 3:14:44 PM    MININT-L3GNT4T  Task Sequence Engine    11140   The task sequence execution engine started execution of a task sequence.
tcox8 commented 2 years ago

That's the data I needed. Thank you.

So off the bat I can see that the Task Sequence step named "IB995AF" is somehow being moved to the front and listed as step 1 on the produced web page. Some goofy logic going on here. Let me do some digging.

PCL-CrisKolkman commented 2 years ago

That's the data I needed. Thank you.

So off the bat I can see that the Task Sequence step named "IB995AF" is somehow being moved to the front and listed as step 1 on the produced web page. Some goofy logic going on here. Let me do some digging.

Hmmm while that driver set is disabled in the WIndows 7 x64 TS.

tcox8 commented 2 years ago

Can you confirm, the step named "IB995AF" is in fact an "Apply Driver Package" step?

image

PCL-CrisKolkman commented 2 years ago

Can you confirm, the step named "IB995AF" is in fact an "Apply Driver Package" step?

image

It seems to be yes:

image

tcox8 commented 2 years ago

So I'm not sure how this step is being moved to the front. Are you sure you didn't edit the script in any way? I ask because here is the code that builds the "Columns" for the webpage:

image

As you can see we are looping through items in the $TSStepsNoDrivers variable. You provided that information above and it does NOT contain that step. Here it is again for reference:

image

So I'm not sure how the step IB995AF can possibly be added to those headers... very confusing!

PCL-CrisKolkman commented 2 years ago

So I'm not sure how this step is being moved to the front. Are you sure you didn't edit the script in any way? I ask because here is the code that builds the "Columns" for the webpage:

image

As you can see we are looping through items in the $TSStepsNoDrivers variable. You provided that information above and it does NOT contain that step. Here it is again for reference:

image

So I'm not sure how the step IB995AF can possibly be added to those headers... very confusing!

I did change a few things but nothing with ordering etc. When I'm running the original script I'm getting the same results.

tcox8 commented 2 years ago

Can you send what's in $Table and $html variable?

PCL-CrisKolkman commented 2 years ago

Can you send what's in $Table and $html variable?

Hello @tcox8,

There seems to be something wrong with that driver package indeed:

image

Here are the variables you asked for:

TABLE:

                    <thead>
                        <tr class = "row100 head">
                            <th class="column100 column2" data-column="column2">Image Started</th>
                            <th class="column100 column3" data-column="column3">Image Completed</th>
                            <th class="column100 column4" data-column="column4">Image Duration</th>
                            <th class="column100 column5" data-column="column5">Last Log</th>
                            <th class="column100 column6" data-column="column6">Name During Imaging</th><th class="column100 column7" data-column="Column7">1 - IB995AF</th><th class="column100 column8" data-column="Column8">2 - Check if DHCP enabled</th><th class="column100 column9" data-column="Column9">3 - Restart in Windows PE</th><th class="column100 column10" data-column="Column10">4 - Partition Disk 0 - BIOS</th><th class="column100 column11" data-column="Column11">5 - Partition Disk 0 - UEFI</th><th class="column100 column12" data-column="Column12">6 - Apply Operating System</th><th class="column100 column13" data-column="Column13">7 - Apply Windows Settings</th><th class="column100 column14" data-column="Column14">8 - Apply Network Settings</th><th class="column100 column15" data-column="Column15">9 - Install Drivers</th><th class="column100 column16" data-column="Column16">10 - Apply Device Drivers</th><th class="column100 column17" data-column="Column17">11 - Setup Windows and Configuration Manager</th><th class="column100 column18" data-column="Column18">12 - Join Domain or Workgroup</th><th class="column100 column19" data-column="Column19">13 - netsh winhttp reset proxy</th><th class="column100 column20" data-column="Column20">14 - Install Application</th><th class="column100 column21" data-column="Column21">15 - Install RST</th><th class="column100 column22" data-column="Column22">16 - Install Prereq x64</th><th class="column100 column23" data-column="Column23">17 - Install MSMQ</th><th class="column100 column24" data-column="Column24">18 - Install Package</th><th class="column100 column25" data-column="Column25">19 - PenMount Universal Driver(AAEON)</th><th class="column100 column26" data-column="Column26">20 - Set external</th><th class="column100 column27" data-column="Column27">21 - set res</th><th class="column100 column28" data-column="Column28">Exit Task Sequence</th></tr></thead><tbody><tr class="row100">
                <td class="column100 column2" data-column="column2">02/28/2022 15:14:44</td>
                <td class="column100 column3" data-column="column3">02/28/2022 15:49:45</td>
                <td class="column100 column4" data-column="column4">00:35:00</td>
                <td class="column100 column5" data-column="column5">02/28/2022 15:49:45</td>
                <td class="column100 column6" data-column="column6">MININT-L3GNT4T</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column10" data-column="Column10"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column17" data-column="Column17"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column18" data-column="Column18"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column19" data-column="Column19"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column20" data-column="Column20"><a href=" " title="The task sequence execution engine skipped the action (Install RST) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column21" data-column="Column21"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column22" data-column="Column22"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column23" data-column="Column23"><a href=" " title="The task sequence execution engine skipped the action (Install Package) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column24" data-column="Column24"><a href=" " title="The task sequence execution engine skipped the action (PenMount Universal Driver(AAEON)) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column25" data-column="Column25"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/28/2022 14:34:26</td>
                <td class="column100 column3" data-column="column3">02/28/2022 14:55:13</td>
                <td class="column100 column4" data-column="column4">00:20:47</td>
                <td class="column100 column5" data-column="column5">02/28/2022 14:55:13</td>
                <td class="column100 column6" data-column="column6">MININT-94QS2LF</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column10" data-column="Column10"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column17" data-column="Column17"><a href=" " title="The task sequence execution engine failed executing the action (Join Domain or Workgroup) in the group (Setup Operating System) with the error code 2147942453
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=&quot;COMPANY&quot;
Joining domainDOMAIN.COM and OU CN=Computers,DC=OUR_OU,DC=NL-016,DC=LAN,DC=COMPANY,DC=COM
Attempting to join and create account with OU
Result= 0x00000035
Attempting to join and create account, without OU
Result= 0x00000035
Attempting to join within the OU
Result= 0x00000035
Attempting to join without OU
Result= 0x00000035
0, HRESULT=80070035 (X:\bt\1216594\repo\src\client\OSDeployment\OsdJoin\main.cpp,420)
DoNetJoin( joinType), HRESULT=80070035 (X:\bt\1216594\repo\src\client\OSDeployment\OsdJoin\main.cpp,513)
Finished with error code 0x80070035
Failed to join domain. The account may not have permission
The network path was not found. (Error: 80070035; Source: Windows)."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a><td class="column100 column18" data-column="Column18"> <td class="column100 column19" data-column="Column19"> <td class="column100 column20" data-column="Column20"> <td class="column100 column21" data-column="Column21"> <td class="column100 column22" data-column="Column22"> <td class="column100 column23" data-column="Column23"> <td class="column100 column24" data-column="Column24"> <td class="column100 column25" data-column="Column25"> <td class="column100 column26" data-column="Column26"> <td class="column100 column27" data-column="Column27"><a href=" " title="The task sequence execution engine failed execution of a task sequence."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/28/2022 09:24:34</td>
                <td class="column100 column3" data-column="column3">02/28/2022 10:05:46</td>
                <td class="column100 column4" data-column="column4">00:41:12</td>
                <td class="column100 column5" data-column="column5">02/28/2022 10:05:46</td>
                <td class="column100 column6" data-column="column6">MININT-SBVJRAN</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column10" data-column="Column10"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column17" data-column="Column17"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column18" data-column="Column18"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column19" data-column="Column19"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column20" data-column="Column20"><a href=" " title="The task sequence execution engine skipped the action (Install RST) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column21" data-column="Column21"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column22" data-column="Column22"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column23" data-column="Column23"><a href=" " title="The task sequence execution engine skipped the action (Install Package) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column24" data-column="Column24"><a href=" " title="The task sequence execution engine skipped the action (PenMount Universal Driver(AAEON)) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column25" data-column="Column25"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/10/2022 09:58:06</td>
                <td class="column100 column3" data-column="column3">02/10/2022 10:27:07</td>
                <td class="column100 column4" data-column="column4">00:29:00</td>
                <td class="column100 column5" data-column="column5">02/10/2022 10:27:07</td>
                <td class="column100 column6" data-column="column6">MININT-QTL1L55</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column10" data-column="Column10"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column17" data-column="Column17"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column18" data-column="Column18"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column19" data-column="Column19"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column20" data-column="Column20"><a href=" " title="The task sequence execution engine skipped the action (Install RST) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column21" data-column="Column21"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column22" data-column="Column22"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column23" data-column="Column23"><a href=" " title="The task sequence execution engine skipped the action (Install Package) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column24" data-column="Column24"><a href=" " title="The task sequence execution engine skipped the action (PenMount Universal Driver(AAEON)) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column25" data-column="Column25"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 16:37:14</td>
                <td class="column100 column3" data-column="column3">02/01/2022 17:10:41</td>
                <td class="column100 column4" data-column="column4">00:33:27</td>
                <td class="column100 column5" data-column="column5">02/01/2022 17:10:41</td>
                <td class="column100 column6" data-column="column6">MININT-0EV4P4H</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column10" data-column="Column10"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column17" data-column="Column17"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column18" data-column="Column18"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column19" data-column="Column19"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column20" data-column="Column20"><a href=" " title="The task sequence execution engine skipped the action (Install RST) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column21" data-column="Column21"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column22" data-column="Column22"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column23" data-column="Column23"><a href=" " title="The task sequence execution engine skipped the action (Install Package) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column24" data-column="Column24"><a href=" " title="The task sequence execution engine skipped the action (PenMount Universal Driver(AAEON)) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column25" data-column="Column25"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 14:57:27</td>
                <td class="column100 column3" data-column="column3">02/01/2022 15:28:55</td>
                <td class="column100 column4" data-column="column4">00:31:28</td>
                <td class="column100 column5" data-column="column5">02/01/2022 15:28:55</td>
                <td class="column100 column6" data-column="column6">MININT-S6NTE31</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column10" data-column="Column10"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column17" data-column="Column17"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column18" data-column="Column18"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column19" data-column="Column19"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column20" data-column="Column20"><a href=" " title="The task sequence execution engine skipped the action (Install RST) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column21" data-column="Column21"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column22" data-column="Column22"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column23" data-column="Column23"><a href=" " title="The task sequence execution engine skipped the action (Install Package) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column24" data-column="Column24"><a href=" " title="The task sequence execution engine skipped the action (PenMount Universal Driver(AAEON)) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column25" data-column="Column25"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 14:52:09</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-AJIB0IS</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 14:45:10</td>
                <td class="column100 column3" data-column="column3">02/01/2022 14:53:39</td>
                <td class="column100 column4" data-column="column4">00:08:29</td>
                <td class="column100 column5" data-column="column5">02/01/2022 14:53:39</td>
                <td class="column100 column6" data-column="column6">MININT-1SLGL7U</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column10" data-column="Column10"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><a href=" " title="The task sequence execution engine failed executing the action (Apply Windows Settings) in the group (Install Operating System) with the error code 2149711877
Action output: ... ), HRESULT=80220005 (..\smiinterface.cpp,286)
pSetupPass->setValue(m_spSettingsEngine, pszNamespace, pszPath, pszValue), HRESULT=80220005 (..\smiinterface.cpp,1126)
m_pSMIInterface->setValue( SetupPassValue[eSetupPass], pszComponentName, pszPath, pszValue ), HRESULT=80220005 (..\xmlanswerfile.cpp,782)
this->SetValue( Specialize, XML::Shell::ComponentName, XML::Shell::ComputerName::Element, pszComputerName ), HRESULT=80220005 (..\xmlanswerfile.cpp,898)
m_pImpl->SetComputerNameW(pszComputerName), HRESULT=80220005 (..\xmlanswerfile.cpp,2198)
pAnswerFile->SetComputerNameW(sValue), HRESULT=80220005 (osdwinsettings.cpp,375)
ConfigureWinSettings(), HRESULT=80220005 (osdwinsettings.cpp,707)
Could not find CCM install folder. Don't use ccmerrors.dll
Exiting with return code 0x80220005
Failed to open the Task Sequencing Environment. Code 0x80220005. Please ensure you are running this executable inside a properly configured OS Deployment task sequence.
Unknown error (Error: 80220005; Source: Unknown)."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a><td class="column100 column13" data-column="Column13"> <td class="column100 column14" data-column="Column14"> <td class="column100 column15" data-column="Column15"> <td class="column100 column16" data-column="Column16"> <td class="column100 column17" data-column="Column17"> <td class="column100 column18" data-column="Column18"> <td class="column100 column19" data-column="Column19"> <td class="column100 column20" data-column="Column20"> <td class="column100 column21" data-column="Column21"> <td class="column100 column22" data-column="Column22"> <td class="column100 column23" data-column="Column23"> <td class="column100 column24" data-column="Column24"> <td class="column100 column25" data-column="Column25"> <td class="column100 column26" data-column="Column26"> <td class="column100 column27" data-column="Column27"><a href=" " title="The task sequence execution engine failed execution of a task sequence."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 14:15:19</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-UO4I5P7</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 13:49:05</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-4K9F49S</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 11:30:53</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-EAUAFQ1</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 10:55:10</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-IMOI2D9</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 10:41:12</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-4EGEE1K</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 10:18:25</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-AB2U4MK</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 10:00:43</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-E5BHC3Q</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 09:45:20</td>
                <td class="column100 column3" data-column="column3">02/01/2022 09:56:08</td>
                <td class="column100 column4" data-column="column4">00:10:47</td>
                <td class="column100 column5" data-column="column5">02/01/2022 09:56:08</td>
                <td class="column100 column6" data-column="column6">MININT-PRCBI6M</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><a href=" " title="The task sequence execution engine failed executing the action (Apply Operating System) in the group (Install Operating System) with the error code 2147942512
Action output: ... pp,748)
ApplyImage(), HRESULT=80070070 (installimage.cpp,1923)
Apply(), HRESULT=80070070 (installimage.cpp,2112)
installer.install(), HRESULT=80070070 (installimage.cpp,2187)
Closing image file C:\_SMSTaskSequence\Packages\DTN00085\win7x64wk2010.wim
ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN00085.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN00085 before releasing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN00085
InstallImage( g_InstallPackageID,g_ImageIndex, targetVolume, ImageType_OS, g_ConfigPackageID, g_ConfigFileName, bOEMMedia, g_RunFromNet ), HRESULT=80070070 (applyos.cpp,513)
WIM error:C:\Windows\winsxs\x86_netfx-vb_compiler_ui_b03f5f7f11d50a3a_6.1.7601.22733_none_58d15f3a80cf33a9\vbc7ui.dll. 
There is not enough space on the disk. (Error: 80070070; Source: Windows)
Unable to apply (0x80070070)
Installation of image 1 in package DTN00085 failed to complete.. 
There is not enough space on the disk. (Error: 80070070; Source: Windows)."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a><td class="column100 column12" data-column="Column12"> <td class="column100 column13" data-column="Column13"> <td class="column100 column14" data-column="Column14"> <td class="column100 column15" data-column="Column15"> <td class="column100 column16" data-column="Column16"> <td class="column100 column17" data-column="Column17"> <td class="column100 column18" data-column="Column18"> <td class="column100 column19" data-column="Column19"> <td class="column100 column20" data-column="Column20"> <td class="column100 column21" data-column="Column21"> <td class="column100 column22" data-column="Column22"> <td class="column100 column23" data-column="Column23"> <td class="column100 column24" data-column="Column24"> <td class="column100 column25" data-column="Column25"> <td class="column100 column26" data-column="Column26"> <td class="column100 column27" data-column="Column27"><a href=" " title="The task sequence execution engine failed execution of a task sequence."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">01/31/2022 16:50:35</td>
                <td class="column100 column3" data-column="column3">01/31/2022 17:02:07</td>
                <td class="column100 column4" data-column="column4">00:11:31</td>
                <td class="column100 column5" data-column="column5">01/31/2022 17:02:07</td>
                <td class="column100 column6" data-column="column6">MININT-2M2G2V5</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><a href=" " title="The task sequence execution engine failed executing the action (Apply Operating System) in the group (Install Operating System) with the error code 2147942512
Action output: ... 7ce39\webengine.dll. 
There is not enough space on the disk. (Error: 80070070; Source: Windows)
Unable to apply (0x80070070)
this->imageFile.ApplyVolumeImage(imageIndex, this->targetVolume), HRESULT=80070070 (installimage.cpp,748)
ApplyImage(), HRESULT=80070070 (installimage.cpp,1923)
Apply(), HRESULT=80070070 (installimage.cpp,2112)
installer.install(), HRESULT=80070070 (installimage.cpp,2187)
Closing image file C:\_SMSTaskSequence\Packages\DTN00085\win7x64wk2010.wim
ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN00085.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN00085 before releasing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN00085
InstallImage( g_InstallPackageID, g_ImageIndex, targetVolume, ImageType_OS, g_ConfigPackageID, g_ConfigFileName, bOEMMedia, g_RunFromNet ), HRESULT=80070070 (applyos.cpp,513)
Installation of image 1 in package DTN00085 failed to complete.. 
There is not enough space on the disk. (Error: 80070070; Source: Windows)."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a><td class="column100 column12" data-column="Column12"> <td class="column100 column13" data-column="Column13"> <td class="column100 column14" data-column="Column14"> <td class="column100 column15" data-column="Column15"> <td class="column100 column16" data-column="Column16"> <td class="column100 column17" data-column="Column17"> <td class="column100 column18" data-column="Column18"> <td class="column100 column19" data-column="Column19"> <td class="column100 column20" data-column="Column20"> <td class="column100 column21" data-column="Column21"> <td class="column100 column22" data-column="Column22"> <td class="column100 column23" data-column="Column23"> <td class="column100 column24" data-column="Column24"> <td class="column100 column25" data-column="Column25"> <td class="column100 column26" data-column="Column26"> <td class="column100 column27" data-column="Column27"><a href=" " title="The task sequence execution engine failed execution of a task sequence."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">01/31/2022 16:29:16</td>
                <td class="column100 column3" data-column="column3">01/31/2022 16:40:28</td>
                <td class="column100 column4" data-column="column4">00:11:12</td>
                <td class="column100 column5" data-column="column5">01/31/2022 16:40:28</td>
                <td class="column100 column6" data-column="column6">MININT-J61V4UV</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><a href=" " title="The task sequence execution engine failed executing the action (Apply Operating System) in the group (Install Operating System) with the error code 2147942512
Action output: ... 7ce39\webengine.dll. 
There is not enough space on the disk. (Error: 80070070; Source: Windows)
Unable to apply (0x80070070)
this->imageFile.ApplyVolumeImage(imageIndex, this->targetVolume), HRESULT=80070070 (installimage.cpp,748)
ApplyImage(), HRESULT=80070070 (installimage.cpp,1923)
Apply(), HRESULT=80070070 (installimage.cpp,2112)
installer.install(), HRESULT=80070070 (installimage.cpp,2187)
Closing image file C:\_SMSTaskSequence\Packages\DTN00085\win7x64wk2010.wim
ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN00085.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN00085 before releasing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN00085
InstallImage( g_InstallPackageID, g_ImageIndex, targetVolume, ImageType_OS, g_ConfigPackageID, g_ConfigFileName, bOEMMedia, g_RunFromNet ), HRESULT=80070070 (applyos.cpp,513)
Installation of image 1 in package DTN00085 failed to complete.. 
There is not enough space on the disk. (Error: 80070070; Source: Windows)."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a><td class="column100 column12" data-column="Column12"> <td class="column100 column13" data-column="Column13"> <td class="column100 column14" data-column="Column14"> <td class="column100 column15" data-column="Column15"> <td class="column100 column16" data-column="Column16"> <td class="column100 column17" data-column="Column17"> <td class="column100 column18" data-column="Column18"> <td class="column100 column19" data-column="Column19"> <td class="column100 column20" data-column="Column20"> <td class="column100 column21" data-column="Column21"> <td class="column100 column22" data-column="Column22"> <td class="column100 column23" data-column="Column23"> <td class="column100 column24" data-column="Column24"> <td class="column100 column25" data-column="Column25"> <td class="column100 column26" data-column="Column26"> <td class="column100 column27" data-column="Column27"><a href=" " title="The task sequence execution engine failed execution of a task sequence."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a></tr>

HTML:

                    <thead>
                        <tr class = "row100 head">
                            <th class="column100 column2" data-column="column2">Image Started</th>
                            <th class="column100 column3" data-column="column3">Image Completed</th>
                            <th class="column100 column4" data-column="column4">Image Duration</th>
                            <th class="column100 column5" data-column="column5">Last Log</th>
                            <th class="column100 column6" data-column="column6">Name During Imaging</th><th class="column100 column7" data-column="Column7">1 - IB995AF</th><th class="column100 column8" data-column="Column8">2 - Check if DHCP enabled</th><th class="column100 column9" data-column="Column9">3 - Restart in Windows PE</th><th class="column100 column10" data-column="Column10">4 - Partition Disk 0 - BIOS</th><th class="column100 column11" data-column="Column11">5 - Partition Disk 0 - UEFI</th><th class="column100 column12" data-column="Column12">6 - Apply Operating System</th><th class="column100 column13" data-column="Column13">7 - Apply Windows Settings</th><th class="column100 column14" data-column="Column14">8 - Apply Network Settings</th><th class="column100 column15" data-column="Column15">9 - Install Drivers</th><th class="column100 column16" data-column="Column16">10 - Apply Device Drivers</th><th class="column100 column17" data-column="Column17">11 - Setup Windows and Configuration Manager</th><th class="column100 column18" data-column="Column18">12 - Join Domain or Workgroup</th><th class="column100 column19" data-column="Column19">13 - netsh winhttp reset proxy</th><th class="column100 column20" data-column="Column20">14 - Install Application</th><th class="column100 column21" data-column="Column21">15 - Install RST</th><th class="column100 column22" data-column="Column22">16 - Install Prereq x64</th><th class="column100 column23" data-column="Column23">17 - Install MSMQ</th><th class="column100 column24" data-column="Column24">18 - Install Package</th><th class="column100 column25" data-column="Column25">19 - PenMount Universal Driver(AAEON)</th><th class="column100 column26" data-column="Column26">20 - Set external</th><th class="column100 column27" data-column="Column27">21 - set res</th><th class="column100 column28" data-column="Column28">Exit Task Sequence</th></tr></thead><tbody><tr class="row100">
                <td class="column100 column2" data-column="column2">02/28/2022 15:14:44</td>
                <td class="column100 column3" data-column="column3">02/28/2022 15:49:45</td>
                <td class="column100 column4" data-column="column4">00:35:00</td>
                <td class="column100 column5" data-column="column5">02/28/2022 15:49:45</td>
                <td class="column100 column6" data-column="column6">MININT-L3GNT4T</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column10" data-column="Column10"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column17" data-column="Column17"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column18" data-column="Column18"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column19" data-column="Column19"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column20" data-column="Column20"><a href=" " title="The task sequence execution engine skipped the action (Install RST) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column21" data-column="Column21"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column22" data-column="Column22"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column23" data-column="Column23"><a href=" " title="The task sequence execution engine skipped the action (Install Package) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column24" data-column="Column24"><a href=" " title="The task sequence execution engine skipped the action (PenMount Universal Driver(AAEON)) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column25" data-column="Column25"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/28/2022 14:34:26</td>
                <td class="column100 column3" data-column="column3">02/28/2022 14:55:13</td>
                <td class="column100 column4" data-column="column4">00:20:47</td>
                <td class="column100 column5" data-column="column5">02/28/2022 14:55:13</td>
                <td class="column100 column6" data-column="column6">MININT-94QS2LF</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column10" data-column="Column10"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column17" data-column="Column17"><a href=" " title="The task sequence execution engine failed executing the action (Join Domain or Workgroup) in the group (Setup Operating System) with the error code 2147942453
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=&quot;COMPANY&quot;
Joining domainDOMAIN.COM and OU CN=Computers,DC=OUR_OU,DC=NL-016,DC=LAN,DC=COMPANY,DC=COM
Attempting to join and create account with OU
Result= 0x00000035
Attempting to join and create account, without OU
Result= 0x00000035
Attempting to join within the OU
Result= 0x00000035
Attempting to join without OU
Result= 0x00000035
0, HRESULT=80070035 (X:\bt\1216594\repo\src\client\OSDeployment\OsdJoin\main.cpp,420)
DoNetJoin( joinType), HRESULT=80070035 (X:\bt\1216594\repo\src\client\OSDeployment\OsdJoin\main.cpp,513)
Finished with error code 0x80070035
Failed to join domain. The account may not have permission
The network path was not found. (Error: 80070035; Source: Windows)."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a><td class="column100 column18" data-column="Column18"> <td class="column100 column19" data-column="Column19"> <td class="column100 column20" data-column="Column20"> <td class="column100 column21" data-column="Column21"> <td class="column100 column22" data-column="Column22"> <td class="column100 column23" data-column="Column23"> <td class="column100 column24" data-column="Column24"> <td class="column100 column25" data-column="Column25"> <td class="column100 column26" data-column="Column26"> <td class="column100 column27" data-column="Column27"><a href=" " title="The task sequence execution engine failed execution of a task sequence."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/28/2022 09:24:34</td>
                <td class="column100 column3" data-column="column3">02/28/2022 10:05:46</td>
                <td class="column100 column4" data-column="column4">00:41:12</td>
                <td class="column100 column5" data-column="column5">02/28/2022 10:05:46</td>
                <td class="column100 column6" data-column="column6">MININT-SBVJRAN</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column10" data-column="Column10"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column17" data-column="Column17"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column18" data-column="Column18"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column19" data-column="Column19"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column20" data-column="Column20"><a href=" " title="The task sequence execution engine skipped the action (Install RST) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column21" data-column="Column21"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column22" data-column="Column22"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column23" data-column="Column23"><a href=" " title="The task sequence execution engine skipped the action (Install Package) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column24" data-column="Column24"><a href=" " title="The task sequence execution engine skipped the action (PenMount Universal Driver(AAEON)) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column25" data-column="Column25"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/10/2022 09:58:06</td>
                <td class="column100 column3" data-column="column3">02/10/2022 10:27:07</td>
                <td class="column100 column4" data-column="column4">00:29:00</td>
                <td class="column100 column5" data-column="column5">02/10/2022 10:27:07</td>
                <td class="column100 column6" data-column="column6">MININT-QTL1L55</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column10" data-column="Column10"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column17" data-column="Column17"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column18" data-column="Column18"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column19" data-column="Column19"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column20" data-column="Column20"><a href=" " title="The task sequence execution engine skipped the action (Install RST) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column21" data-column="Column21"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column22" data-column="Column22"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column23" data-column="Column23"><a href=" " title="The task sequence execution engine skipped the action (Install Package) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column24" data-column="Column24"><a href=" " title="The task sequence execution engine skipped the action (PenMount Universal Driver(AAEON)) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column25" data-column="Column25"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 16:37:14</td>
                <td class="column100 column3" data-column="column3">02/01/2022 17:10:41</td>
                <td class="column100 column4" data-column="column4">00:33:27</td>
                <td class="column100 column5" data-column="column5">02/01/2022 17:10:41</td>
                <td class="column100 column6" data-column="column6">MININT-0EV4P4H</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column10" data-column="Column10"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column17" data-column="Column17"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column18" data-column="Column18"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column19" data-column="Column19"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column20" data-column="Column20"><a href=" " title="The task sequence execution engine skipped the action (Install RST) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column21" data-column="Column21"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column22" data-column="Column22"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column23" data-column="Column23"><a href=" " title="The task sequence execution engine skipped the action (Install Package) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column24" data-column="Column24"><a href=" " title="The task sequence execution engine skipped the action (PenMount Universal Driver(AAEON)) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column25" data-column="Column25"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 14:57:27</td>
                <td class="column100 column3" data-column="column3">02/01/2022 15:28:55</td>
                <td class="column100 column4" data-column="column4">00:31:28</td>
                <td class="column100 column5" data-column="column5">02/01/2022 15:28:55</td>
                <td class="column100 column6" data-column="column6">MININT-S6NTE31</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column10" data-column="Column10"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column17" data-column="Column17"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column18" data-column="Column18"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column19" data-column="Column19"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column20" data-column="Column20"><a href=" " title="The task sequence execution engine skipped the action (Install RST) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column21" data-column="Column21"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column22" data-column="Column22"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column23" data-column="Column23"><a href=" " title="The task sequence execution engine skipped the action (Install Package) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column24" data-column="Column24"><a href=" " title="The task sequence execution engine skipped the action (PenMount Universal Driver(AAEON)) in the group (Setup Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column25" data-column="Column25"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 14:52:09</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-AJIB0IS</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 14:45:10</td>
                <td class="column100 column3" data-column="column3">02/01/2022 14:53:39</td>
                <td class="column100 column4" data-column="column4">00:08:29</td>
                <td class="column100 column5" data-column="column5">02/01/2022 14:53:39</td>
                <td class="column100 column6" data-column="column6">MININT-1SLGL7U</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column10" data-column="Column10"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - UEFI) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><a href=" " title="The task sequence execution engine failed executing the action (Apply Windows Settings) in the group (Install Operating System) with the error code 2149711877
Action output: ... ), HRESULT=80220005 (..\smiinterface.cpp,286)
pSetupPass->setValue(m_spSettingsEngine, pszNamespace, pszPath, pszValue), HRESULT=80220005 (..\smiinterface.cpp,1126)
m_pSMIInterface->setValue( SetupPassValue[eSetupPass], pszComponentName, pszPath, pszValue ), HRESULT=80220005 (..\xmlanswerfile.cpp,782)
this->SetValue( Specialize, XML::Shell::ComponentName, XML::Shell::ComputerName::Element, pszComputerName ), HRESULT=80220005 (..\xmlanswerfile.cpp,898)
m_pImpl->SetComputerNameW(pszComputerName), HRESULT=80220005 (..\xmlanswerfile.cpp,2198)
pAnswerFile->SetComputerNameW(sValue), HRESULT=80220005 (osdwinsettings.cpp,375)
ConfigureWinSettings(), HRESULT=80220005 (osdwinsettings.cpp,707)
Could not find CCM install folder. Don't use ccmerrors.dll
Exiting with return code 0x80220005
Failed to open the Task Sequencing Environment. Code 0x80220005. Please ensure you are running this executable inside a properly configured OS Deployment task sequence.
Unknown error (Error: 80220005; Source: Unknown)."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a><td class="column100 column13" data-column="Column13"> <td class="column100 column14" data-column="Column14"> <td class="column100 column15" data-column="Column15"> <td class="column100 column16" data-column="Column16"> <td class="column100 column17" data-column="Column17"> <td class="column100 column18" data-column="Column18"> <td class="column100 column19" data-column="Column19"> <td class="column100 column20" data-column="Column20"> <td class="column100 column21" data-column="Column21"> <td class="column100 column22" data-column="Column22"> <td class="column100 column23" data-column="Column23"> <td class="column100 column24" data-column="Column24"> <td class="column100 column25" data-column="Column25"> <td class="column100 column26" data-column="Column26"> <td class="column100 column27" data-column="Column27"><a href=" " title="The task sequence execution engine failed execution of a task sequence."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 14:15:19</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-UO4I5P7</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 13:49:05</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-4K9F49S</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 11:30:53</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-EAUAFQ1</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 10:55:10</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-IMOI2D9</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 10:41:12</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-4EGEE1K</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 10:18:25</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-AB2U4MK</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 10:00:43</td>
                <td class="column100 column3" data-column="column3"></td>
                <td class="column100 column4" data-column="column4"></td>
                <td class="column100 column5" data-column="column5"></td>
                <td class="column100 column6" data-column="column6">MININT-E5BHC3Q</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column12" data-column="Column12"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column13" data-column="Column13"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column14" data-column="Column14"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column15" data-column="Column15"><a href=" " title="There was not a driver package available in the Task Sequence for this device"><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column16" data-column="Column16"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">02/01/2022 09:45:20</td>
                <td class="column100 column3" data-column="column3">02/01/2022 09:56:08</td>
                <td class="column100 column4" data-column="column4">00:10:47</td>
                <td class="column100 column5" data-column="column5">02/01/2022 09:56:08</td>
                <td class="column100 column6" data-column="column6">MININT-PRCBI6M</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><a href=" " title="The task sequence execution engine failed executing the action (Apply Operating System) in the group (Install Operating System) with the error code 2147942512
Action output: ... pp,748)
ApplyImage(), HRESULT=80070070 (installimage.cpp,1923)
Apply(), HRESULT=80070070 (installimage.cpp,2112)
installer.install(), HRESULT=80070070 (installimage.cpp,2187)
Closing image file C:\_SMSTaskSequence\Packages\DTN00085\win7x64wk2010.wim
ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN00085.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN00085 before releasing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN00085
InstallImage( g_InstallPackageID,g_ImageIndex, targetVolume, ImageType_OS, g_ConfigPackageID, g_ConfigFileName, bOEMMedia, g_RunFromNet ), HRESULT=80070070 (applyos.cpp,513)
WIM error:C:\Windows\winsxs\x86_netfx-vb_compiler_ui_b03f5f7f11d50a3a_6.1.7601.22733_none_58d15f3a80cf33a9\vbc7ui.dll. 
There is not enough space on the disk. (Error: 80070070; Source: Windows)
Unable to apply (0x80070070)
Installation of image 1 in package DTN00085 failed to complete.. 
There is not enough space on the disk. (Error: 80070070; Source: Windows)."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a><td class="column100 column12" data-column="Column12"> <td class="column100 column13" data-column="Column13"> <td class="column100 column14" data-column="Column14"> <td class="column100 column15" data-column="Column15"> <td class="column100 column16" data-column="Column16"> <td class="column100 column17" data-column="Column17"> <td class="column100 column18" data-column="Column18"> <td class="column100 column19" data-column="Column19"> <td class="column100 column20" data-column="Column20"> <td class="column100 column21" data-column="Column21"> <td class="column100 column22" data-column="Column22"> <td class="column100 column23" data-column="Column23"> <td class="column100 column24" data-column="Column24"> <td class="column100 column25" data-column="Column25"> <td class="column100 column26" data-column="Column26"> <td class="column100 column27" data-column="Column27"><a href=" " title="The task sequence execution engine failed execution of a task sequence."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">01/31/2022 16:50:35</td>
                <td class="column100 column3" data-column="column3">01/31/2022 17:02:07</td>
                <td class="column100 column4" data-column="column4">00:11:31</td>
                <td class="column100 column5" data-column="column5">01/31/2022 17:02:07</td>
                <td class="column100 column6" data-column="column6">MININT-2M2G2V5</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><a href=" " title="The task sequence execution engine failed executing the action (Apply Operating System) in the group (Install Operating System) with the error code 2147942512
Action output: ... 7ce39\webengine.dll. 
There is not enough space on the disk. (Error: 80070070; Source: Windows)
Unable to apply (0x80070070)
this->imageFile.ApplyVolumeImage(imageIndex, this->targetVolume), HRESULT=80070070 (installimage.cpp,748)
ApplyImage(), HRESULT=80070070 (installimage.cpp,1923)
Apply(), HRESULT=80070070 (installimage.cpp,2112)
installer.install(), HRESULT=80070070 (installimage.cpp,2187)
Closing image file C:\_SMSTaskSequence\Packages\DTN00085\win7x64wk2010.wim
ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN00085.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN00085 before releasing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN00085
InstallImage( g_InstallPackageID, g_ImageIndex, targetVolume, ImageType_OS, g_ConfigPackageID, g_ConfigFileName, bOEMMedia, g_RunFromNet ), HRESULT=80070070 (applyos.cpp,513)
Installation of image 1 in package DTN00085 failed to complete.. 
There is not enough space on the disk. (Error: 80070070; Source: Windows)."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a><td class="column100 column12" data-column="Column12"> <td class="column100 column13" data-column="Column13"> <td class="column100 column14" data-column="Column14"> <td class="column100 column15" data-column="Column15"> <td class="column100 column16" data-column="Column16"> <td class="column100 column17" data-column="Column17"> <td class="column100 column18" data-column="Column18"> <td class="column100 column19" data-column="Column19"> <td class="column100 column20" data-column="Column20"> <td class="column100 column21" data-column="Column21"> <td class="column100 column22" data-column="Column22"> <td class="column100 column23" data-column="Column23"> <td class="column100 column24" data-column="Column24"> <td class="column100 column25" data-column="Column25"> <td class="column100 column26" data-column="Column26"> <td class="column100 column27" data-column="Column27"><a href=" " title="The task sequence execution engine failed execution of a task sequence."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a></tr><tr class="row100">
                <td class="column100 column2" data-column="column2">01/31/2022 16:29:16</td>
                <td class="column100 column3" data-column="column3">01/31/2022 16:40:28</td>
                <td class="column100 column4" data-column="column4">00:11:12</td>
                <td class="column100 column5" data-column="column5">01/31/2022 16:40:28</td>
                <td class="column100 column6" data-column="column6">MININT-J61V4UV</td><td class="column100 column7" data-column="Column7"><a href=" " title="The task sequence execution engine skipped the action (Check if DHCP enabled) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column8" data-column="Column8"><a href=" " title="The task sequence execution engine skipped the action (Restart in Windows PE) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column9" data-column="Column9"><a href=" " title="The task sequence execution engine skipped the action (Partition Disk 0 - BIOS) in the group (Install Operating System) because the condition was evaluated to be false."><img src="../images/checks/greyCheckMark_round.png" alt="Grey Check Mark"></a><td class="column100 column10" data-column="Column10"><img src="../images/checks/greenCheckMark_round.png" alt="Green Check Mark"><td class="column100 column11" data-column="Column11"><a href=" " title="The task sequence execution engine failed executing the action (Apply Operating System) in the group (Install Operating System) with the error code 2147942512
Action output: ... 7ce39\webengine.dll. 
There is not enough space on the disk. (Error: 80070070; Source: Windows)
Unable to apply (0x80070070)
this->imageFile.ApplyVolumeImage(imageIndex, this->targetVolume), HRESULT=80070070 (installimage.cpp,748)
ApplyImage(), HRESULT=80070070 (installimage.cpp,1923)
Apply(), HRESULT=80070070 (installimage.cpp,2112)
installer.install(), HRESULT=80070070 (installimage.cpp,2187)
Closing image file C:\_SMSTaskSequence\Packages\DTN00085\win7x64wk2010.wim
ReleaseSource() for C:\_SMSTaskSequence\Packages\DTN00085.
reference count 1 for the source C:\_SMSTaskSequence\Packages\DTN00085 before releasing
Released the resolved source C:\_SMSTaskSequence\Packages\DTN00085
InstallImage( g_InstallPackageID, g_ImageIndex, targetVolume, ImageType_OS, g_ConfigPackageID, g_ConfigFileName, bOEMMedia, g_RunFromNet ), HRESULT=80070070 (applyos.cpp,513)
Installation of image 1 in package DTN00085 failed to complete.. 
There is not enough space on the disk. (Error: 80070070; Source: Windows)."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a><td class="column100 column12" data-column="Column12"> <td class="column100 column13" data-column="Column13"> <td class="column100 column14" data-column="Column14"> <td class="column100 column15" data-column="Column15"> <td class="column100 column16" data-column="Column16"> <td class="column100 column17" data-column="Column17"> <td class="column100 column18" data-column="Column18"> <td class="column100 column19" data-column="Column19"> <td class="column100 column20" data-column="Column20"> <td class="column100 column21" data-column="Column21"> <td class="column100 column22" data-column="Column22"> <td class="column100 column23" data-column="Column23"> <td class="column100 column24" data-column="Column24"> <td class="column100 column25" data-column="Column25"> <td class="column100 column26" data-column="Column26"> <td class="column100 column27" data-column="Column27"><a href=" " title="The task sequence execution engine failed execution of a task sequence."><img src="../images/checks/redCheckMark_round.png" alt="Red Check Mark"></a></tr>
PCL-CrisKolkman commented 2 years ago

I also see the same behavior at our W10 TS. While the ones that have an error seem to use the correct columns, the ones that succeeded don't (they seem to be correct up until step 19 but 20 and 21 seems to be skipped?):

image

tcox8 commented 2 years ago

I need you to manually run lines 1 - 335 for the Win7 task sequence. Then list the output of the following variables. If you can, do this with the unaltered script. i.e. run it in VS Code or ISE or PS Console.

$TSSteps $$TSDriverSteps $TSStepsNoDrivers

Keep the commands open/don't close the script, i.e. so we can interact with them.

tcox8 commented 2 years ago

I believe the issue on the Window 10 Task Sequence is due to the condition being on the group. The steps are still shown as steps but it is skipped because of the condition... digging deeper now.

Can you test by removing the condiiton from the group and placing it on the steps?

PCL-CrisKolkman commented 2 years ago

I believe the issue on the Window 10 Task Sequence is due to the condition being on the group. The steps are still shown as steps but it is skipped because of the condition... digging deeper now.

Can you test by removing the condiiton from the group and placing it on the steps?

I'm sorry but what do you mean with "condition on the group"?

And the win10 TS shows the same behavior (i.e. skipping to add the checkmarks at steps).

tcox8 commented 2 years ago

Hopefully this helps:

image

PCL-CrisKolkman commented 2 years ago

Hopefully this helps:

image

Ah that makes sense yes, thank you. I'll try that tomorrow, it's quite late here now :)

PCL-CrisKolkman commented 2 years ago

Hopefully this helps:

image

Okay so I have changed what you said and cleaned the TS up a bit (another TS but with the same issues):

image

Table looks much better now:

image

We will keep testing!

PCL-CrisKolkman commented 2 years ago

Another question: Is it possible to also display the computer name after/during the imaging?

image

This makes it easier to find out which pc went wrong. If that's not possible maybe it's possible to display the IP address the pc is using during imaging?

tcox8 commented 2 years ago

Glad to hear things are working better now! As far as the PC name. Unfortunately the Task Sequence status messages do not contain the OS Computer name or the IP address. I'm sure there is some customization you could do. Maybe changing the query to include a join with a table with IP. But I'm not sure if that exists. Another thing you could try would be to set a Task Sequence variable to name the computer. Not sure if that would work and if it would pick up the name or not.

Another thing you can do would be to pre-stage them in SCCM. I say this because devices that already exist in SCCM will show the correct name. So if you pre-stage them they should all show with he correct name.

PCL-CrisKolkman commented 2 years ago

Glad to hear things are working better now! As far as the PC name. Unfortunately the Task Sequence status messages do not contain the OS Computer name or the IP address. I'm sure there is some customization you could do. Maybe changing the query to include a join with a table with IP. But I'm not sure if that exists. Another thing you could try would be to set a Task Sequence variable to name the computer. Not sure if that would work and if it would pick up the name or not.

Another thing you can do would be to pre-stage them in SCCM. I say this because devices that already exist in SCCM will show the correct name. So if you pre-stage them they should all show with he correct name.

Hello @tcox8,

Yes and thank you for your help!

Pre-staging would be the only real option for that but our Service department is too lazy for that 😆 For now I'll close this issue and we'll see how it works.

Thanks again and keep up the great work!