Tagged Questions
The getfileversion tag has no wiki summary.
5
votes
6answers
88 views
Using C#, how to know whether a folder is located on a network or not
Using C#, I would like my application to return whether a folder (with an already known path) is located in a network or in my computer.
How can I do that?
2
votes
4answers
1k views
FileVersionInfo.GetVersionInfo() incorrect in Console Application
I'm getting some serious weirdness using FileVersionInfo.GetVersionInfo() and was hoping somebody might be able to help.
The basics of the issue is that I am iterating through all the files in a ...
2
votes
2answers
941 views
Detecting the version and company name of an exe using jscript
I kwnow how to retrieve the version of an exe using jscript, but I can't find any way to retrieve other info like "Company", "Internal name" or "Product name".
function version_of( file_name )
{
...
1
vote
1answer
335 views
c# change FileVersionInfo for any file
With FileVersionInfo class is very easy to read file extra information,
but is there any way i can change it?
Thanks.
0
votes
2answers
259 views
FileVersionInfo.FileVersion returns ProductVersion?
I am trying to get the file version using C#:
string file = @"C:\somefile.dll";
Console.WriteLine(FileVersionInfo.GetVersionInfo(file).FileVersion);
For most files this is fine, however for some i ...
0
votes
2answers
315 views
Getting product version from file via cmd/bat
I have a file with Version resource that File vesrion/Product version fields are filled. I need to retrieve Product version via BAT file. Example, I have File with ProductVersion 1.0.1 in the output ...
0
votes
1answer
166 views
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 = ...
0
votes
1answer
370 views
Argument Exception with GetVersionInfo and powershell
I am trying to use powershell to get the file version of a file. If I right click the file and look at the version, it shows a value. Here is how I am trying to do it:
$path = "MSDE2000A";
$info = ...