There is often that one need to get an assembly’s full name, while one can do it quite simply in C# by instancing the assembly and calling GetName(), but when setting up applications outside the development environment, You can use SN.exe to retrieve the PublicKeyToken using the -T parameter, but still it would be nice to get the whole Assembly Name, so here is a small command prompt app that does the job.
Example of an Assembly full name:
"GetAsmName, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=efc52db0448864e8"
Installation,
Copy the files to Windows\System32 folder or add the path to your PATH environment variable.
Usage,
GetAsmName <<path\fileName.dll|exe>>
Download the compiled application:
.NET Version 2.0
GetAsmName2.zip (2,83 KB)
.NET Version 4.0
GetAsmName4.zip (3.22 kb)

Source Code available at GitHub