up vote 0 down vote favorite
1
share [fb]

I have a simple vbs-file on my drive c: with following content:

Set objShell = CreateObject("Scripting.FileSystemObject")

When I'm trying to launch it, I get error

c:\fso.vbs(1, 1) Microsoft VBScript runtime error: ActiveX component can't create object: 'Scripting.FileSystemObject'

I tried to login as admin and execute wscript -regserver, but didn't help.

Can someone help me please?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Assuming you are logged in as Admin, please have a look in registry for Scripting.FileSystemObject under HKCR.

If you can not find this PROGID then you are missing the required files or the component is disabled (not registered).

Scripting.FileSystemObject is implemented in scrrun.dll

link|improve this answer
Yes, you are right, I reregistered scrrun'dll regsvr32 /i "c:\windows\system32\scrrun.dll" and it works! Thanks! – Vitaliy Mar 28 '11 at 9:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.