Connecting Tech Pros Worldwide Help | Site Map

How to determine the version of a .dll?

Jeff B. Jr
Guest
 
Posts: n/a
#1: Nov 21 '05
I need to write a small application that can check the version of a .dll
currently installed, and the version of the same .dll on an ftp server. If
the version on the ftp server is newer, it needs to be installed on the
machine. I'm having difficulty getting the version info from the .dll's.
Any help is greatly appreciated.

Thanks in advance,
Jeff B.
Crouchie1998
Guest
 
Posts: n/a
#2: Nov 21 '05

re: How to determine the version of a .dll?


Not sure if this is a repost, but I answered a question like this a few days
ago. See here:

http://msdn.microsoft.com/newsgroups...1-c1047c48a9ff

"Jeff B. Jr" wrote:
[color=blue]
> I need to write a small application that can check the version of a .dll
> currently installed, and the version of the same .dll on an ftp server. If
> the version on the ftp server is newer, it needs to be installed on the
> machine. I'm having difficulty getting the version info from the .dll's.
> Any help is greatly appreciated.
>
> Thanks in advance,
> Jeff B.[/color]
Crouchie1998
Guest
 
Posts: n/a
#3: Nov 21 '05

re: How to determine the version of a .dll?


Not sure if this is a repost, but I answered a question like this a few days
ago. See here:

http://msdn.microsoft.com/newsgroups...1-c1047c48a9ff

"Jeff B. Jr" wrote:
[color=blue]
> I need to write a small application that can check the version of a .dll
> currently installed, and the version of the same .dll on an ftp server. If
> the version on the ftp server is newer, it needs to be installed on the
> machine. I'm having difficulty getting the version info from the .dll's.
> Any help is greatly appreciated.
>
> Thanks in advance,
> Jeff B.[/color]
Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#4: Nov 21 '05

re: How to determine the version of a .dll?


"Jeff B. Jr" <JeffBJr@discussions.microsoft.com> schrieb:[color=blue]
>I need to write a small application that can check the version of a .dll
> currently installed[/color]

Take a look at 'FileVersionInfo.GetVersionInfo'.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#5: Nov 21 '05

re: How to determine the version of a .dll?


"Jeff B. Jr" <JeffBJr@discussions.microsoft.com> schrieb:[color=blue]
>I need to write a small application that can check the version of a .dll
> currently installed[/color]

Take a look at 'FileVersionInfo.GetVersionInfo'.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Crouchie1998
Guest
 
Posts: n/a
#6: Nov 21 '05

re: How to determine the version of a .dll?


Mr MVP

If you would have clicked the link I posted then you will see I have coded
an example of what you just typed.

"Herfried K. Wagner [MVP]" wrote:
[color=blue]
> "Jeff B. Jr" <JeffBJr@discussions.microsoft.com> schrieb:[color=green]
> >I need to write a small application that can check the version of a .dll
> > currently installed[/color]
>
> Take a look at 'FileVersionInfo.GetVersionInfo'.
>
> --
> M S Herfried K. Wagner
> M V P <URL:http://dotnet.mvps.org/>
> V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
>[/color]
Crouchie1998
Guest
 
Posts: n/a
#7: Nov 21 '05

re: How to determine the version of a .dll?


Mr MVP

If you would have clicked the link I posted then you will see I have coded
an example of what you just typed.

"Herfried K. Wagner [MVP]" wrote:
[color=blue]
> "Jeff B. Jr" <JeffBJr@discussions.microsoft.com> schrieb:[color=green]
> >I need to write a small application that can check the version of a .dll
> > currently installed[/color]
>
> Take a look at 'FileVersionInfo.GetVersionInfo'.
>
> --
> M S Herfried K. Wagner
> M V P <URL:http://dotnet.mvps.org/>
> V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
>[/color]
Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#8: Nov 21 '05

re: How to determine the version of a .dll?


"Crouchie1998" <Crouchie1998@discussions.microsoft.com> schrieb:[color=blue]
> If you would have clicked the link I posted then you will see I have coded
> an example of what you just typed.[/color]

From <URL:http://internet.ggu.edu/university_library/conf.html>:

"
Asynchronous Methods of communication do not require you to be online or
connected at the same time as the other you are communicating with for
example as with voice mail, email or written letters.

In the online world email, lists, conferences and newsgroups are examples of
such a method of communication.
"

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#9: Nov 21 '05

re: How to determine the version of a .dll?


"Crouchie1998" <Crouchie1998@discussions.microsoft.com> schrieb:[color=blue]
> If you would have clicked the link I posted then you will see I have coded
> an example of what you just typed.[/color]

From <URL:http://internet.ggu.edu/university_library/conf.html>:

"
Asynchronous Methods of communication do not require you to be online or
connected at the same time as the other you are communicating with for
example as with voice mail, email or written letters.

In the online world email, lists, conferences and newsgroups are examples of
such a method of communication.
"

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Closed Thread