Traitée REGSRV32 after deployment

  • Wednesday, October 10, 2012 11:26 AM
     
     

    Hello,

    i want an automatic run of the following command after a MDT-deployment :

    regsvr32 C:\windows\System32\MSCOMCTL.OCX

    What is the best way to implement this?

    Thx

All Replies

  • Wednesday, October 10, 2012 11:57 AM
     
     
    It should work as a simple run cmmand line step in the task sequence
  • Wednesday, October 10, 2012 12:18 PM
     
     

    Hi Eschloss,

    you mean like this:

  • Wednesday, October 10, 2012 12:53 PM
     
     

    Yes, in that way.


    Regards, Vik Singh "If this thread answered your question, please click on "Mark as Answer"

  • Thursday, October 11, 2012 6:35 AM
     
     

    Hello Vik,

    i have added the command line.

    At the end of the deployment the deployment hangs on it :

    The installation will not go on...what to do?

  • Thursday, October 11, 2012 7:33 AM
     
     Answered
    Most likely that there is a dialougue box which is confirming that the regsvr32 registration complete - behind the MDT litetouch wizard - waiting for you to click on OK. So, either you have to click on OK or add /s switch to your command line to make it silent.

    Regards, Vik Singh "If this thread answered your question, please click on "Mark as Answer"

    • Marked As Answer by Mvd12345 Thursday, October 11, 2012 11:18 AM
    •  
  • Thursday, October 11, 2012 7:41 AM
     
     
    Why do you want to run this command? What are you trying to do?

    Blog: http://scriptimus.wordpress.com

  • Thursday, October 11, 2012 8:31 AM
     
     

    Hello,

    when doing /s from command-prompt in the vm i do not get a error message:

    I will try do this in the TS...i will update the result!

  • Thursday, October 11, 2012 9:01 AM
     
     

    Try this

    cmd.exe /c regsvr32 C:\windows\System32\MSCOMCTL.OCX


    Blog: http://scriptimus.wordpress.com

  • Thursday, October 11, 2012 11:18 AM
     
     

    Hello Andrew,

    thx for the answer.../s was already the solution!

    Thx