This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: "Library not registered" when using Standalone build on Vista/Windows Server 2008
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 03, 2008
03:18 AM
"Library not registered" when using Standalone build on Vista/Windows Server 2008
Hello!
I'm trying to use the automation interface in Standalone Build, but I get the following error on Windows Vista and Windows Server 2008:
WIN32OLERuntimeError: CreateProject
OLE error code:8002801D in ISWiAutomation.ISWiProject.CreateProject
Automation error
Library not registered.
HRESULT error code:0x80020009
Exception occurred.
On Windows XP, standalone build works fine.
I downloaded the standalone build installer on a Windows XP machine (which has InstallShield Premier installed) and installed it on a Windows Server 2008 machine and a Windows Vista machine.
Is the standalone build incompatible with Vista and Windows Server 2008?
I'm trying to use the automation interface in Standalone Build, but I get the following error on Windows Vista and Windows Server 2008:
WIN32OLERuntimeError: CreateProject
OLE error code:8002801D in ISWiAutomation.ISWiProject.CreateProject
Automation error
Library not registered.
HRESULT error code:0x80020009
Exception occurred.
On Windows XP, standalone build works fine.
I downloaded the standalone build installer on a Windows XP machine (which has InstallShield Premier installed) and installed it on a Windows Server 2008 machine and a Windows Vista machine.
Is the standalone build incompatible with Vista and Windows Server 2008?
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 09, 2008
02:37 PM
The StandAlone Build will work on Vista and 2008 machine, but you will need to be sure that you have full access to the registry on those machines. The SAB needs to be able to register some files in order to work.
Can you try to self-register the SAAuto14.dll file located in your StandAlone Build folder and see what happens? If it registers successfully try your automation script again and see if it works.
Can you try to self-register the SAAuto14.dll file located in your StandAlone Build folder and see what happens? If it registers successfully try your automation script again and see if it works.
(If my reply answers a question you have raised, please click "ACCEPT AS SOLUTION".)
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 10, 2008
02:10 AM
The library is registered successfully. However, the problem seems to be in CreateProject only; if I use OpenProject to open a preexisting project everything works fine. (I discovered this because I had to use a template project for other reasons, and in doing so I removed the CreateProject call.)
In any case, it would be nice to know why CreateProject fails, while opening an existing project works fine. Does CreateProject need to load other (unregistered) libraries?
In any case, it would be nice to know why CreateProject fails, while opening an existing project works fine. Does CreateProject need to load other (unregistered) libraries?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 10, 2008
06:32 PM
Please run the following VBScript on your machine and see if it works:
If it does not work, scrrun.dll needs to be installed and registered.
Set pFSO = CreateObject("Scripting.FileSystemObject")
sPath= pFSO.BuildPath("C:\test", "test.txt")
MsgBox sPath
If it does not work, scrrun.dll needs to be installed and registered.