ProductVersion
ProductVersion gibt die Produktversionseigenschaft einer Datei zurück, falls diese Information vorliegt.
Syntax
ProductVersion
Rückgabewert
String.
Beispiel
Anzeige der Produktversion von calc.exe:
Function Main
Dim textfile As Object
Dim ver As String
Set textfile = File.Connect("127.0.0.1")
If textfile.Open("c:\windows\system32\calc.exe", GENERIC_READ, Open_Existing) Then
ver = Textfile.ProductVersion
echo("Produktversion von Calc.exe: " & ver)
textfile.Close
End If
End Function