Ansys Assistant will be unavailable on the Learning Forum starting January 30. An upgraded version is coming soon. We apologize for any inconvenience and appreciate your patience. Stay tuned for updates.
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 ——————————-—————————