You can literally add it any where within the routine.
Try this, do you see the message boxes?
Sub X()
' requires reference to Windoes Scripting Host object model
Dim objWSH As Object ' WshShell
Dim wshShortcut As Object 'wshShortcut
Dim strFile As String
Dim strPath As String
Dim strName As String
msgbox "About to run my code"
' if zero then path is not correct
msgbox Len(dir("C:\temp\myshortcuts",vbDirectory))
'' Set objWSH = New WshShell
Set objWSH = CreateObject("WScript.shell")
strPath = "C:\temp\MyShortcuts\"
strFile = Dir(strPath & "*.lnk")
Do While Len(strFile) > 0
Set wshShortcut = objWSH.CreateShortcut(strPath & strFile)
strName = strPath & Mid(wshShortcut.TargetPath, InStrRev(wshShortcut.TargetPath, "\") + 1)
Debug.Print wshShortcut.TargetPath, strName
'' FileCopy wshShortcut.TargetPath, strName
strFile = Dir
Loop
Set objWSH = Nothing
End Sub
Bookmarks