Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create a batch file which creates a shortcut on the desktop or in the start menu.

The shortcut needs to open a webpage which is a local windows server ip address(like 'http:\192.168..*:81\').

I also want to provide a custom image icon to the shortcut.

share|improve this question

3 Answers

up vote 0 down vote accepted

There is no way you can do with just batch file/windows shell commands. There are two options:

  1. Use a VBScript as described here
  2. Use third-party tools
share|improve this answer

I haven't tested it, but the link below seems to have a script in batch, yes batch, that creates shortcuts!

http://www.robvanderwoude.com/amb_shortcuts.php

share|improve this answer

If it weren't for the custom image icon requirement, I'd suggest using the following to create a batch file on the desktop like this:

echo start http://192.168.1.1:81 > "%userprofile%\desktop\Launch website.cmd"

Naturally, replace the address with the appropriate one. This doesn't create a shortcut (actually creates a file), and it won't give you a custom icon, but it's an easy way to accomplish the functionality you seem to be looking for.

Your description doesn't give enough information about the problem you're trying to solve, but if it really is simply what you say, you could also just create the shortcut once, by hand, and then use a batch file to copy that shortcut to wherever you wanted it.

Please add more detail to your question if we're missing the boat here...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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