Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Vista Newsgroups > Vista General

Vista - Mass name change...

Reply
 
Old 07-08-2007   #1 (permalink)
John Barnes


 
 

Re: Mass name change...

Use a third party product.

"silas" <silas.NOSPAMprophet@gmail.com> wrote in message
news:OieAH2YwHHA.4516@TK2MSFTNGP06.phx.gbl...
> Hi. Is there a way to change the names of a group of similarly named files
> at one time instead of one at a time. For instance, I have 75 files named
> "new data report.04.02.07", "new data report.04.09.07", "new data
> report.04.16.07","new data report.04.23.07" and so on. I'd like to remove
> the word "new" from each file name. I remember reading about a third-party
> program that can do that but I was wondering if I could do it right in
> Vista Home Premium.
>
> Thanks.
>
> silas



My System SpecsSystem Spec
Old 07-08-2007   #2 (permalink)
Spirit


 
 

Re: Mass name change...

http://www.download3k.com/System-Uti...e-Utility.html

"silas" <silas.NOSPAMprophet@gmail.com> wrote in message
news:OieAH2YwHHA.4516@TK2MSFTNGP06.phx.gbl...
> Hi. Is there a way to change the names of a group of similarly named files
> at one time instead of one at a time. For instance, I have 75 files named
> "new data report.04.02.07", "new data report.04.09.07", "new data
> report.04.16.07","new data report.04.23.07" and so on. I'd like to remove
> the word "new" from each file name. I remember reading about a third-party
> program that can do that but I was wondering if I could do it right in
> Vista Home Premium.
>
> Thanks.
>
> silas


My System SpecsSystem Spec
Old 07-08-2007   #3 (permalink)
Dave


 
 

Re: Mass name change...

Windows Explorer can do it.
highlight the files you want to change, hit F2
delete the "new ", and hit Enter

However, usually when I try this with real files, it seems to screw up...
With test files, it usually works correctly ;-)



"silas" <silas.NOSPAMprophet@gmail.com> wrote in message
news:OieAH2YwHHA.4516@TK2MSFTNGP06.phx.gbl...
> Hi. Is there a way to change the names of a group of similarly named files
> at one time instead of one at a time. For instance, I have 75 files named
> "new data report.04.02.07", "new data report.04.09.07", "new data
> report.04.16.07","new data report.04.23.07" and so on. I'd like to remove
> the word "new" from each file name. I remember reading about a third-party
> program that can do that but I was wondering if I could do it right in
> Vista Home Premium.
>
> Thanks.
>
> silas


My System SpecsSystem Spec
Old 07-08-2007   #4 (permalink)
silas


 
 

Mass name change...

Hi. Is there a way to change the names of a group of similarly named files
at one time instead of one at a time. For instance, I have 75 files named
"new data report.04.02.07", "new data report.04.09.07", "new data
report.04.16.07","new data report.04.23.07" and so on. I'd like to remove
the word "new" from each file name. I remember reading about a third-party
program that can do that but I was wondering if I could do it right in Vista
Home Premium.

Thanks.

silas

My System SpecsSystem Spec
Old 07-08-2007   #5 (permalink)
silas


 
 

Re: Mass name change...

Thank you.

silas


"Spirit" <noone@notthere.net> wrote in message
news:%23R8OJDZwHHA.4132@TK2MSFTNGP02.phx.gbl...
> http://www.download3k.com/System-Uti...e-Utility.html
>
> "silas" <silas.NOSPAMprophet@gmail.com> wrote in message
> news:OieAH2YwHHA.4516@TK2MSFTNGP06.phx.gbl...
>> Hi. Is there a way to change the names of a group of similarly named
>> files at one time instead of one at a time. For instance, I have 75 files
>> named "new data report.04.02.07", "new data report.04.09.07", "new data
>> report.04.16.07","new data report.04.23.07" and so on. I'd like to remove
>> the word "new" from each file name. I remember reading about a
>> third-party program that can do that but I was wondering if I could do it
>> right in Vista Home Premium.
>>
>> Thanks.
>>
>> silas

>


My System SpecsSystem Spec
Old 07-08-2007   #6 (permalink)
Alun Harford


 
 

Re: Mass name change...

silas wrote:
> Hi. Is there a way to change the names of a group of similarly named
> files at one time instead of one at a time. For instance, I have 75
> files named "new data report.04.02.07", "new data report.04.09.07", "new
> data report.04.16.07","new data report.04.23.07" and so on. I'd like to
> remove the word "new" from each file name. I remember reading about a
> third-party program that can do that but I was wondering if I could do
> it right in Vista Home Premium.


Shells are always good for this stuff. Unfortunately, the built-in
windows shell is useless. They were going to include Powershell, but in
the end it got pulled from Vista because it wasn't ready in time. :-(
Fortunately, you can now download powershell from:
http://www.microsoft.com/windowsserv...l/default.mspx

Then you can strip off the "new " from the start of each filename by
navigating to the directory that the files are in and using the command:

get-item "new *" | foreach { rename-item $_.Name $_.Name.SubString(4) }

Alun Harford
My System SpecsSystem Spec
Old 07-08-2007   #7 (permalink)
Stephan Rose


 
 

Re: Mass name change...

On Sun, 08 Jul 2007 22:28:50 +0100, Alun Harford wrote:

> silas wrote:
>> Hi. Is there a way to change the names of a group of similarly named
>> files at one time instead of one at a time. For instance, I have 75
>> files named "new data report.04.02.07", "new data report.04.09.07", "new
>> data report.04.16.07","new data report.04.23.07" and so on. I'd like to
>> remove the word "new" from each file name. I remember reading about a
>> third-party program that can do that but I was wondering if I could do
>> it right in Vista Home Premium.

>
> Shells are always good for this stuff. Unfortunately, the built-in
> windows shell is useless. They were going to include Powershell, but in
> the end it got pulled from Vista because it wasn't ready in time. :-(
> Fortunately, you can now download powershell from:
> http://www.microsoft.com/windowsserv...l/default.mspx
>
> Then you can strip off the "new " from the start of each filename by
> navigating to the directory that the files are in and using the command:
>
> get-item "new *" | foreach { rename-item $_.Name $_.Name.SubString(4) }


Whoa!! Wait a second...

Command-line instructions for Windows?

Isn't everything command-line considered highly forbidden? =)

--
Stephan
2003 Yamaha R6

君のこと思い出す日なんてないのは
君のこと忘れたときがないから
My System SpecsSystem Spec
Old 07-09-2007   #8 (permalink)
silas


 
 

Re: Mass name change...


"Stephan Rose" <nospam@spammer.com> wrote in message
news:xdudnUPRgrqj6QzbRVnygwA@giganews.com...
> On Sun, 08 Jul 2007 22:28:50 +0100, Alun Harford wrote:
>
>> silas wrote:
>>> Hi. Is there a way to change the names of a group of similarly named
>>> files at one time instead of one at a time. For instance, I have 75
>>> files named "new data report.04.02.07", "new data report.04.09.07", "new
>>> data report.04.16.07","new data report.04.23.07" and so on. I'd like to
>>> remove the word "new" from each file name. I remember reading about a
>>> third-party program that can do that but I was wondering if I could do
>>> it right in Vista Home Premium.

>>
>> Shells are always good for this stuff. Unfortunately, the built-in
>> windows shell is useless. They were going to include Powershell, but in
>> the end it got pulled from Vista because it wasn't ready in time. :-(
>> Fortunately, you can now download powershell from:
>> http://www.microsoft.com/windowsserv...l/default.mspx
>>
>> Then you can strip off the "new " from the start of each filename by
>> navigating to the directory that the files are in and using the command:
>>
>> get-item "new *" | foreach { rename-item $_.Name $_.Name.SubString(4) }

>
> Whoa!! Wait a second...
>
> Command-line instructions for Windows?
>
> Isn't everything command-line considered highly forbidden? =)
>
> --
> Stephan
> 2003 Yamaha R6
>
> 君のこと思い出す日なんてないのは
> 君のこと忘れたときがないから


PowerShells are new to me but it sounds interesting. I'm reading a lot of
info on it at the PowerShell blog.

Thanks, I might give this a try.

silas

My System SpecsSystem Spec
Old 07-09-2007   #9 (permalink)
Sterno@where.com


 
 

Re: Mass name change...

On Sun, 8 Jul 2007 14:32:43 -0500, "silas"
<silas.NOSPAMprophet@gmail.com> wrote:

>Hi. Is there a way to change the names of a group of similarly named files
>at one time instead of one at a time. For instance, I have 75 files named
>"new data report.04.02.07", "new data report.04.09.07", "new data
>report.04.16.07","new data report.04.23.07" and so on. I'd like to remove
>the word "new" from each file name. I remember reading about a third-party
>program that can do that but I was wondering if I could do it right in Vista
>Home Premium.
>
>Thanks.
>
>silas



There are also a number of 3rd party batch file renamers. A very
versatile one is "Quick File Renamer" at http://minimice.cjb.net/

Sterno
My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Mass change of SYNC settings Live Mail
Mass Activation...need help General Discussion
usb mass storage Overclocking & Cooling
Mass Change Genre Vista music pictures video
mass storage Vista hardware & devices


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
Designer Media Ltd

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