Hi All,
If you got bunch of DLLs and want to check the .net version for those, this is simple script you can use to find out the version.
# check .net frame work for the DLLs
$filepath=’D:\Builds\\AutomatedDeployment\Deployment\Add-PreDlls’
$files=Get-ChildItem -Path $filepath -Recurse -filter *.dll
foreach($file in $files)
{
$version = [System.Reflection.Assembly]::ReflectionOnlyLoadFrom($file.FullName).ImageRuntimeVersion;
echo "$($file) is using Framework: $version"
}
Happy scripting….
Regards,
Chaitanya