Table of contents
- 1. Vbscript runtime error
- 1.1. Review details problem
- 1.1.1. Solution(s)
- 1.1. Review details problem
- 2. See also
Vbscript runtime error
Review details problem
Context: OS 64 bits
You get the following error when uninstalling the software
"unable to access Vbscript Runtime for action"
Solution(s)
This error occurs when an entry in the registry is invalid or corrupted.
Check the presence of the key "HKCU\SOFTWARE\Classes\Wow6432Node\CLSID\{B54F3741-5B07-11CF-A4B0-00AA004A55E8}"
in the registry.
Delete this line if it is present (which is incorrect for the support VBScript 7 64 bits).
Then we have to register VBScript:
Run a Windows Command Prompt as administrator:
Start -> type CMD right click on "Command Prompt" and select "Run as administrator" in the command prompt type:
cd% windir% \ system32
entry and press enter: regsvr32 vbscript.dll confirm with input
Following this, the system will work without problem.
Comments