We’re putting the final touches on our new badges platform. Badge issuance remains temporarily paused, but all completions are being recorded and will be fulfilled once the platform is live. Thank you for your patience.
Licensing

Licensing

How do I manually register Windows Scripting DLL libraries?

    • FAQFAQ
      Participant

      As ADMINISTRATOR, at a Windows Command Prompt, change to the directory c:windowssystem32, then type: regsvr32.exe ole32.dll regsvr32.exe atl.dll regsvr32.exe oleaut32.dll regsvr32.exe scrrun.dll regsvr32.exe wshom.ocx regsvr32.exe jscript.dll regsvr32.exe vbscript.dll Or, create a batch file regDLLs.bat ——————————-————————— @echo on %SYSTEMROOT%system32regsvr32.exe %SYSTEMROOT%system32ole32.dll %SYSTEMROOT%system32regsvr32.exe %SYSTEMROOT%system32atl.dll %SYSTEMROOT%system32regsvr32.exe %SYSTEMROOT%system32oleaut32.dll %SYSTEMROOT%system32regsvr32.exe %SYSTEMROOT%system32scrrun.dll %SYSTEMROOT%system32regsvr32.exe %SYSTEMROOT%system32wshom.ocx %SYSTEMROOT%system32regsvr32.exe %SYSTEMROOT%system32jscript.dll %SYSTEMROOT%system32regsvr32.exe %SYSTEMROOT%system32vbscript.dll ——————————-—————————