19

I'm looking for a way to extract Icons from EXE files on Linux.

How can I accomplish this on Linux Ubuntu?

sebwer
  • 209
  • 1
  • 2
  • 4

1 Answers1

42

Yo can use wrestool to extract the windows icons from .exe file

sudo apt-get install icoutils
wrestool -x -t 14 source.exe > output.ico
kamiloba
  • 436
  • 5
  • 3