Version / Build Number in the Registry?

P

Patrick Roos

Hi all,

I must know the exactly version - and the build number of the dotnet
framework 2.0. (for our installations programs)

Where can I find this version - and build number in the registry?

Thank you for your answers.

Regards,

Patrick Roos
 
V

Vadym Stetsyak

Hello, Patrick!

PR> I must know the exactly version - and the build number of the dotnet
PR> framework 2.0. (for our installations programs)

PR> Where can I find this version - and build number in the registry?

If you want to check if approriate .NET framework version is installed on the system MS installer can
help you in this. You can insert lauch condition, like "MsiNetAssemblySupport >= "2.0.50727" to check if
.NET Framework 2.0 is installed. This expression is added to LaunchCondition table in the Condition column...

Have a look for more details
( http://msdn.microsoft.com/library/en-us/msi/setup/msinetassemblysupport.asp?frame=true )

--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com
 
P

Patrick Roos

Hi,

Thank you for your answer.

Unfortunately, I don't use the msiinstaller to create our installations
programs.

Isn't there a possibility to find out the exactly version number by the
registry?

Thank you for your answers.

Regards,

Patrick Roos
 
V

Vadym Stetsyak

Hello, Patrick!

PR> Unfortunately, I don't use the msiinstaller to create our installations
PR> programs.

PR> Isn't there a possibility to find out the exactly version number by the
PR> registry?

have a look at
( http://www.codeproject.com/dotnet/DetectDotNet.asp )
for SPs detection
.NET v1.0 (http://blogs.msdn.com/astebner/archive/2004/09/14/229802.aspx )
.NET v1.1 ( http://blogs.msdn.com/astebner/archive/2004/09/14/229574.aspx )

HTH
--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com
 
M

Michael Nemtsev

Hello Vadym,

BTW, you can just check HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\Policy\
in registry to detect available versions of FW

VS> Hello, Patrick!
VS>
PR>> Unfortunately, I don't use the msiinstaller to create our
PR>> installations programs.
PR>>
PR>> Isn't there a possibility to find out the exactly version number by
PR>> the registry?
PR>>
VS> have a look at
VS> ( http://www.codeproject.com/dotnet/DetectDotNet.asp )
VS> for SPs detection
VS> .NET v1.0
VS> (http://blogs.msdn.com/astebner/archive/2004/09/14/229802.aspx )
VS> .NET v1.1 (
VS> http://blogs.msdn.com/astebner/archive/2004/09/14/229574.aspx )
VS> HTH
VS> --
VS> Regards, Vadym Stetsyak
VS> www: http://vadmyst.blogspot.com
---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top