We have an exciting announcement about badges coming in May 2025. Until then, we will temporarily stop issuing new badges for course completions and certifications. However, all completions will be recorded and fulfilled after May 2025.
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 ——————————-—————————