This topic has not yet been rated - Rate this topic

FileVersionInfo.FileMajorPart Property

Gets the major part of the version number.

Namespace:  System.Diagnostics
Assembly:  System (in System.dll)
public int FileMajorPart { get; }

Property Value

Type: System.Int32
A value representing the major part of the version number or 0 (zero) if the file did not contain version information.

Typically, a version number is displayed as "major number.minor number.build number.private part number". A file version number is a 64-bit number that holds the version number for a file as follows:

This property gets the first set of 16 bits.

The following example calls GetVersionInfo to get the FileVersionInfo for the Notepad. Then it prints the FileMajorPart in a text box. This code assumes textBox1 has been instantiated.


private void GetFileMajorPart() {
    // Get the file version for the notepad.
    FileVersionInfo myFileVersionInfo = FileVersionInfo.GetVersionInfo("%systemroot%\\Notepad.exe");

    // Print the file major part number.
    textBox1.Text = "File major part number: " + myFileVersionInfo.FileMajorPart;
 }
    


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
FileMajorPart Sample Using PowerShell
<#
.SYNOPSIS
This script shows the Major part of the version number
of file version object.
.DESCRIPTION
This script is a re-implementation of an MSDN Sample script
that uses System.Diagnostics.FileVersionInfo to get
the major part of the version number of the file.
.NOTES
File Name : Show-MajorPart.ps1
Author : Thomas Lee - tfl@psp.co.uk
Requires : PowerShell Version 2.0
.LINK
This script posted to:
http://http://pshscripts.blogspot.com
MSDN sample posted to:
http://msdn.microsoft.com/en-us/library/system.diagnostics.fileversioninfo.filemajorpart.aspx
.EXAMPLE
Psh> .\Show-MajorPart.ps1
File Major Part for C:\Windows\system32\Notepad.exe is: 6
#>
# Set filename
$File = [System.Environment]::SystemDirectory + "\Notepad.exe"

#Get Version information for this file
$myFileVersionInfo = [System.Diagnostics.FileVersionInfo]::GetVersionInfo($File)

# Print the Build details name
"File Major Part for {0} is: {1}" -f $file,$myFileVersionInfo.FileMajorPart