I am interested in getting the 'Copyright' information field using the cmd or PowerShell. Manually, it can be accessed by
RighClick the executable -> Properties -> Details -> Copyright
I am aware of the wmic datafile
command,
wmic datafile where Name="C:\Windows\System32\cmd.exe" get Manufacturer,Name,Version
but it does not give most of the detailed information from the Details
tab in the file properties.
How do I get this info using cmd or PowerShell? I believe Python should be able to solve it easily, but sometimes it is not an option to install python on production server.