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
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.
Thanks Andrew!
Please sign in to leave a comment.