Search found 27 matches

Go to advanced search

by gallyjh
Tue Aug 12, 2014 8:06 pm
Forum: Building Installers
Topic: Starting a Windows service via VBscript
Replies: 6
Views: 5536
 
Jump to post

Re: Starting a Windows service via VBscript

OK seems like I solved the issue. For future reference for others, here is how I went about it: I decided to remove the function from the VBS script. Instead I went with a batch file like: @ECHO OFF SC START MONGODB I then just added the Launch File custom action like so: 2014-08-12_12h05_18.png
by gallyjh
Tue Aug 12, 2014 6:59 pm
Forum: Building Installers
Topic: Starting a Windows service via VBscript
Replies: 6
Views: 5536
 
Jump to post

Starting a Windows service via VBscript

Hi, I silently install MongoDB, and configure the database successfully via my vbs script. I can tell from going into Windows services that the MongoDB service is installed properly. I just need to start it. In my script, I attempt to start the service with the following: strComputer = "."...
by gallyjh
Tue Jan 28, 2014 6:05 pm
Forum: Common Problems
Topic: SignTool Error on aipackagechainer.exe
Replies: 3
Views: 3471
 
Jump to post

Re: SignTool Error on aipackagechainer.exe

Thanks Dan, I'll send you the .aip file and go from there. Hopefully will update this thread in case others are running into this.
by gallyjh
Mon Jan 27, 2014 9:27 pm
Forum: Common Problems
Topic: SignTool Error on aipackagechainer.exe
Replies: 3
Views: 3471
 
Jump to post

Re: SignTool Error on aipackagechainer.exe

So apparently removing this line from the .AIP file:

Code: Select all

    <ROW Name="aipackagechainer.exe" SourcePath="<AI_CUSTACTS>aipackagechainer.exe"/>
Fixed my issue. Is this a bad thing to do? What does this file do, and why does it need to be signed?
by gallyjh
Mon Jan 27, 2014 7:48 pm
Forum: Common Problems
Topic: SignTool Error on aipackagechainer.exe
Replies: 3
Views: 3471
 
Jump to post

SignTool Error on aipackagechainer.exe

Hi So we just recently upgraded from 9.6 to 10.9. Everything was working fine but now we get this exception when attempting to build: http://i.imgur.com/75exHfn.png I've attempted to follow these two threads that seem to be dealing withe same issue: http://www.advancedinstaller.com/forums/viewtopic....
by gallyjh
Tue Dec 10, 2013 5:48 pm
Forum: Building Installers
Topic: Trying to register a COM dll. What's best practice for this?
Replies: 6
Views: 8004
 
Jump to post

Re: Trying to register a COM dll. What's best practice for t

Hi Eusebiu, So I was able resolve my issue reverting back to my first method (using vbscript). I moved the custom action to the 'Final Dialog Stage', and fixed my script to accomodate whitespace in my paths: regasm64 = Session.Property("REGASM_40_PATH_X64") regasm32 = Session.Property(&quo...
by gallyjh
Tue Dec 10, 2013 4:55 pm
Forum: Building Installers
Topic: Trying to register a COM dll. What's best practice for this?
Replies: 6
Views: 8004
 
Jump to post

Re: Trying to register a COM dll. What's best practice for t

Reporting back. This hasn't fixed my issue unfortunately. Here is my error log message: Action 9:51:54: RegisterComPlus. Registering COM+ Applications and Components MSI (s) (D0:4C) [09:51:54:578]: Executing op: ComPlusRegister(AppID={E3DB335A-46EA-4268-A4CD-6180962814D9},AplFileName=C:\Users\testus...
by gallyjh
Tue Dec 10, 2013 4:42 pm
Forum: Building Installers
Topic: Trying to register a COM dll. What's best practice for this?
Replies: 6
Views: 8004
 
Jump to post

Re: Trying to register a COM dll. What's best practice for t

I will try that, and report back. However, according to Cosmin this should have been fixed long ago correct? Hi, Please note that the COM page can register only files which have an 8.3 name format. Currently this is not specified in the User Guide, but it will be starting with the next version. Rega...
by gallyjh
Mon Dec 09, 2013 11:55 pm
Forum: Building Installers
Topic: Trying to register a COM dll. What's best practice for this?
Replies: 6
Views: 8004
 
Jump to post

Trying to register a COM dll. What's best practice for this?

So I'm attempting to register a COM dll, and having no success at this. I've tried a few different combinations: A) Attempted to use a vbscript: regasm64 = Session.Property("REGASM_40_PATH_X64") regasm32 = Session.Property("REGASM_40_PATH_X86") dllFile = Session.Property("Cl...
by gallyjh
Sun Dec 08, 2013 8:29 pm
Forum: Building Installers
Topic: How to do a search in uninstall mode?
Replies: 1
Views: 1290
 
Jump to post

How to do a search in uninstall mode?

OK so I'm having an issue that should be easy to do. I do a defined search for regasm.exe during install, and that works just fine. I assume the search is done during uninstall as well since there isn't a place to specify which modes for it be done in. However my property 'REGASM_40_PATH_X64' comes ...
by gallyjh
Wed Dec 21, 2011 3:43 pm
Forum: Common Problems
Topic: Is there a way to download a prerequisite and not run it?
Replies: 3
Views: 2334
 
Jump to post

Re: Is there a way to download a prerequisite and not run it

Hi Mihai, Thank you for the reply. Unfortunately we are limited on space on our servers and bandwidth. We are also trying to keep the installer as small as possible. So both won't work for us (I did think about that as well, and I should have mentioned those weren't options for us). In any case, is ...
by gallyjh
Tue Dec 20, 2011 5:06 pm
Forum: Common Problems
Topic: Is there a way to download a prerequisite and not run it?
Replies: 3
Views: 2334
 
Jump to post

Is there a way to download a prerequisite and not run it?

So I have an unique scenario where I require Windows Support tools to exist on the machine. This requires me to download two packages from Microsofts website: http://download.microsoft.com/download/6/e/4/6e481b67-54af-4340-a534-25de4229cfc6/support.cab http://download.microsoft.com/download/6/e/4/6e...

Go to advanced search