Hello, can you tell me how to create setup file dynamically in c#.net or VB.Net.
Please reply me soon
Samir
Hello, can you tell me how to create setup file dynamically in c#.net or VB.Net.
Please reply me soon
Samir
Windows Installer databases (such as msi files) can be manipulated with the Deployment Tools Foundation (also known as "DTF") libraries. These libraries are part of the wix project.
If you have wix 3.0 installed, you can find the DTF assemblies in C:\program files\Windows Installer XML v3\sdk
.
The documentation can be found in C:\Program Files\Windows Installer XML v3\doc\
in the files dtf.chm
and dtfapi.chm
.
You might want to check out the Windows Installer SDK, which is part of the Windows SDK or Windows Platform SDK depending on the Windows Installer version you are targeting.
Depending on your setup requirements, you might also want to check out a script-based installer such as Inno Setup or nsis which might be easier to create dynamically.