

ObjShortCut.If you set the security level to Low, you are not protected from unsafe macros, so this setting is not recommended. ObjShortCut.TargetPath = "C:\Program Files\Microsoft Office\Office14\outlook.exe" ObjShortCut.Description = "Microsoft Access 2010" ObjShortCut.TargetPath = "C:\Program Files\Microsoft Office\Office14\msaccess.exe" ObjShortCut.Description = "Microsoft Powerpoint 2010" ObjShortCut.TargetPath = "C:\Program Files\Microsoft Office\Office14\powerpnt.exe" ObjShortCut.Description = "Microsoft Excel 2010" ObjShortCut.TargetPath = "C:\Program Files\Microsoft Office\Office14\excel.exe" ObjShortCut.Description = "Microsoft Word 2010" ObjShortCut.TargetPath = "C:\Program Files\Microsoft Office\Office14\winword.exe" I have copied the above code and amended the paths to reflect the version change of office to 2010 but this also puts invalid shortcuts on the users desktop for the missing version ObjShortCut.Description = "Microsoft Outlook 2003" ObjShortCut.TargetPath = "C:\Program Files\Microsoft Office\Office11\outlook.exe" ObjShortCut.Description = "Microsoft Access 2003" ObjShortCut.TargetPath = "C:\Program Files\Microsoft Office\Office11\msaccess.exe" ObjShortCut.Description = "Microsoft Powerpoint 2003" ObjShortCut.TargetPath = "C:\Program Files\Microsoft Office\Office11\powerpnt.exe" ObjShortCut.Description = "Microsoft Excel 2003" ObjShortCut.TargetPath = "C:\Program Files\Microsoft Office\Office11\excel.exe"

ObjShortCut.Description = "Microsoft Word 2003" ObjShortCut.TargetPath = "C:\Program Files\Microsoft Office\Office11\winword.exe" Set objShortCut = objShell.CreateShortcut(strDesktopFolder & _ StrDesktopFolder = objShell.SpecialFolders("Desktop") Set objShell = WScript.CreateObject("WScript.Shell") The existing script for 2003 office only is however some machines now have office 2010 installed instead of 2003 and I am not sure how to modify the existing script to take this into consideration and deliver the correct set of icons. we have a login script that places icons for WORD EXCEL POWERPOINT OUTLOOK AND ACCESS 2003 icons on the users desktops. we have a load of XP machines with office 2003 professional installed. Am really new to this so please forgive the ignorance.
