Page 1 of 1
plug-in writing
Posted: Wed Nov 30, 2005 8:43 am
by HelloWorld
Hi,
i need to make a check/install plug-in for a product. Is there an example for this particulare need?
Posted: Thu Dec 01, 2005 2:28 pm
by HelloWorld
OK, made a plugin by myself.
Now a Delphi-question. I need to install a application, like
msiexec -p "somepackage.msi" /silent /noreboot
How can I check if everything went ok?

If someone has an example in any other language, please help....
Posted: Thu Dec 01, 2005 3:37 pm
by sinan
Hmm, might be best if you use the built-in
(Un)Install MSI Setup plug-in for that. It already features:
* full command line support
* full install/uninstall support
* full progress capture
* pretty much everything else
No need to reinvent the wheel

Posted: Thu Dec 01, 2005 3:41 pm
by HelloWorld
If i use the Install MSI Setup the msi-package can't be in a media block. Or how can I achieve that?
Posted: Thu Dec 01, 2005 3:46 pm
by sinan
Good point. You may use the Bundle Files plug-in available on this forum to put the MSI in a weblock. Or you may use the Download File plug-in to download it dynamically.
Posted: Thu Dec 01, 2005 3:54 pm
by HelloWorld
The problem of Download File that it makes the Single Setup pretty useless and i cant see how Bundle Files will solve my problem...
Posted: Thu Dec 01, 2005 3:55 pm
by sinan
Bundle Files does exactly what you want - it adds files to a project as sort of "support files", but can put them in web media blocks. So you can serve both single and web builds automatically with it.
Posted: Thu Dec 01, 2005 4:16 pm
by HelloWorld
Just a question, Bundle Files has a result value. What can be the possible result values?
Posted: Thu Dec 01, 2005 4:34 pm
by sinan
I do not know - I believe the plug-in author should be able to help.
Posted: Fri Dec 02, 2005 10:16 am
by wolbrink
HelloWorld wrote:Just a question, Bundle Files has a result value. What can be the possible result values?
"SUCCESS" or "ERROR"
--Troy