Questions tagged [getfileversion]

19 questions
0
votes
1 answer

Get Version info for download file in HTML

Our website includes a link where customers can download the latest update.exe files. We'd like to have the web page automatically display the file version info of each patch file. The files are digitally signed native windows executables. Is there…
Michael
  • 401
  • 5
  • 16
0
votes
1 answer

GetFileVersionInfo() takes exactly 2 arguments (1 given)

I'm trying to create a simple script that shows file information, but I'm running into this message error : GetFileVersionInfo() takes exactly 2 arguments (1 given) While the first two information work great import os import os.path, time from…
Mehdi ouahabi
  • 67
  • 1
  • 2
  • 11
0
votes
1 answer

Get version info of a patch file in c#

I am uploading a .msi file using fileupload control to a central location. Now i need to get version info of this file. I am using the following code. FileVersionInfo patchFile = FileVersionInfo.GetVersionInfo(completeFilePath) completeFilePath is…
Rohit Raghuvansi
  • 2,824
  • 8
  • 46
  • 74
0
votes
1 answer

How to change the file version and product name of a .dll using C?

when I click the properties of .Dll -> Details , I get this window: I want to access this information and change \ add File version and Product Name Can I get some help with it ? how can I access it ? I saw that in C# I can use : string…
user1386966
  • 3,302
  • 13
  • 43
  • 72
1
2