>I currently have figured out a way to copy a shortcut to a website onto all
> users desktops, but I want to customize the icon. The custom icon will
> not
> work unless the icon file (.ico) is already on each of the users boxes. I
> am
> open to any way to do this. Below is what I have to put the shortcut onto
> desktops. Thanks.
>
> set WshShell = WScript.CreateObject("WScript.Shell")
> strDesktop = WshShell.SpecialFolders("Desktop")
> set oShellLink = WshShell.CreateShortcut(strDesktop & "\Waldo Work
> Requests.lnk")
> oShellLink.TargetPath =
> "
http://fmswr.com?LID=CE67DA230ed83396F2mPs2E28871"> oShellLink.WindowStyle = 1
> oShellLink.IconLocation = "C:\Program Files\Internet
> Explorer\IEXPLORE.EXE, 0"
> oShellLink.Description = "Work Request Site"
> oShellLink.Save
>
>
> "Al Dunbar" wrote:
>
>> There are a number of ways to do that kind of thing - how, precisely, do
>> you
>> want it to work, and what have you tried so far?
>>
>> And an "icon"? Do you mean an icon file or a shortcut? Where do you want
>> this to go - each individuatl user's desktop, or to the all users
>> desktop?
>>
>> /Al
>>
>> "TigerBite" <TigerBite[ at ]discussions.microsoft.com> wrote in message
>> news:8BB996C1-5DA7-4986-8FD5-37F4A597E031[ at ]microsoft.com...
>> > I'd like to script a way to copy an icon to multiple client machines.
>> > I'm
>> > very new to this scripting thing, and I've come to a dead end. Any
>> > help
>> > would be greatly appreciated.
>> >
>> >
>>
>>
>>