I am developing Winform application, using C# on .NET 4.0, which need to install scripting langue(s) based on the user selection. What is the best way to detect if a particular scripting environment/Engine for a given langue(Ruby, python, Perl, etc) is installed on client machine and silently install it if not already installed.

link|improve this question

75% accept rate
Does it need to be totally silent? I'd be pretty pissed if an application started installing scripting environments without me knowing. – FrustratedWithFormsDesigner Nov 10 '10 at 17:06
1  
hmmm ... I see your point ... my target is just to give 'everything' the user need without bothering him/her to much .... i doesn't hurt if the app ask for conformation though – Yonix Nov 10 '10 at 17:14
1  
For Python, check if there's a folder C:\Python* and that there's something in it. That's the way Python manifests itself in Windows. You could also try searching the registry. – Rafe Kettler Nov 10 '10 at 17:30
feedback

1 Answer

up vote 1 down vote accepted

Though I agree with idea that a truly "silent" install might not be desirable for the users, there are many different installer packages that support silent installation.

This page actually has a good breakdown of the various installers and the command arguments needed to do unattended and silent installations. I am more familiar with MSI and it has lots of options.

So if you go this route, you'd fire up a Process (uh, Task I guess in C# 4) and run an installer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.