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.
| ||||
|
feedback
|
|
Assuming you're referring to MS-DOS batch files: as it is simply a text file with a special extension, a You can, however, create a shortcut in the Sample code: | |||
|
feedback
|
|
The icon displayed by the Shell (Explorer) for batch files is determined by the registry key
which, on my computer is
You can set this to any icon you like. This will however change the icons of all batch files (unless they have the extension | |||
|
feedback
|
|
you could use bat to exe converter from here and set the icon file in this program. this will convert your batch file to an executable. | |||
|
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. | |||
|
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). | |||
|
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.! :) | |||
|
feedback
|