Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

Using a task to register a list of dlls

I am trying to register dll files to assist in the repair of the windows update process. Is this possible and if so what is the best way to do it? I know what I have is wrong, but I'm not able to work it out. Here is a sample what I have in the associated step:  

regsvr32.exe atl.dll
regsvr32.exe urlmon.dll
regsvr32.exe mshtml.dll

 

Thanks in advance for any suggestions.

1

Comments

2 comments
Date Votes
  • It looks like you are on the right track with regsvr32.exe. I recommend checking out the /s switch. 
    regsvr32.exe /s filename.dll.

    Once you get this working silently outside of PDQ, then I recommend creating a package with the commands. If the dll files aren't on the target computer, you can specify them as files to include with the package.

     

    1
  • Thanks Andrew! 

    1