|
... found an answer
I was searching for that exact same thing today and actually found the answer... Of course it is all about registry tweaks! I copied and pasted the info from another forum and feel bad that i dont know who to give the credit to...
fotizo
"Yes this is possible
It is not hard, but you need to change the registry.
Open the register with a register editor (I use Total Commander).
Go to HKEY_LOCAL_MACHINE\SOFTWARE\HTC\HTCHomeplug\.
You will find two maps (2, 3).
If you want to create a new shortcut add a new key (name it "4" ).
In the key you need to add:
a string LaunchApPath -> point this string to the program
a string ResPath -> point this to the program or dll that contains the icon
a dword iconindex -> some executable files and dll's contain serveral icons. The normal value is 0, but it depends on the exe/dll file.
Example for adding Internet Explorer button.
Code:
[HKEY_LOCAL_MACHINE\SOFTWARE\HTC\HTCHomeplug\4]
"iconindex"=dword:00000000
"ResPath"="\\windows\\iexplore.exe"
"LaunchApPath"="\\windows\\iexplore.exe"
|