PowerShell/Scripts/inspect-exe.ps1
2020-12-29 14:14:21 +00:00

21 lines
534 B
PowerShell
Executable File

#!/snap/bin/powershell
<#
.SYNTAX ./inspect-exe.ps1 [<path-to-exe-file>]
.DESCRIPTION prints basic information of the given executable file
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
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
}