I'd like to know what's the way to actually set the icon of a .bat file to an arbitrary icon. How would I go about doing that programmatically, independently of the language I may be using.

link|improve this question

50% accept rate
feedback

6 Answers

up vote 5 down vote accepted

Assuming you're referring to MS-DOS batch files: as it is simply a text file with a special extension, a .bat file doesn't store an icon of its own.

You can, however, create a shortcut in the .lnk format that stores an icon.

Sample code:

link|improve this answer
feedback

The icon displayed by the Shell (Explorer) for batch files is determined by the registry key

HKCR\batfile\DefaultIcon

which, on my computer is

%SystemRoot%\System32\imageres.dll,-68

You can set this to any icon you like.

This will however change the icons of all batch files (unless they have the extension .cmd).

link|improve this answer
feedback

you could use bat to exe converter from here

http://www.google.co.uk/#hl=en&expIds=17259,27494,27585,27846,27955&xhr=t&q=bat+to+exe+converter&cp=11&pf=p&sclient=psy&safe=off&aq=0&aqi=&aql=&oq=bat+to+exe+&gs_rfai=&pbx=1&fp=19bff151c0ba26e

and set the icon file in this program. this will convert your batch file to an executable.

link|improve this answer
feedback

I'll assume you are talking about Windows, right? I don't believe you can change the icon of a batch file directly. Icons are embedded in .EXE and .DLL files, or pointed to by .LNK files.

You could try to change the file association, but that approach may vary based on the version of Windows you are using. This is down with the registry in XP, but I'm not sure about Vista.

link|improve this answer
feedback

To do this I recommend two programs Resource Hacker and Replacer if you plan on changing the icon group in the dynamic link library file(.dll). To change the icon of an individual batch script make a shortcut and change the shortcuts icon or a Bat to Exe Converter would allow you to select an icon for the converted compressed executable program(exe).

link|improve this answer
feedback

One of the way you can achieve this is: -> create an executable Jar file -> create a batch file to run the above jar and launch the desktop java application. -> use Batch2Exe converter and covert to batch file to Exe. -> during above conversion, you can change the icon to that of your choice.(must of valid .ico file) -> place the short cut for the above exe on desktop.

now your java program can be opened in a fancy way just like any other MSWindows apps.! :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.