Technology Questions

Go Back   Technology Questions > Software Questions > Operating System Questions > Windows XP

Windows XP Discuss the Microsoft Windows XP Operating System

Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old 10-03-2007, 01:30 PM
Eric
Newsgroup Contributor
 
Posts: n/a
Batch Rename

I have a large batch file that copies pdf files from one network directory to
another. It works great! Now, I was wondering if it is possible to create a
batch file that copies the files and renames them? (It would be really cool
if I could use a wildcard some how that would allow me to add the date on the
end of the file name!)

I did some playing around with the "RENAME" command, but I could not get it
to work with spaces in the file name. I need to maintain the spaces in these
file names, so is there a way to make this work? As I alluded to above, I
would like to add the date to the end of the file name. If a wild card can't
be used, I will just get it setup manually once, open the file in Excel and
use the replace command.

Thanks!

Eric

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

 
Old 10-03-2007, 01:30 PM
  #2 (permalink)  
Old 10-03-2007, 01:30 PM
Pegasus \(MVP\)
Newsgroup Contributor
 
Posts: n/a
Re: Batch Rename


"Eric" <Eric@discussions.microsoft.com> wrote in message
news:1B007E04-5DF6-438D-A5F3-3FFEB7182D85@microsoft.com...
>I have a large batch file that copies pdf files from one network directory
>to
> another. It works great! Now, I was wondering if it is possible to
> create a
> batch file that copies the files and renames them? (It would be really
> cool
> if I could use a wildcard some how that would allow me to add the date on
> the
> end of the file name!)
>
> I did some playing around with the "RENAME" command, but I could not get
> it
> to work with spaces in the file name. I need to maintain the spaces in
> these
> file names, so is there a way to make this work? As I alluded to above, I
> would like to add the date to the end of the file name. If a wild card
> can't
> be used, I will just get it setup manually once, open the file in Excel
> and
> use the replace command.
>
> Thanks!
>
> Eric
>


It's probably possible but we can't tell you unless you supply
full details about the names ***before*** and ***after***
the rename command.


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

  #3 (permalink)  
Old 10-03-2007, 01:40 PM
Eric
Newsgroup Contributor
 
Posts: n/a
Re: Batch Rename

Here is an example...

Report for A & B.pdf ----> Report for A & B 1-1-07.pdf OR Report for A &
B 01012007.pdf

I would prefer the hyphenated date, but the other would be a start.

Eric

"Pegasus (MVP)" wrote:

>
> "Eric" <Eric@discussions.microsoft.com> wrote in message
> news:1B007E04-5DF6-438D-A5F3-3FFEB7182D85@microsoft.com...
> >I have a large batch file that copies pdf files from one network directory
> >to
> > another. It works great! Now, I was wondering if it is possible to
> > create a
> > batch file that copies the files and renames them? (It would be really
> > cool
> > if I could use a wildcard some how that would allow me to add the date on
> > the
> > end of the file name!)
> >
> > I did some playing around with the "RENAME" command, but I could not get
> > it
> > to work with spaces in the file name. I need to maintain the spaces in
> > these
> > file names, so is there a way to make this work? As I alluded to above, I
> > would like to add the date to the end of the file name. If a wild card
> > can't
> > be used, I will just get it setup manually once, open the file in Excel
> > and
> > use the replace command.
> >
> > Thanks!
> >
> > Eric
> >

>
> It's probably possible but we can't tell you unless you supply
> full details about the names ***before*** and ***after***
> the rename command.
>
>
>

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

  #4 (permalink)  
Old 10-03-2007, 02:00 PM
Pegasus \(MVP\)
Newsgroup Contributor
 
Posts: n/a
Re: Batch Rename

Try this batch file:

#@echo off
#set D=%date:~4%
#set D=%D:/=-%
#dir /b *.pdf > "%temp%\dir.txt"
#for /F %%a in ('type "%temp%\dir.txt"') do echo ren "%%a" "%%~na %D%.pdf"

I marked the start of each new line with a #. You must remove
it before you can run the batch file. You must also remove the
word "echo" in the last line in order to activate it. Test it before
you activate it!


"Eric" <Eric@discussions.microsoft.com> wrote in message
news:38543FB2-4734-40ED-8742-29E7097B2398@microsoft.com...
> Here is an example...
>
> Report for A & B.pdf ----> Report for A & B 1-1-07.pdf OR Report for A
> &
> B 01012007.pdf
>
> I would prefer the hyphenated date, but the other would be a start.
>
> Eric
>
> "Pegasus (MVP)" wrote:
>
>>
>> "Eric" <Eric@discussions.microsoft.com> wrote in message
>> news:1B007E04-5DF6-438D-A5F3-3FFEB7182D85@microsoft.com...
>> >I have a large batch file that copies pdf files from one network
>> >directory
>> >to
>> > another. It works great! Now, I was wondering if it is possible to
>> > create a
>> > batch file that copies the files and renames them? (It would be really
>> > cool
>> > if I could use a wildcard some how that would allow me to add the date
>> > on
>> > the
>> > end of the file name!)
>> >
>> > I did some playing around with the "RENAME" command, but I could not
>> > get
>> > it
>> > to work with spaces in the file name. I need to maintain the spaces in
>> > these
>> > file names, so is there a way to make this work? As I alluded to
>> > above, I
>> > would like to add the date to the end of the file name. If a wild card
>> > can't
>> > be used, I will just get it setup manually once, open the file in Excel
>> > and
>> > use the replace command.
>> >
>> > Thanks!
>> >
>> > Eric
>> >

>>
>> It's probably possible but we can't tell you unless you supply
>> full details about the names ***before*** and ***after***
>> the rename command.
>>
>>
>>



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

  #5 (permalink)  
Old 10-03-2007, 02:10 PM
Lem
Newsgroup Contributor
 
Posts: n/a
Re: Batch Rename

IEric wrote:
> I have a large batch file that copies pdf files from one network directory to
> another. It works great! Now, I was wondering if it is possible to create a
> batch file that copies the files and renames them? (It would be really cool
> if I could use a wildcard some how that would allow me to add the date on the
> end of the file name!)
>
> I did some playing around with the "RENAME" command, but I could not get it
> to work with spaces in the file name. I need to maintain the spaces in these
> file names, so is there a way to make this work? As I alluded to above, I
> would like to add the date to the end of the file name. If a wild card can't
> be used, I will just get it setup manually once, open the file in Excel and
> use the replace command.
>
> Thanks!
>
> Eric
>


If you don't want to write a batch file yourself, one of my favorite
freeware applications, Irfanview, includes a batch rename facility.
Among other things, you can include a param for the system date in the
name pattern. There's even a command line syntax. It's quite a powerful
tool, so you should experiment a bit with dummy files before you turn it
loose on your entire directory of pdfs. http://www.irfanview.net/


--
Lem -- MS-MVP - Networking

To the moon and back with 64 Kbits of RAM and 512 Kbits of ROM.
http://en.wikipedia.org/wiki/Apollo_Guidance_Computer
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #6 (permalink)  
Old 10-03-2007, 02:10 PM
Eric
Newsgroup Contributor
 
Posts: n/a
Re: Batch Rename

I'm sorry... but could you give me an example of what this would look like?

For the example can you use c:\temp\temp1\Report for A & B.pdf

I'm just not sure what to all type in where.

Thanks!!

"Pegasus (MVP)" wrote:

> Try this batch file:
>
> #@echo off
> #set D=%date:~4%
> #set D=%D:/=-%
> #dir /b *.pdf > "%temp%\dir.txt"
> #for /F %%a in ('type "%temp%\dir.txt"') do echo ren "%%a" "%%~na %D%.pdf"
>
> I marked the start of each new line with a #. You must remove
> it before you can run the batch file. You must also remove the
> word "echo" in the last line in order to activate it. Test it before
> you activate it!
>
>
> "Eric" <Eric@discussions.microsoft.com> wrote in message
> news:38543FB2-4734-40ED-8742-29E7097B2398@microsoft.com...
> > Here is an example...
> >
> > Report for A & B.pdf ----> Report for A & B 1-1-07.pdf OR Report for A
> > &
> > B 01012007.pdf
> >
> > I would prefer the hyphenated date, but the other would be a start.
> >
> > Eric
> >
> > "Pegasus (MVP)" wrote:
> >
> >>
> >> "Eric" <Eric@discussions.microsoft.com> wrote in message
> >> news:1B007E04-5DF6-438D-A5F3-3FFEB7182D85@microsoft.com...
> >> >I have a large batch file that copies pdf files from one network
> >> >directory
> >> >to
> >> > another. It works great! Now, I was wondering if it is possible to
> >> > create a
> >> > batch file that copies the files and renames them? (It would be really
> >> > cool
> >> > if I could use a wildcard some how that would allow me to add the date
> >> > on
> >> > the
> >> > end of the file name!)
> >> >
> >> > I did some playing around with the "RENAME" command, but I could not
> >> > get
> >> > it
> >> > to work with spaces in the file name. I need to maintain the spaces in
> >> > these
> >> > file names, so is there a way to make this work? As I alluded to
> >> > above, I
> >> > would like to add the date to the end of the file name. If a wild card
> >> > can't
> >> > be used, I will just get it setup manually once, open the file in Excel
> >> > and
> >> > use the replace command.
> >> >
> >> > Thanks!
> >> >
> >> > Eric
> >> >
> >>
> >> It's probably possible but we can't tell you unless you supply
> >> full details about the names ***before*** and ***after***
> >> the rename command.
> >>
> >>
> >>

>
>
>

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

  #7 (permalink)  
Old 10-03-2007, 02:20 PM
Pegasus \(MVP\)
Newsgroup Contributor
 
Posts: n/a
Re: Batch Rename

I gave you the lines for a batch file. Do you know how
to copy & paste them into the batch file itself? If not
then maybe Lem's Irfanview suggestion might be the
best solution for you.


"Eric" <Eric@discussions.microsoft.com> wrote in message
news:CD52DCF4-3127-4288-8B26-73727D6E990A@microsoft.com...
> I'm sorry... but could you give me an example of what this would look
> like?
>
> For the example can you use c:\temp\temp1\Report for A & B.pdf
>
> I'm just not sure what to all type in where.
>
> Thanks!!
>
> "Pegasus (MVP)" wrote:
>
>> Try this batch file:
>>
>> #@echo off
>> #set D=%date:~4%
>> #set D=%D:/=-%
>> #dir /b *.pdf > "%temp%\dir.txt"
>> #for /F %%a in ('type "%temp%\dir.txt"') do echo ren "%%a" "%%~na
>> %D%.pdf"
>>
>> I marked the start of each new line with a #. You must remove
>> it before you can run the batch file. You must also remove the
>> word "echo" in the last line in order to activate it. Test it before
>> you activate it!
>>
>>
>> "Eric" <Eric@discussions.microsoft.com> wrote in message
>> news:38543FB2-4734-40ED-8742-29E7097B2398@microsoft.com...
>> > Here is an example...
>> >
>> > Report for A & B.pdf ----> Report for A & B 1-1-07.pdf OR Report for
>> > A
>> > &
>> > B 01012007.pdf
>> >
>> > I would prefer the hyphenated date, but the other would be a start.
>> >
>> > Eric
>> >
>> > "Pegasus (MVP)" wrote:
>> >
>> >>
>> >> "Eric" <Eric@discussions.microsoft.com> wrote in message
>> >> news:1B007E04-5DF6-438D-A5F3-3FFEB7182D85@microsoft.com...
>> >> >I have a large batch file that copies pdf files from one network
>> >> >directory
>> >> >to
>> >> > another. It works great! Now, I was wondering if it is possible to
>> >> > create a
>> >> > batch file that copies the files and renames them? (It would be
>> >> > really
>> >> > cool
>> >> > if I could use a wildcard some how that would allow me to add the
>> >> > date
>> >> > on
>> >> > the
>> >> > end of the file name!)
>> >> >
>> >> > I did some playing around with the "RENAME" command, but I could not
>> >> > get
>> >> > it
>> >> > to work with spaces in the file name. I need to maintain the spaces
>> >> > in
>> >> > these
>> >> > file names, so is there a way to make this work? As I alluded to
>> >> > above, I
>> >> > would like to add the date to the end of the file name. If a wild
>> >> > card
>> >> > can't
>> >> > be used, I will just get it setup manually once, open the file in
>> >> > Excel
>> >> > and
>> >> > use the replace command.
>> >> >
>> >> > Thanks!
>> >> >
>> >> > Eric
>> >> >
>> >>
>> >> It's probably possible but we can't tell you unless you supply
>> >> full details about the names ***before*** and ***after***
>> >> the rename command.
>> >>
>> >>
>> >>

>>
>>
>>



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

  #8 (permalink)  
Old 10-03-2007, 02:40 PM
Eric
Newsgroup Contributor
 
Posts: n/a
Re: Batch Rename

I certainly do know how to copy and paste! I just didn't see any reference
to any files or directories. So???????

"Pegasus (MVP)" wrote:

> I gave you the lines for a batch file. Do you know how
> to copy & paste them into the batch file itself? If not
> then maybe Lem's Irfanview suggestion might be the
> best solution for you.
>
>
> "Eric" <Eric@discussions.microsoft.com> wrote in message
> news:CD52DCF4-3127-4288-8B26-73727D6E990A@microsoft.com...
> > I'm sorry... but could you give me an example of what this would look
> > like?
> >
> > For the example can you use c:\temp\temp1\Report for A & B.pdf
> >
> > I'm just not sure what to all type in where.
> >
> > Thanks!!
> >
> > "Pegasus (MVP)" wrote:
> >
> >> Try this batch file:
> >>
> >> #@echo off
> >> #set D=%date:~4%
> >> #set D=%D:/=-%
> >> #dir /b *.pdf > "%temp%\dir.txt"
> >> #for /F %%a in ('type "%temp%\dir.txt"') do echo ren "%%a" "%%~na
> >> %D%.pdf"
> >>
> >> I marked the start of each new line with a #. You must remove
> >> it before you can run the batch file. You must also remove the
> >> word "echo" in the last line in order to activate it. Test it before
> >> you activate it!
> >>
> >>
> >> "Eric" <Eric@discussions.microsoft.com> wrote in message
> >> news:38543FB2-4734-40ED-8742-29E7097B2398@microsoft.com...
> >> > Here is an example...
> >> >
> >> > Report for A & B.pdf ----> Report for A & B 1-1-07.pdf OR Report for
> >> > A
> >> > &
> >> > B 01012007.pdf
> >> >
> >> > I would prefer the hyphenated date, but the other would be a start.
> >> >
> >> > Eric
> >> >
> >> > "Pegasus (MVP)" wrote:
> >> >
> >> >>
> >> >> "Eric" <Eric@discussions.microsoft.com> wrote in message
> >> >> news:1B007E04-5DF6-438D-A5F3-3FFEB7182D85@microsoft.com...
> >> >> >I have a large batch file that copies pdf files from one network
> >> >> >directory
> >> >> >to
> >> >> > another. It works great! Now, I was wondering if it is possible to
> >> >> > create a
> >> >> > batch file that copies the files and renames them? (It would be
> >> >> > really
> >> >> > cool
> >> >> > if I could use a wildcard some how that would allow me to add the
> >> >> > date
> >> >> > on
> >> >> > the
> >> >> > end of the file name!)
> >> >> >
> >> >> > I did some playing around with the "RENAME" command, but I could not
> >> >> > get
> >> >> > it
> >> >> > to work with spaces in the file name. I need to maintain the spaces
> >> >> > in
> >> >> > these
> >> >> > file names, so is there a way to make this work? As I alluded to
> >> >> > above, I
> >> >> > would like to add the date to the end of the file name. If a wild
> >> >> > card
> >> >> > can't
> >> >> > be used, I will just get it setup manually once, open the file in
> >> >> > Excel
> >> >> > and
> >> >> > use the replace command.
> >> >> >
> >> >> > Thanks!
> >> >> >
> >> >> > Eric
> >> >> >
> >> >>
> >> >> It's probably possible but we can't tell you unless you supply
> >> >> full details about the names ***before*** and ***after***
> >> >> the rename command.
> >> >>
> >> >>
> >> >>
> >>
> >>
> >>

>
>
>

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

  #9 (permalink)  
Old 10-03-2007, 03:10 PM
Pegasus \(MVP\)
Newsgroup Contributor
 
Posts: n/a
Re: Batch Rename

There is a little more to it than copying & pasting. Did you try Lem's
suggestion?


"Eric" <Eric@discussions.microsoft.com> wrote in message
news:9B76C8DB-6CFD-4C5E-BCB6-331EA3E26657@microsoft.com...
>I certainly do know how to copy and paste! I just didn't see any reference
> to any files or directories. So???????
>
> "Pegasus (MVP)" wrote:
>
>> I gave you the lines for a batch file. Do you know how
>> to copy & paste them into the batch file itself? If not
>> then maybe Lem's Irfanview suggestion might be the
>> best solution for you.
>>
>>
>> "Eric" <Eric@discussions.microsoft.com> wrote in message
>> news:CD52DCF4-3127-4288-8B26-73727D6E990A@microsoft.com...
>> > I'm sorry... but could you give me an example of what this would look
>> > like?
>> >
>> > For the example can you use c:\temp\temp1\Report for A & B.pdf
>> >
>> > I'm just not sure what to all type in where.
>> >
>> > Thanks!!
>> >
>> > "Pegasus (MVP)" wrote:
>> >
>> >> Try this batch file:
>> >>
>> >> #@echo off
>> >> #set D=%date:~4%
>> >> #set D=%D:/=-%
>> >> #dir /b *.pdf > "%temp%\dir.txt"
>> >> #for /F %%a in ('type "%temp%\dir.txt"') do echo ren "%%a" "%%~na
>> >> %D%.pdf"
>> >>
>> >> I marked the start of each new line with a #. You must remove
>> >> it before you can run the batch file. You must also remove the
>> >> word "echo" in the last line in order to activate it. Test it before
>> >> you activate it!
>> >>
>> >>
>> >> "Eric" <Eric@discussions.microsoft.com> wrote in message
>> >> news:38543FB2-4734-40ED-8742-29E7097B2398@microsoft.com...
>> >> > Here is an example...
>> >> >
>> >> > Report for A & B.pdf ----> Report for A & B 1-1-07.pdf OR Report
>> >> > for
>> >> > A
>> >> > &
>> >> > B 01012007.pdf
>> >> >
>> >> > I would prefer the hyphenated date, but the other would be a start.
>> >> >
>> >> > Eric
>> >> >
>> >> > "Pegasus (MVP)" wrote:
>> >> >
>> >> >>
>> >> >> "Eric" <Eric@discussions.microsoft.com> wrote in message
>> >> >> news:1B007E04-5DF6-438D-A5F3-3FFEB7182D85@microsoft.com...
>> >> >> >I have a large batch file that copies pdf files from one network
>> >> >> >directory
>> >> >> >to
>> >> >> > another. It works great! Now, I was wondering if it is possible
>> >> >> > to
>> >> >> > create a
>> >> >> > batch file that copies the files and renames them? (It would be
>> >> >> > really
>> >> >> > cool
>> >> >> > if I could use a wildcard some how that would allow me to add the
>> >> >> > date
>> >> >> > on
>> >> >> > the
>> >> >> > end of the file name!)
>> >> >> >
>> >> >> > I did some playing around with the "RENAME" command, but I could
>> >> >> > not
>> >> >> > get
>> >> >> > it
>> >> >> > to work with spaces in the file name. I need to maintain the
>> >> >> > spaces
>> >> >> > in
>> >> >> > these
>> >> >> > file names, so is there a way to make this work? As I alluded to
>> >> >> > above, I
>> >> >> > would like to add the date to the end of the file name. If a
>> >> >> > wild
>> >> >> > card
>> >> >> > can't
>> >> >> > be used, I will just get it setup manually once, open the file in
>> >> >> > Excel
>> >> >> > and
>> >> >> > use the replace command.
>> >> >> >
>> >> >> > Thanks!
>> >> >> >
>> >> >> > Eric
>> >> >> >
>> >> >>
>> >> >> It's probably possible but we can't tell you unless you supply
>> >> >> full details about the names ***before*** and ***after***
>> >> >> the rename command.
>> >> >>
>> >> >>
>> >> >>
>> >>
>> >>
>> >>

>>
>>
>>



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

  #10 (permalink)  
Old 10-03-2007, 08:30 PM
Jerry
Newsgroup Contributor
 
Posts: n/a
Re: Batch Rename

"Lem" <lemp40********.com> wrote in message
news:ODoFbBgBIHA.5280@TK2MSFTNGP05.phx.gbl...
> IEric wrote:
>> I have a large batch file that copies pdf files from one network
>> directory to another. It works great! Now, I was wondering if it is
>> possible to create a batch file that copies the files and renames them?
>> (It would be really cool if I could use a wildcard some how that would
>> allow me to add the date on the end of the file name!) I did some
>> playing around with the "RENAME" command, but I could not get it to work
>> with spaces in the file name. I need to maintain the spaces in these
>> file names, so is there a way to make this work? As I alluded to above,
>> I would like to add the date to the end of the file name. If a wild card
>> can't be used, I will just get it setup manually once, open the file in
>> Excel and use the replace command. Thanks!
>>
>> Eric
>>

>
> If you don't want to write a batch file yourself, one of my favorite
> freeware applications, Irfanview, includes a batch rename facility. Among
> other things, you can include a param for the system date in the name
> pattern. There's even a command line syntax. It's quite a powerful tool,
> so you should experiment a bit with dummy files before you turn it loose
> on your entire directory of pdfs. http://www.irfanview.net/
>
>
> --
> Lem -- MS-MVP - Networking


I love using irfanview myself but I don't see pdf's in the list of valid
file types for irfanview. I tried the batch conversion/rename function of
irfanview but can't get it to see pdf's.


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

  #11 (permalink)  
Old 10-03-2007, 09:30 PM
Lem
Newsgroup Contributor
 
Posts: n/a
Re: Batch Rename

Jerry wrote:
> "Lem" <lemp40********.com> wrote in message
> news:ODoFbBgBIHA.5280@TK2MSFTNGP05.phx.gbl...
>> IEric wrote:
>>> I have a large batch file that copies pdf files from one network
>>> directory to another. It works great! Now, I was wondering if it is
>>> possible to create a batch file that copies the files and renames them?
>>> (It would be really cool if I could use a wildcard some how that would
>>> allow me to add the date on the end of the file name!) I did some
>>> playing around with the "RENAME" command, but I could not get it to work
>>> with spaces in the file name. I need to maintain the spaces in these
>>> file names, so is there a way to make this work? As I alluded to above,
>>> I would like to add the date to the end of the file name. If a wild card
>>> can't be used, I will just get it setup manually once, open the file in
>>> Excel and use the replace command. Thanks!
>>>
>>> Eric
>>>

>> If you don't want to write a batch file yourself, one of my favorite
>> freeware applications, Irfanview, includes a batch rename facility. Among
>> other things, you can include a param for the system date in the name
>> pattern. There's even a command line syntax. It's quite a powerful tool,
>> so you should experiment a bit with dummy files before you turn it loose
>> on your entire directory of pdfs. http://www.irfanview.net/
>>
>>
>> --
>> Lem -- MS-MVP - Networking

>
> I love using irfanview myself but I don't see pdf's in the list of valid
> file types for irfanview. I tried the batch conversion/rename function of
> irfanview but can't get it to see pdf's.
>
>


On the "batch conversion" screen, under the drop-down box for "Look in"
(which specifies the directory to look in), and under the window in
which the files in that directory will be displayed, there is another
drop-down box for "Files of type". The SECOND entry in the drop-down
list is "All files (*.*)" Select that and you'll see the pdf files.

Because Irfanview is, after all, primarily a graphics file viewer, there
is no entry for pdf files per se, but if you have a directory that's
full of pdf files with few if any other types of files, this shouldn't
be a problem.

--
Lem -- MS-MVP - Networking

To the moon and back with 64 Kbits of RAM and 512 Kbits of ROM.
http://en.wikipedia.org/wiki/Apollo_Guidance_Computer
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Reply

Bookmarks

Thread Tools

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 On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to rename my HHD? Dinosaur3.0 Windows XP 9 07-02-2007 02:20 PM
Undo batch rename Andre De Clercq Windows XP 2 04-26-2007 02:15 PM
Save batch window msgs to a file from the batch prog Stephen Rainey Windows XP 3 01-09-2007 06:15 PM
Rename in a batch file simonc Windows XP 4 01-04-2007 06:18 AM
Rename in a batch file simonc Windows XP 0 01-04-2007 06:18 AM


New To Technology Questions? Do You Need Help with Your Computer or Device? Do You Need Help with this site?

All times are GMT -8. The time now is 05:49 PM.


2003 - 2009 All Rights Reserved. Technology Questions

Search Engine Friendly URLs by vBSEO 3.3.0