Pause SCCM deployment (build and capture)

Daniel Kaliel 1,266 Reputation points
2023-01-27T18:10:53.2566667+00:00

I need to add a pause to the build and capture task sequence so we can apply branding, install a couple pieces of software that don't work well with SCCM application deployments. How do I do this?

I know with MDT you could add a Suspend task to the sequence.

Microsoft Deployment Toolkit
Microsoft Deployment Toolkit
A collection of Microsoft tools and documentation for automating desktop and server deployment. Previously known as Microsoft Solution Accelerator for Business Desktop Deployment (BDD).
859 questions
Microsoft Configuration Manager Deployment
Microsoft Configuration Manager Deployment
Microsoft Configuration Manager: An integrated solution for for managing large groups of personal computers and servers.Deployment: The process of delivering, assembling, and maintaining a particular version of a software system at a site.
942 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. AllenLiu-MSFT 43,061 Reputation points Microsoft Vendor
    2023-01-30T02:50:19.7533333+00:00

    Hi, @Daniel Kaliel

    Thank you for posting in Microsoft Q&A forum.

    According to your description, I think you want to add a pause after the OS is installed, you may try to create a package with a vbscript and then call it in a Run Command Line like this:

    Option Explicit
    
    Dim WshShell, objShell
    
    'Create objects
    
    set objShell = CreateObject("Wscript.Shell")
    
    'Run(command, window visibility, wait)
    
    call objShell.Run("cmd.exe /k date /t & time /t", 1, True)
    
    

    The vbscript will launch a command window and wait till it is closed, thus pausing your TS.

    You may also check the other answers in this thread:

    https://social.technet.microsoft.com/Forums/windows/en-US/17cc2c51-2769-4a43-b456-570373b24643/pausing-the-sccm-osd-task-sequence


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Add comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments