mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
25 lines
574 B
PowerShell
Executable File
25 lines
574 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 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 {
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|
exit 1
|
|
}
|