How to change an executable's properties? (Windows)

前端 未结 6 1895
执念已碎
执念已碎 2020-12-08 10:45

When I create a .exe, I can right click it and go to properties->details. Then I get a list like:

File Description | 
Type             | Applic         


        
6条回答
  •  旧巷少年郎
    2020-12-08 11:03

    If you want to change the FileDescription or any other version resource string on a compiled executable, rcedit (a small open-source tool) does it pretty easily:

    $ rcedit MyApp.exe --set-version-string FileDescription "My Awesome App"
    

提交回复
热议问题