|
| | |||||||
| Windows XP Discuss the Microsoft Windows XP Operating System |
| | LinkBack | Thread Tools |
| |||
| best program to fix thousands of folder shortcuts? I've got a folder that's named S that within it is a thousand different folders and files on my D partition, and on other partitions there are a thousand shortcuts to those different folders, but I've had to change the name of that S folder to something different and I want to change those shortcuts names from saying S to the current name. Is there a program to help fix the name of these shortcuts in one swoop? Maybe it would have a search and replace, or maybe it would mass fix the addresses, I don't know, but naturally I don't want to have to do them all one by one - which is almost impossible, thank you |
| |||
| Re: best program to fix thousands of folder shortcuts? "George" <george@nothome.com> wrote: >I've got a folder that's named S that within it is a thousand different >folders and files on my D partition, and on other partitions there are a >thousand shortcuts to those different folders, but I've had to change the >name of that S folder to something different and I want to change those >shortcuts names from saying S to the current name. > >Is there a program to help fix the name of these shortcuts in one swoop? Best bet is for you to google "bulk rename utility" |
| |||
| Re: best program to fix thousands of folder shortcuts? PD43 wrote: > "George" <george@nothome.com> wrote: > >> I've got a folder that's named S that within it is a thousand different >> folders and files on my D partition, and on other partitions there are a >> thousand shortcuts to those different folders, but I've had to change the >> name of that S folder to something different and I want to change those >> shortcuts names from saying S to the current name. >> >> Is there a program to help fix the name of these shortcuts in one swoop? > > Best bet is for you to google "bulk rename utility" IIRC bulk rename only renames files. I think the OP has shortcuts to deal with. That's going to be a tough one. |
| |||
| Re: best program to fix thousands of folder shortcuts? Big Al <BigAl@nowhere.com> wrote: >>> Is there a program to help fix the name of these shortcuts in one swoop? >> >> Best bet is for you to google "bulk rename utility" >IIRC bulk rename only renames files. I think the OP has shortcuts to >deal with. That's going to be a tough one. You're absolutely right. I think he's f***ed. |
| |||
| Re: best program to fix thousands of folder shortcuts? Read up on something called "Junction Points", can't guarantee it will work but may be an alternative to renaming/recreating shortcuts. "Big Al" <BigAl@nowhere.com> wrote in message news:HNvKj.905$NM.329@trnddc01... > PD43 wrote: >> "George" <george@nothome.com> wrote: >> >>> I've got a folder that's named S that within it is a thousand different >>> folders and files on my D partition, and on other partitions there are a >>> thousand shortcuts to those different folders, but I've had to change >>> the >>> name of that S folder to something different and I want to change those >>> shortcuts names from saying S to the current name. >>> >>> Is there a program to help fix the name of these shortcuts in one swoop? >> >> Best bet is for you to google "bulk rename utility" > IIRC bulk rename only renames files. I think the OP has shortcuts to > deal with. That's going to be a tough one. |
| |||
| Re: best program to fix thousands of folder shortcuts? "George" <george@nothome.com> wrote in message news:%233OhhiOmIHA.3636@TK2MSFTNGP02.phx.gbl... > I've got a folder that's named S that within it is a thousand different > folders and files on my D partition, and on other partitions there are a > thousand shortcuts to those different folders, but I've had to change the > name of that S folder to something different and I want to change those > shortcuts names from saying S to the current name. > > Is there a program to help fix the name of these shortcuts in one swoop? > Maybe it would have a search and replace, or maybe it would mass fix the > addresses, I don't know, but naturally I don't want to have to do them all > one by one - which is almost impossible, thank you Try R. McCarty's suggestion by running this command from a Command Prompt: linkd "D:\S" "D:\Your New Folder name" This means that you don't need to change your shortcuts even though folder S no longer exists. Note that drive D: must be an NTFS volume. Linkd.exe comes with the Windows Resource Kit. |
| |||
| Re: best program to fix thousands of folder shortcuts? http://www.google.com/search?hl=en&q...rtcuts+folders I can see a lot of programs that may do it - well in some sense anyway, I was just asking if anyone knows which is best one - in their experience. |
| |||
| Re: best program to fix thousands of folder shortcuts? "Pegasus (MVP)" <I.can@fly.com.oz> wrote in message news:OVgD1YPmIHA.4504@TK2MSFTNGP06.phx.gbl... > Try R. McCarty's suggestion by running this command from a > Command Prompt: > linkd "D:\S" "D:\Your New Folder name" > > This means that you don't need to change your shortcuts even though > folder S no longer exists. Note that drive D: must be an NTFS > volume. It's FAT32 though, thanks for the reply though. > Linkd.exe comes with the Windows Resource Kit. |
| |||
| Re: best program to fix thousands of folder shortcuts? On Apr 8, 5:30*am, "George" <geo...@nothome.com> wrote: > http://www.google.com/search?hl=en&q...rtcuts+folders > I can see a lot of programs that may do it - well in some sense anyway, I > was just asking if anyone knows which is best one - in their experience. Be the first on your block to be the HERO of this topic: pick a few and review them here for the next person with the same problem. |
| |||
| Re: best program to fix thousands of folder shortcuts? "George" <george@nothome.com> wrote in message news:%233OhhiOmIHA.3636@TK2MSFTNGP02.phx.gbl... > I've got a folder that's named S that within it is a thousand different > folders and files on my D partition, and on other partitions there are a > thousand shortcuts to those different folders, but I've had to change the > name of that S folder to something different and I want to change those > shortcuts names from saying S to the current name. > > Is there a program to help fix the name of these shortcuts in one swoop? > Maybe it would have a search and replace, or maybe it would mass fix the > addresses, I don't know, but naturally I don't want to have to do them all > one by one - which is almost impossible, thank you You could use the script below as an engine to change your shortcuts. The full implementation depends on where exactly your shortcuts reside and what their names are. Set objShell = CreateObject("Shell.Application") Set objFolder = objShell.Namespace("d:\") Set objFolderItem = objFolder.ParseName("Sciam.lnk") Set objShellLink = objFolderItem.GetLink objShellLink.Path = "d:\New Folder" objShellLink.Save() |
| |||
| Re: best program to fix thousands of folder shortcuts? "George" <george@nothome.com> wrote in message news:%233OhhiOmIHA.3636@TK2MSFTNGP02.phx.gbl... > I've got a folder that's named S that within it is a thousand different > folders and files on my D partition, and on other partitions there are a > thousand shortcuts to those different folders, but I've had to change the > name of that S folder to something different and I want to change those > shortcuts names from saying S to the current name. > > Is there a program to help fix the name of these shortcuts in one swoop? > Maybe it would have a search and replace, or maybe it would mass fix the > addresses, I don't know, but naturally I don't want to have to do them all > one by one - which is almost impossible, thank you Switch to something like Linux which is a proper operation system as opposed to the Mickey Mouse variety. > > > > > > > > > > > > > > |
| |||
| Re: best program to fix thousands of folder shortcuts? "George" <george@nothome.com> wrote > I've got a folder that's named S that within it is a thousand different > folders and files on my D partition, and on other partitions there are a > thousand shortcuts to those different folders, but I've had to change the > name of that S folder to something different and I want to change those > shortcuts names from saying S to the current name. > > Is there a program to help fix the name of these shortcuts in one swoop? > Maybe it would have a search and replace, or maybe it would mass fix the > addresses, I don't know, but naturally I don't want to have to do them all > one by one - which is almost impossible, thank you George, check the date on your system. You're posting from the future. -- Rock [MS-MVP] |
| |||
| Re: best program to fix thousands of folder shortcuts? "George" <george@nothome.com> wrote in message news:%233OhhiOmIHA.3636@TK2MSFTNGP02.phx.gbl... > I've got a folder that's named S that within it is a thousand different > folders and files on my D partition, and on other partitions there are a > thousand shortcuts to those different folders, but I've had to change the > name of that S folder to something different and I want to change those > shortcuts names from saying S to the current name. > > Is there a program to help fix the name of these shortcuts in one swoop? > Maybe it would have a search and replace, or maybe it would mass fix the > addresses, I don't know, but naturally I don't want to have to do them all > one by one - which is almost impossible, thank you You might like to take a look at this. http://www.robvanderwoude.com/amb_shortcuts.html I am reading it myself, out of interest. Will report back (probably) > > > > > > > > > > > > > > |
| |||
| Re: best program to fix thousands of folder shortcuts? Lord Turkey Cough wrote: > > Switch to something like Linux which is a proper operation > system as opposed to the Mickey Mouse variety. Linux is only for miscreants, malcontents, and uber-geeks who think the DOS command line is not inscrutable enough. Linux was developed so these pokenoses and nit-pickers would have a playground separate from the folk who want to have a meaningful computing experience. The OP is trying to rectify an earlier decision that turned out to be less than appropriate. Don't send him off to a sandbox used entirely by felines and those who like to play in cat poop. |
| |||
| Re: best program to fix thousands of folder shortcuts? > but I've had to change the > name of that S folder to something different and I want to change those > shortcuts names from saying S to the current name. Maybe look at the "subst" command (in help). Ed |
| Bookmarks |
| Thread Tools | |
| |
| | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Search fails to find any program shortcuts | LionNet | Windows Vista | 3 | 12-15-2007 07:00 AM |
| recent folder and shortcuts | js | Windows Vista | 0 | 08-26-2007 05:00 AM |
| Start Menu Folder Shortcuts (WMP) | Beverly Howard [Ms-MVP/MobileDev] | Pocket PC General | 0 | 03-13-2007 12:45 PM |
| RESTORE WORD PROGRAM SHORTCUTS | suekay | Microsoft Office | 3 | 02-09-2007 07:02 AM |
| Keyboard shortcuts -- Program start | jim | Windows XP | 4 | 01-04-2007 02:03 AM |
| New To Technology Questions? | Do You Need Help with Your Computer or Device? | Do You Need Help with this site? |