Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to check if net framework installed, if it not installed it should be downloaded from microsoft website.

I know in that case i should use:

  • some external script/component/language which not based on .net framework to provide universal independent installation

OR

  • Use installation script which check .net framework, download it and after that run .net installer.

Is any good practice/examples/implementations of that feature?

share|improve this question

2 Answers

i'm not sure about old Setup Project template but ClickOnce installer can do it without any code. Just open project properties to Publish tab and choose prerequisites pushing same name button and click publish to create installer package.

More about is How to: Install Prerequisites with a ClickOnce Application

share|improve this answer

check if net framework installed: you can check the specify path exist or not in regedit to judge the .net install or not. For example: check .net3.0 is installed, the path is:HKEY_LOCAL_MACHINE\OFTWARE\Microsoft\NET Framework Setup\NDP\v3.0\Setup

Install .net you can use .net setup package's commandline to silent install. For example:dotnetfx.exe /q:a /c:"install /l /q"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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