After an Application install we are required to count the GAC .dll file so I created this script that works. However while I think it's OK (for me) I don't have anyone to review it. Are there any improvements you want to recommend?
$path = "C:\Windows\Microsoft.NET\assembly\GAC_MSIL"
$app = Read-Host -Prompt 'Enter BizTalk App Name example (Order)'
Get-ChildItem -Path $path -Recurse -include "*$app*.dll" | Measure-Object | %{$_.Count} | Write-Host
Thanks in advance, I've learned a lot on this site.