- <#
- .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://pshscripts.blogspot.com/2011/08/show-majorpartps1.html
- 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
This blog contains PowerShell scripts, more PowerShell scripts and still more PowerShell scripts. Occasionally you may see some organisational posts.
Showing posts with label FileMajorPart. Show all posts
Showing posts with label FileMajorPart. Show all posts
Sunday, 14 August 2011
Show-MajorPart.ps1
Subscribe to:
Posts (Atom)