Is it possible to do a search in the C:Windows\winsxs and find any files with a certain version? For example, if ATL80.DLL has version 12345, I want to find any other .dlls in the winxsx that also have the same version.
I thought: select-string would do it but I am not getting the syntax right or there is another way.
In this special case I’d recommend to use the product version instead of the file version. As the file version used to have additional “info” in it you don’t need usually. (something like “(WinBuild.160101.0800)” or “(WinRelRS6.050727-9100)”)
So you’d end up with something like this:
[quote quote=213036]In this special case I’d recommend to use the product version instead of the file version. As the file version used to have additional “info” in it you don’t need usually. (something like “(WinBuild.160101.0800)” or “(WinRelRS6.050727-9100)”)