Windows XP Community - XPHeads



best program to fix thousands of folder shortcuts?

microsoft.public.windowsxp.general


Reply
  #1 (permalink)  
Old 04-07-2008, 08:42 PM
PD43
 
Posts: n/a
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"
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 04-07-2008, 08:49 PM
Big Al
 
Posts: n/a
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-07-2008, 08:51 PM
PD43
 
Posts: n/a
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 04-07-2008, 08:58 PM
R. McCarty
 
Posts: n/a
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.



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 04-07-2008, 09:27 PM
Pegasus \(MVP\)
 
Posts: n/a
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.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 04-07-2008, 09:47 PM
PD43
 
Posts: n/a
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.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 04-07-2008, 10:20 PM
Pegasus \(MVP\)
 
Posts: n/a
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()


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 04-07-2008, 11:08 PM
Lord Turkey Cough
 
Posts: n/a
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.
>
>
>
>
>
>
>
>
>
>
>
>
>
>



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 04-08-2008, 12:06 AM
Rock
 
Posts: n/a
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]

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 04-08-2008, 12:12 AM
Lord Turkey Cough
 
Posts: n/a
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)

>
>
>
>
>
>
>
>
>
>
>
>
>
>



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 11:27 PM.


Registry Mechanic - Free Scan Now
Driver Scanner 2009 - Free Scan Now




Design by Vjacheslav Trushkin for phpBBStyles.com.
Powered by vBulletin® Version 3.6.7
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74