Pushing shortcuts through GP

  • Thread starter Thread starter DaveB
  • Start date Start date
D

DaveB

I want to place an internet shortcut on the Start menu
for all users in the domain. This shortcut will point to
a web app on our intranet.

I'm not sure of the best way to do this.

Also...whenever I try to do a search on these forums,
nothing is found. If I type "group" in the subject line,
it finds nothing. Am I missing something? I'm sure that
my question has been asked before...I just can't search
for it.

Thanks,

Dave
 
Yoy can create shortcuts by using a script and apply the script using Group
Policy. This should give you an idea:

Dim oShell
Dim myShortcut
Set oShell=CreateObject("wscript.shell")

Set myShortCut=oShell.CreateShortcut("c:\test_that_will_open_Notepad.lnk")
myShortcut.TargetPath="c:\windows\notepad.exe"
myShortcut.Save

Good Luck

Niclas Lindblom
 
Back
Top