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:
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.