+ Reply to Thread
Results 1 to 3 of 3

Modify shortcut file's shorcut

Hybrid View

  1. #1
    Valued Forum Contributor bulina2k's Avatar
    Join Date
    11-20-2012
    Location
    Urziceni, Ialomita, Romania
    MS-Off Ver
    2019 and 365
    Posts
    867

    Modify shortcut file's shorcut

    Hello friends!

    Is there a fast way to modify the target address of a shorcut file ? I have a bunch of folders and sub-folders full of these and their original target (server) just changed. E.g. :
    "\\10.10.10.3\folder\subfolder\884.1-2.filename.xls" to "\\10.10.20.7\FOLDER\folder\subfolder\884.1-2.filename.xls"

    Thank you !
    .. and don't forget to have fun!
    Bogdan.

    mark SOLVED and Add Reputation if my answer pleases you

  2. #2
    Forum Contributor
    Join Date
    09-26-2014
    Location
    Moscow, Russia
    MS-Off Ver
    MSE 10, MSE 13
    Posts
    179

    Re: Modify shortcut file's shorcut

    Good time of day!

    You may use a loop across folders and subfolders. Inside this loop you may use technichs presented down below. If you need to modify only part of every link - use "Replace" method.

    Sub Change_LNK()
        ' Go to "Tools" => "References" and activate "Microsoft Shell Controls and Automation" option
        Dim ShlX As Shell32.Shell
        Dim FolderX As Shell32.Folder
        Dim Folder_Item As Shell32.FolderItem
        Dim ShortCut As Shell32.ShellLinkObject
        
        Set ShlX = New Shell32.Shell
        Set FolderX = ShlX.Namespace("C:\Users\rvoronov\Desktop\") ' Insert your shortcut path here
        Set Folder_Item = FolderX.ParseName("Rio_Link.lnk") ' Insert your name of shorctut file here
        Set ShortCut = Folder_Item.GetLink
        
        ShortCut.Path = "C:\Users\rvoronov\Documents\OKEY Programs" ' Insert your new path here
        ShortCut.Save
    End Sub
    Best wishes and have a nice day!

  3. #3
    Valued Forum Contributor bulina2k's Avatar
    Join Date
    11-20-2012
    Location
    Urziceni, Ialomita, Romania
    MS-Off Ver
    2019 and 365
    Posts
    867

    Re: Modify shortcut file's shorcut

    Thank you very much Rioran! I was almost going to close this thread as I thought that it wasn't excel-related enough but your code works great!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 0
    Last Post: 02-20-2015, 08:13 AM
  2. Replies: 2
    Last Post: 06-09-2013, 07:21 PM
  3. Problem not wanting to open a file with modify file password...
    By JamesPrice in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 08-06-2012, 03:37 PM
  4. Shell to a Shorcut
    By Vladamir in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 01-17-2012, 06:13 PM
  5. Shorcut to put the value of one cell into another in the same work
    By Christopher ATC in forum Excel General
    Replies: 3
    Last Post: 05-11-2006, 06:40 PM
  6. [SOLVED] shorcut to formular bar
    By m_john in forum Excel General
    Replies: 2
    Last Post: 08-26-2005, 11:05 AM
  7. [SOLVED] shortcut to open file in personal.xls blocking file's macros
    By in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-13-2005, 09:05 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1