Hi,

I have a VB application and it works fine for me. When I try to install the app in client machine I got the following error.

2147319779-Automation error Library not registered.

It is a Windows Vista Ver: 6.0 machine.

I tried to register vbscript.dll through inno setup and manually but still getting the same issue. Here is the code gives the error.

dirv = dirv & "\Print"
Set fsopath = New FileSystemObject
If fsopath.FolderExists(dirv) = False Then
fsopath.CreateFolder (dirv)
End If
Set fsopath = Nothing

Please help me how to fix the issue. Thanks in advance