Monitor SCCM Task Sequence Progress | System Center Dudes (2024)

When deploying Windows 10 operating system using SCCM (OSD), you willneed to monitor SCCM task sequence progress. This allows us to track task sequence start, end time and most importantly errors (if any).

Our post will show 4 different ways to monitor SCCM task sequences. Each of them has its own benefits and drawbacks.

Monitor SCCM Task Sequence Using the Console

You can view the progress of a task sequence using the SCCM console. This method is simple and easy but permit to see the status of only one machine at the time. If your deployment staff don’t have access to the console or view deployment status,this option is not for you.

  • Open the SCCM Console
  • Go toMonitoring / Deployments
  • Search and right-click thedeployment linked to your Windows 10 task sequence
  • On the menu, select View Status
Monitor SCCM Task Sequence Progress | System Center Dudes (1)
  • In the Deployment Status screen, select the In Progress tab for a running task sequence or the Success tab to review a completed task sequence
  • At the bottom, click the Asset Details pane, right-click your device and select More Details
Monitor SCCM Task Sequence Progress | System Center Dudes (2)
  • On the Asset Message screen, click the Status tab
  • You can view all task sequence Action Name with their Last Message Name
Monitor SCCM Task Sequence Progress | System Center Dudes (3)

Console Status Message Queries

You can use Status Message Queries in the SCCM console to filter only task sequence messages. This method is useful to have messages from multiple devices instead of targeting a specific computer likein the previous methods. This method is a bit trickier to implement.

  • The first step is to get the DeploymentID of your task sequence deployment
  • Go to Monitoring / Deployments
  • Add the DeploymentID column by right-clicking the top row. Note your DeploymentID, in our example1002000B
Monitor SCCM Task Sequence Progress | System Center Dudes (4)
  • Go toMonitoring / System Status / Status Message Queries
  • Right-clickStatus Message Queries and select Create Status Message Query
Monitor SCCM Task Sequence Progress | System Center Dudes (5)
  • On the General tab, enter a desired Name and click on Edit Query Statement
Monitor SCCM Task Sequence Progress | System Center Dudes (6)
  • On the Query Statement Properties window, click on Show Query Language
Monitor SCCM Task Sequence Progress | System Center Dudes (7)
  • Enter the following query in the Query Statementwindow
selectSMS_StatusMessage.*,SMS_StatMsgInsStrings.*,SMS_StatMsgAttributes.*,SMS_StatMsgAttributes.AttributeTimefrom SMS_StatusMessageleft join SMS_StatMsgInsStrings on SMS_StatMsgInsStrings.RecordID = SMS_StatusMessage.RecordIDleft join SMS_StatMsgAttributes on SMS_StatMsgAttributes.RecordID = SMS_StatusMessage.RecordIDwhere SMS_StatMsgAttributes.AttributeID = 401 and SMS_StatMsgAttributes.AttributeValue = "1002000B" and SMS_StatMsgAttributes.AttributeTime >= ##PRM:SMS_StatMsgAttributes.AttributeTime##order by SMS_StatMsgAttributes.AttributeTime DESC
  • Change the SMS_StatMsgAttributes.AttributeValue to reflect your DeploymentID
Monitor SCCM Task Sequence Progress | System Center Dudes (8)
  • Click OK
  • In the Status Message Queries node, find your newly created Query, right-click on it and select Show Messages
Monitor SCCM Task Sequence Progress | System Center Dudes (9)
  • Select the desired Date and Time and click OK
Monitor SCCM Task Sequence Progress | System Center Dudes (10)
  • All messages from your selected deployment will be displayed for all devices that run it
Monitor SCCM Task Sequence Progress | System Center Dudes (11)

SCCM Built-in Reports

There’s 28 built-in reports concerning task sequence in SCCM. Themajority of the reports focus on statistics about overall deployments.To monitor progress, we refer to the 2 following reports :

  • Task Sequence – Deployment Status / Status of a specific task sequence deployment for a specific computer
    • This report shows the status summary of a specific task sequence deployment on a specific computer.
Monitor SCCM Task Sequence Progress | System Center Dudes (12)
  • Task Sequence – Deployment Status / History of a task sequence deployment on a computer
    • This report displays the status of each step of the specified task sequence deployment on the specified destination computer. If no record is returned, the task sequence has not started on the computer.
Monitor SCCM Task Sequence Progress | System Center Dudes (13)

As you can see, readability iseasier using the console but keep in mind that reports can be accessed without having console access.

SCD Power BI OSD Dashboard

We offer a Power BI Dashboard for you to buy to keep track of your Windows 10 deployment. The SCCM OSD Power BI Dashboard gives you detailed information about your current operating system deployment statistics.

Monitor SCCM Task Sequence Progress | System Center Dudes (14)

You can find the report on our shop or directly on the SCCM Windows 10 Report product page. We offer a 25% discount on this dashboard for you to use. Simply use code OSDMonitor at check out.

SCD SCCM OSD Report

If you’re not using Power BI yet, we also offer an SSRS report to keep track of your Windows 10 deployment. The report gives you all the information needed to keep track of a deployment. Simple upload the report on your reporting point.

You can find the report on our shop or directly on the SCCM Windows 10 Report product page. We offer a 25% discount on this report for you to use. Simply use code OSDMonitor at check out.

Monitor SCCM Task Sequence Progress | System Center Dudes (15)
Monitor SCCM Task Sequence Progress | System Center Dudes (16)

Monitor SCCM task sequences using Community Tools

The ConfigMgr Task Sequence Monitor tool, developed by fellow blogger Trevor Jones, is a GUI application that makes use of the task sequence execution data in the ConfigMgr database to review or monitor ConfigMgr task sequences. It can report data from historic deployments as well as monitor running ones. It’s been a while since the last update but still a good tool to use.

Monitor SCCM Task Sequence Progress | System Center Dudes (17)

SMSTS.log

Last method we want to cover to monitor Windows 10 task sequence deployment is using the SMSTS.log file. This is the method you’ll want to use when you have a failing task sequence. The SMSTS.log file contains everydetails about every steps in your task sequence. It’s the first place to look to troubleshoot a problem with a specific deployment.

The downside of this file is that it’s stored locally on the computer (by default). Another downside is that this file location changedepending on the stage you are at :

In Windows PE –Before the hard disk isformattedX:\Windows\Temp\Smstslog\Smsts.log
In Windows PE –After the hard disk isformattedX:\Smstslog\Smsts.log and C:\_SMSTaskSequence\Logs\Smstslog\Smsts.log
In Windows –Before the SCCM client is installedC:\_SMSTaskSequence\Logs\Smstslog\Smsts.log
In Windows –After the SCCM client is installedC:\Windows\Ccm\Logs\Smstslog\Smsts.log
In Windows –When the Task Sequence is completeC:\Windows\Ccm\Logs\Smsts.log
  • Connect onthe computer you want to troubleshoot
  • Press the F8 key. A command prompt will open. If you have no command prompt by pressing F8, consult our Preparation post to enable Command Line support in your Boot image
  • In the command windows, enter CMTrace to open the log viewer (it’s included by default in the latest WinPE version)
Monitor SCCM Task Sequence Progress | System Center Dudes (18)
  • Browse to the location when the file reside (see above table)
Monitor SCCM Task Sequence Progress | System Center Dudes (19)
  • The SMSTS.log opens and you can search for errors
Monitor SCCM Task Sequence Progress | System Center Dudes (20)

There’s also methods to redirect your SMSTS.log automatically to a network share which could help :

We hope this post will ease your Windows 10 deployments. Do you have a better alternative to monitor SCCM task sequence ? Leave your comments and suggestions in the comment section.

Monitor SCCM Task Sequence Progress | System Center Dudes (2024)

References

Top Articles
Latest Posts
Article information

Author: Rev. Leonie Wyman

Last Updated:

Views: 6248

Rating: 4.9 / 5 (79 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Rev. Leonie Wyman

Birthday: 1993-07-01

Address: Suite 763 6272 Lang Bypass, New Xochitlport, VT 72704-3308

Phone: +22014484519944

Job: Banking Officer

Hobby: Sailing, Gaming, Basketball, Calligraphy, Mycology, Astronomy, Juggling

Introduction: My name is Rev. Leonie Wyman, I am a colorful, tasty, splendid, fair, witty, gorgeous, splendid person who loves writing and wants to share my knowledge and understanding with you.