|
-
Nov 26th, 2007, 09:21 AM
#1
Thread Starter
Lively Member
Need Install Package suggestions
I need to create an install that will do the following:
- Create application folder and copy files into it.
- Register DLL's
- Add an assembly to the GAC
- Create a Start|Programs item and associate with the .exe in above folder
What can anyone suggest to do this? So far I've been able to do most of this with a Batch file. The last item I have not figured out how to do with a BAT file.
-
Nov 26th, 2007, 09:51 AM
#2
Re: Need Install Package suggestions
My two suggestions would be VB's Package and Deployment Wizard or Inno Setup.
-
Nov 26th, 2007, 11:06 AM
#3
Thread Starter
Lively Member
Re: Need Install Package suggestions
Ok I am trying INNO setup. However, I can't figure out how to make it register a dll and how to make it run the gacutil to load an assembly.
Code:
[Run]
Filename: "{app}\vcredist_x86.exe";
Filename: "{app}\gacutil.exe {app}\adodb.dll"; Parameters: "/i";
Filename: "regsvr32 {sys}\dwgminer.dll"; Parameters: "/s";
Filename: "regsvr32 {sys}\DToolsXDWG2007.dll"; Parameters: "/s";
It puts up a message that it cannot find the files even though I have them copied into the {app} directory.
-
Nov 26th, 2007, 06:53 PM
#4
Re: Need Install Package suggestions
Please read Installer Problems for more helpful information for installation
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|