PC Review


Reply
Thread Tools Rate Thread

best program to fix thousands of folder shortcuts?

 
 
PD43
Guest
Posts: n/a
 
      7th Apr 2008
"George" <(E-Mail Removed)> 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"
 
Reply With Quote
 
 
 
 
Big Al
Guest
Posts: n/a
 
      7th Apr 2008
PD43 wrote:
> "George" <(E-Mail Removed)> 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.
 
Reply With Quote
 
PD43
Guest
Posts: n/a
 
      7th Apr 2008
Big Al <(E-Mail Removed)> 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.
 
Reply With Quote
 
R. McCarty
Guest
Posts: n/a
 
      7th Apr 2008
Read up on something called "Junction Points", can't guarantee it will
work but may be an alternative to renaming/recreating shortcuts.

"Big Al" <(E-Mail Removed)> wrote in message
news:HNvKj.905$NM.329@trnddc01...
> PD43 wrote:
>> "George" <(E-Mail Removed)> 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.



 
Reply With Quote
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      7th Apr 2008

"George" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> 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.


 
Reply With Quote
 
PD43
Guest
Posts: n/a
 
      7th Apr 2008
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.

 
Reply With Quote
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      7th Apr 2008

"George" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> 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()


 
Reply With Quote
 
Lord Turkey Cough
Guest
Posts: n/a
 
      8th Apr 2008

"George" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> 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.
>
>
>
>
>
>
>
>
>
>
>
>
>
>



 
Reply With Quote
 
Rock
Guest
Posts: n/a
 
      8th Apr 2008
"George" <(E-Mail Removed)> 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]

 
Reply With Quote
 
Lord Turkey Cough
Guest
Posts: n/a
 
      8th Apr 2008

"George" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> 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)

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



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
PROGRAM DATA folder suddenly missing, START menu shortcuts don't w Roger Agness Windows Vista General Discussion 4 1st Jul 2008 08:17 PM
Thousands of Copies of One Message in Sent Folder! NW Microsoft Outlook Discussion 1 1st Jun 2007 03:25 AM
Where are the 'most often used program' shortcuts? pigeonrandle Microsoft C# .NET 0 15th Jan 2007 04:27 PM
Slow file opening with thousands of files in folder k1w1 Windows XP Networking 15 6th Mar 2006 04:29 PM
Re: Viewing Folder Shortcuts in Folder List Rick \Nutcase\ Rogers Windows XP General 0 27th Aug 2004 01:04 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 04:09 AM.