PowerShell/Scripts/inspect-exe.ps1
2021-08-29 17:50:03 +02:00

25 lines
565 B
PowerShell
Executable File

<#
.SYNOPSIS
inspect-exe.ps1 [<path-to-exe-file>]
.DESCRIPTION
Prints basic information of the given executable file.
.EXAMPLE
PS> .\inspect-exe.ps1 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
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}