Desktop HTML Link with Logo

shamrin

Active Member
Reaction score
48
Location
Lexington, Ky
I want to put an HTML link on customer computers that links to my website. But rather than the icon for the default browser, I want it to show the logo for my company. There must be some simple way to do this but I can't figure it out. I can create a link and then do a "change icon" which points to a .ICO file but I'd rather have just a single self-contained file that I just copy across from a flash drive.

/sch
 
Off the top of my head, I would say you could probably write a tiny visual basic program that packages the icon into a single file, or perhaps a small batch that copies the icon file to whatever directory stores them and creates the shortcut.
 
Desktop Website Shortcut

Shamrin,

We do the same thing on our customer computers. All you should have to do is create a favicon.ico using your logo, upload it to the / directory of your webpage, visit the webpage, send a link (shortcut) to the desktop and it will automatically set the icon as your new favicon.ico

Chris Rahm
RahmTech Computing
www.rahmtech.com
 
Last edited:
You'd have to open that link while there, though. Favicons don't load unless you go to the website.

Edit: Chris, are you manually adding your signature? I have Show Signatures turned off in my options but yours is still showing.
 
HouseCalls,

Yes you are correct. We go to the webpage and then create the shortcut.

Yes that was manually added. First day on here. Figuring out how things work.
 
Grab the icon from the site at http://(site)/favicon.ico, right click on it and save image as in My Documents.

Right click on the desktop. New, Shortcut, fill in the URL (or copy and paste from the browser's address line)

Click on Next, and change the name to what you want displayed under the icon.

Now right click on the new icon, Properties, and Change Icon. Browse to where you saved the ico file and select it, OK and OK.

voila'
 
I love a good challenge..

Here's what you do... to get what your looking for...


1. Make sure you got your favicon.ico on your site.
2. Open your site and bookmark it. (IE Method)
3. Open your favorites folder and drag your bookmark onto the desktop...

Voila a new icon with your site url.

TekNet

=-=-=-=-=-=-=-=-=-=-=-=-
 
You'd have to open that link while there, though. Favicons don't load unless you go to the website.

Edit: Chris, are you manually adding your signature? I have Show Signatures turned off in my options but yours is still showing.

Thanks, I was missing the "and then click on it" bit. Everything is easy once you know the answer :-)
 
just make a nsis installer, those internet shortcuts are just ini files so you can not only include the icon in one file but you can use use the nsis ini functions like this

WriteIniStr "$DESKTOP\file name.url" "InternetShortcut" "URL" "http://www.example.com"
WriteIniStr "$DESKTOP\file name.url" "InternetShortcut" "IconFile" "$PROGRAMFILES\example\Logo.ico"
WriteIniStr "$DESKTOP\file name.url" "InternetShortcut" "IconIndex" "0"

to actually create the short cut
 
Back
Top