Created
August 4, 2016 14:35
-
-
Save echristopherson/9561e78cf138b3a39949397bd63f6915 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Sub CreateLNKFile(ByVal sShortcut As String, ByVal sFileLinkName As String) | |
'MsgBox "Creating shortcut to " & sFileLinkName & " at " & sShortcut & "." | |
Dim sh As Object | |
Dim link As Object | |
Set sh = CreateObject("WScript.Shell") | |
Set link = sh.CreateShortcut(sShortcut) | |
link.TargetPath = sFileLinkName | |
link.Save | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment