How to change a file icon using AutoIt.exe?

Asked By 60 points N/A Posted on -
qa-featured

How does AutoIt.exe works and can you teach me how I can change a file icon to another using this program?

SHARE
Answered By 0 points N/A #191250

How to change a file icon using AutoIt.exe?

qa-featured

You have to add a series of lines on autoit's .au3 file. after adding the lines and saving the au3 file. Click Start, then All Programs, find and click autoit v3 on the autoit v3 click Compile Script to .exe after selecting your script, you can see your changes on your GUI. 

Here's the lines that you need to add to make the autoit icon change:

 
#Region
#AutoIt3Wrapper_Icon=C:myicon.ico
#AutoIt3Wrapper_Compression=4
#AutoIt3Wrapper_Res_Fileversion=1.0
#AutoIt3Wrapper_Res_Fileversion_AutoIncrement=y
#AutoIt3Wrapper_Run_Obfuscator=y
#EndRegion

 

Related Questions