For the record, here is what I got:
Length FullName
211968 C:\windows\SysWOW64\Dism.exe
211968 C:\windows\WinSxS\x86_microsoft-windows-d..ervicing-management_31bf38...
275456 C:\windows\WinSxS\amd64_microsoft-windows-d..ervicing-management_31bf...
275456 C:\windows\System32\Dism.exe
25734 C:\windows\WinSxS\amd64_microsoft-windows-d..ervicing-management_31bf...
20293 C:\windows\WinSxS\x86_microsoft-windows-d..ervicing-management_31bf38...
So the implication is that what you have installed for 32-bit dism is 211968 and that probably corresponds to whatever version the FullName gave you. (I forgot to re-mention that even though I use -AutoSize to try to show the full path of the FullName--in order to show the version information they imply--you need to make your window wide enough to let that full path show.) Ditto for the 64-bit version.
However, I just remembered that we recently found a simpler method of getting a lot of the information that we want to have from that--use fsutil hardlink. We don't even need to specify PowerShell for this and the syntax is easier but you still need to do it as an Administrator. So here would be the syntax for that.
| fsutil hardlink list "C:\Windows\System32\dism.exe"<br><br><br><br><br><br>fsutil hardlink list "C:\Windows\SysWOW64\dism.exe" |
|---|
Unfortunately that doesn't show the length. So for example, it would not have been as helpful for making us notice that the 32-bit version of DISM had somehow been put in the other poster's System32 directory but since it is easier and at least shows what WinSxS file is linked to the system file it is probably better.
FYI
Robert