We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c131724 commit 0f00ffdCopy full SHA for 0f00ffd
Scripts/inspect-exe.ps1
@@ -18,7 +18,7 @@ param([string]$PathToExe = "")
18
try {
19
if ($PathToExe -eq "" ) { $PathToExe = read-host "Enter path to executable file" }
20
21
- get-childitem $PathToExe | % {$_.VersionInfo} | Select *
+ Get-ChildItem $PathToExe | % {$_.VersionInfo} | Select *
22
exit 0 # success
23
} catch {
24
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
0 commit comments