Tagged Questions
The installscript-msi tag has no wiki summary.
5
votes
2answers
646 views
Deploy MySQL server with VisualStudio 2005 application
I have a Visual Studio 2005 project (C#) that uses MySQL as a data storage engine, i would like to create a MSI package that install the app, and after install MySQL silently. I have been looking into ...
1
vote
2answers
173 views
msi installer does not prompt user on upgrade
I have a simple msi installer setup.exe (created via VS2010).In the first installation everything is OK,The problem is in the second installation :
1.The msi settings are :
a.RemovePreviousVersions ...
1
vote
1answer
310 views
MSI or Install Shield
We need to create an installer for our application. Currently we are using Install Shield LE that is free with Visual Studio 2010. We require some of the non-free features of Install Shield and were ...
1
vote
1answer
278 views
What VSDCA_Launch mean in Custom Action script
I want to launch an application after installation with Visual Studio setup&deployment output. I follow
the article 'How do I launch an application after install in a Visual Studio Setup ...
1
vote
0answers
56 views
Child dialog is not closing
i am using Installscript MSI type project. What I am doing is that from a parent dialog, I need to open a child dialog on a button click. Now when I click the Ok button on child dialog., the dialog is ...
1
vote
1answer
736 views
How can I install a file to a directory pointed to by a registry key/value in an Installshield Installscript-MSI project?
One of the files in my installation needs to get copied into a location pointed to by a registry key/value pair on the user's destination machine.
Right now, I have a kind of kludgy solution where I ...
0
votes
1answer
30 views
ISDEV : error -6259: Internal build error
I am getting above mentioned error message. I have recently updated my Thwarte certificate because it had expired and now i am not able to build my installer. I have used pfx file and my password for ...
0
votes
0answers
25 views
Folder sturucture not creating in installscript msi project from installshield 2011
I want to create the setup of my project from Installshield 2011 in installscript MSI project and the folder structure should be
company_name->
product_name->
Help,
Include,
...
0
votes
0answers
8 views
problems in installing a newer version of MSI Installer over an older version in VS2010
I am facing a problem while trying to install a newer version of my MSI Installer over an older version.
I had put RemovePreviousVersion as TRUE. That just removes the entry from control panel but ...
0
votes
1answer
76 views
character ASCII code in InstallScript InstallShield
I want to keep user from entering character > ASCII 127 in one of the password field in installer.
I googled but didn't find any direct way for this, currently i'm using:
CHAR ch;
STRING ASCII;
...
0
votes
0answers
50 views
InstallScript Preparing to Install Dialog customization
I want to know if there is a way I can change the text and the image in the preparing to install dialog.
also, I would like to know if there is an option to remove this dialog.
Thanks,
Ben
0
votes
3answers
254 views
InstallShield File Sequence Numbers
I'm adding files to an existing InstallShield MSI project, building the MSI, and then creating an MSP from it to apply to existing installations.
Problem is, when I add new files to the MSI project, ...
0
votes
1answer
151 views
MSI write the TARGETDIR to textfile
How to write MSI's TARGETDIR to a textfile? So that my program can refer to the path written there.
0
votes
1answer
304 views
Visual Studio 2010 Setup MSI how to add content file's path to registry
Is there a simple way to add one or more content files path's to the registry under the manufacturers's program file path for the current user? I was able to do this for the executable file but not ...
0
votes
1answer
201 views
Microsoft Installer: can it upgrade a product without version number changes?
We want to use the popular major.minor.update.build_number versioning scheme. Our next product update will be version 1.0.1.
Our in-house Config Management mechanism produces Release builds and ...
0
votes
1answer
285 views
Unit testing InstallScript
I've got a handful of functions in my InstallScript that are good candidates for unit tests. My project is a InstallScript MSI project. I found an article about how to unit test Custom Actions with ...