PowerShell/Scripts/inspect-exe.ps1
2021-10-04 21:29:23 +02:00

25 lines
577 B
PowerShell
Executable File

<#
.SYNOPSIS
Prints basic information of an executable file
.DESCRIPTION
inspect-exe.ps1 [<path-to-exe-file>]
.EXAMPLE
PS> ./inspect-exe C:\MyApp.exe
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$PathToExe = "")
try {
if ($PathToExe -eq "" ) { $PathToExe = read-host "Enter path to executable file" }
get-childitem $PathToExe | % {$_.VersionInfo} | Select *
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}