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.

I need to unregister scriptsn.dll from a list of computers.

The line of code I have is:

regsvr32.exe /u C:\Program Files (x86)\Common Files\McAfee\SystemCore\ScriptSn.dll

This is running as a .bat but it doesn't finish. Can someone help me please.

0

Comments

3 comments
Date Votes
  • You shouldn't need to run that as a bat file. Just put that like of code as a command step and try it. Post any output you get here please.

    0
  • Dont forget to put the path within quotes.

    0
  • Oh and you have to use the /s switch to go silent.
    regsvr32.exe /u /s "C:\Program Files (x86)\Common Files\McAfee\SystemCore\ScriptSn.dll"

    Otherwise you get a prompt. Hence the batch not finishing.

    0