Tuesday, April 13, 2010

Hide the ConfigMgr task sequence dialog box

Found this today. Figured I would post it up here.

You can hide the task sequence dialog box for a step by having your script run the following code. After that step is completed however and the next step starts, the dialog box will come back.

Set oTSProgressUI = CreateObject("Microsoft.SMS.TSProgressUI")
oTSProgressUI.CloseProgressDialog
Set oTSProgressUI = Nothing 

No comments: