FileVersionInfo.FileMajorPart Property
Gets the major part of the version number.
Assembly: System (in System.dll)
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:
-
The first 16 bits are the FileMajorPart number.
-
The next 16 bits are the FileMinorPart number.
-
The third set of 16 bits are the FileBuildPart number.
-
The last 16 bits are the FilePrivatePart number.
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; }
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.
<#
.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
- 11/13/2011
- Thomas Lee