Adding Shortcut Folder To All Domain Users

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

If anyone could help me - how can I add a shortcut folder
to ALL domain users on their Desktop ? (I do not want to
goto each users desktop profile and add it manually)

W2KServer SP3

Thank you.
Tom
 
Well the only thing that I can think of is using a logon script through GPO.
I'm assuming that you want the shortcut to be actually in the user's profile
and not the All Users profile of each machine. If so you might try the
following cmd script file:

if not exists "%userprofile%\desktop\myshortcut.lnk" copy
%logonserver%\netlogon\myshortcut.lnk "%userprofile%\desktop"

And create your shortcut (myshortcut.lnk) in the Netlogon share on a domain
controller. It will replicate to all 2000/2003 DCs in the domain.
--
Gary Mudgett, MCSE, MCSA
Windows 2000/2003 Directory Services

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top