mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
22 lines
530 B
PowerShell
Executable File
22 lines
530 B
PowerShell
Executable File
#!/usr/bin/pwsh
|
|
<#
|
|
.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($PathToExe = "")
|
|
|
|
if ($PathToExe -eq "" ) {
|
|
$PathToExe = read-host "Enter path to executable file"
|
|
}
|
|
|
|
try {
|
|
get-childitem $PathToExe | % {$_.VersionInfo} | Select *
|
|
exit 0
|
|
} catch {
|
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|