A Windows Vista forum. Vista Banter

Welcome to Vista Banter.

You are currently viewing our boards as a guest which gives you limited access to view most discussions, articles and access our other FREE features. By joining our free community you will have access to ask questions and reply to others posts, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact support.

Go Back   Home » Vista Banter forum » Microsoft Windows Vista » Windows Vista File Management
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Windows Vista File Management Issues or questions in relation to Vista's file management. (microsoft.public.windows.vista.file_management)

Command prompt "COPY" command not working in brand new Windows Vis



 
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old February 4th 08, 05:15 PM posted to microsoft.public.windows.vista.file_management
CMD COPY command not working in Vista
external usenet poster
 
Posts: 1
Default Command prompt "COPY" command not working in brand new Windows Vis

I am trying to create an automatic Backup batch file using "COPY" command in
CMD prompt in brand new laptop running Vista; but the operation not working.
Any help please?

Pete
  #2 (permalink)  
Old February 4th 08, 07:44 PM posted to microsoft.public.windows.vista.file_management
SG[_3_]
external usenet poster
 
Posts: 664
Default Command prompt "COPY" command not working in brand new Windows Vis

Hi Pete,

Post the contents of your batch file, not the file it's self.

--
All the best,
SG
"CMD "COPY" command not working in Vista" CMD "COPY" command not working in
Vista @discussions.microsoft.com wrote in message
...
I am trying to create an automatic Backup batch file using "COPY" command
in
CMD prompt in brand new laptop running Vista; but the operation not
working.
Any help please?

Pete


  #3 (permalink)  
Old February 4th 08, 07:55 PM posted to microsoft.public.windows.vista.file_management
Bob
external usenet poster
 
Posts: 1,706
Default Command prompt "COPY" command not working in brand new Windows Vis

Replace COPY with XCOPY.


"CMD "COPY" command not working in Vista" CMD "COPY" command not working in
Vista @discussions.microsoft.com wrote in message
...
I am trying to create an automatic Backup batch file using "COPY" command
in
CMD prompt in brand new laptop running Vista; but the operation not
working.
Any help please?

Pete


  #4 (permalink)  
Old February 5th 08, 04:44 PM posted to microsoft.public.windows.vista.file_management
CMD COPY command not working in Vista[_2_]
external usenet poster
 
Posts: 2
Default Command prompt "COPY" command not working in brand new Windows

Hi SG,
Thanks for your reply!
The contents of my batch file is:

PATH C:\; C:\Windows; C:\Windows\System32
COPY C:\Program Files\BioClinic\*.*

Just two simple lines and this batch file was working fine in the old laptop
computer that was running Windows XP. I copied the same batch file to the
brand new DELL latop that came with Windows Vista and NOT working.
Thanks, Pete

"SG" wrote:

Hi Pete,

Post the contents of your batch file, not the file it's self.

--
All the best,
SG
"CMD "COPY" command not working in Vista" CMD "COPY" command not working in
Vista @discussions.microsoft.com wrote in message
...
I am trying to create an automatic Backup batch file using "COPY" command
in
CMD prompt in brand new laptop running Vista; but the operation not
working.
Any help please?

Pete



  #5 (permalink)  
Old February 5th 08, 05:47 PM posted to microsoft.public.windows.vista.file_management
Bob
external usenet poster
 
Posts: 1,706
Default Command prompt "COPY" command not working in brand new Windows

There is no destination given in your file and there's no need for the PATH
command.

Try this:
COPY (or XCOPY) source destination
Use the "/y" switch to avoid the overwrite prompt.


"CMD "COPY" command not working in Vista"
soft.com wrote in message
...
Hi SG,
Thanks for your reply!
The contents of my batch file is:

PATH C:\; C:\Windows; C:\Windows\System32
COPY C:\Program Files\BioClinic\*.*

Just two simple lines and this batch file was working fine in the old
laptop
computer that was running Windows XP. I copied the same batch file to the
brand new DELL latop that came with Windows Vista and NOT working.
Thanks, Pete

"SG" wrote:

Hi Pete,

Post the contents of your batch file, not the file it's self.

--
All the best,
SG
"CMD "COPY" command not working in Vista" CMD "COPY" command not working
in
Vista @discussions.microsoft.com wrote in message
...
I am trying to create an automatic Backup batch file using "COPY"
command
in
CMD prompt in brand new laptop running Vista; but the operation not
working.
Any help please?

Pete




  #6 (permalink)  
Old February 5th 08, 06:40 PM posted to microsoft.public.windows.vista.file_management
CMD COPY command not working in Vista[_2_]
external usenet poster
 
Posts: 2
Default Command prompt "COPY" command not working in brand new Windows

Bob,
Thanks for pointing out my omission!
Actually it is : "COPY C:\Program Files\BioClinic\*.* F:\" ,where the "F:"
being my USB memory stick.

I thought may be the Vista came with no "COPY" command available and was
looking for Vista CD but it was not in the box.

But you have a good suggestion to try with XCOPY and I will do that when I
get to the laptop next time because it's not with me now.
Thanks much, Pete



"Bob" wrote:

There is no destination given in your file and there's no need for the PATH
command.

Try this:
COPY (or XCOPY) source destination
Use the "/y" switch to avoid the overwrite prompt.


"CMD "COPY" command not working in Vista"
soft.com wrote in message
...
Hi SG,
Thanks for your reply!
The contents of my batch file is:

PATH C:\; C:\Windows; C:\Windows\System32
COPY C:\Program Files\BioClinic\*.*

Just two simple lines and this batch file was working fine in the old
laptop
computer that was running Windows XP. I copied the same batch file to the
brand new DELL latop that came with Windows Vista and NOT working.
Thanks, Pete

"SG" wrote:

Hi Pete,

Post the contents of your batch file, not the file it's self.

--
All the best,
SG
"CMD "COPY" command not working in Vista" CMD "COPY" command not working
in
Vista @discussions.microsoft.com wrote in message
...
I am trying to create an automatic Backup batch file using "COPY"
command
in
CMD prompt in brand new laptop running Vista; but the operation not
working.
Any help please?

Pete




  #7 (permalink)  
Old February 5th 08, 07:30 PM posted to microsoft.public.windows.vista.file_management
Ronnie Vernon MVP
external usenet poster
 
Posts: 2,847
Default Command prompt "COPY" command not working in brand new Windows

Pete

Check out 'Robocopy'. Much more powerful and with many more options.

Robocopy /?

--

Ronnie Vernon
Microsoft MVP
Windows Desktop Experience


"CMD "COPY" command not working in Vista"
soft.com wrote in message
...
Bob,
Thanks for pointing out my omission!
Actually it is : "COPY C:\Program Files\BioClinic\*.* F:\" ,where the
"F:"
being my USB memory stick.

I thought may be the Vista came with no "COPY" command available and was
looking for Vista CD but it was not in the box.

But you have a good suggestion to try with XCOPY and I will do that when I
get to the laptop next time because it's not with me now.
Thanks much, Pete



"Bob" wrote:

There is no destination given in your file and there's no need for the
PATH
command.

Try this:
COPY (or XCOPY) source destination
Use the "/y" switch to avoid the overwrite prompt.


"CMD "COPY" command not working in Vista"
soft.com wrote in
message
...
Hi SG,
Thanks for your reply!
The contents of my batch file is:

PATH C:\; C:\Windows; C:\Windows\System32
COPY C:\Program Files\BioClinic\*.*

Just two simple lines and this batch file was working fine in the old
laptop
computer that was running Windows XP. I copied the same batch file to
the
brand new DELL latop that came with Windows Vista and NOT working.
Thanks, Pete

"SG" wrote:

Hi Pete,

Post the contents of your batch file, not the file it's self.

--
All the best,
SG
"CMD "COPY" command not working in Vista" CMD "COPY" command not
working
in
Vista @discussions.microsoft.com wrote in message
...
I am trying to create an automatic Backup batch file using "COPY"
command
in
CMD prompt in brand new laptop running Vista; but the operation not
working.
Any help please?

Pete





  #8 (permalink)  
Old February 5th 08, 08:20 PM posted to microsoft.public.windows.vista.file_management
Bob
external usenet poster
 
Posts: 1,706
Default Command prompt "COPY" command not working in brand new Windows

You're welcome Pete.

"CMD "COPY" command not working in Vista"
soft.com wrote in message
...
Bob,
Thanks for pointing out my omission!
Actually it is : "COPY C:\Program Files\BioClinic\*.* F:\" ,where the
"F:"
being my USB memory stick.

I thought may be the Vista came with no "COPY" command available and was
looking for Vista CD but it was not in the box.

But you have a good suggestion to try with XCOPY and I will do that when I
get to the laptop next time because it's not with me now.
Thanks much, Pete



"Bob" wrote:

There is no destination given in your file and there's no need for the
PATH
command.

Try this:
COPY (or XCOPY) source destination
Use the "/y" switch to avoid the overwrite prompt.


"CMD "COPY" command not working in Vista"
soft.com wrote in
message
...
Hi SG,
Thanks for your reply!
The contents of my batch file is:

PATH C:\; C:\Windows; C:\Windows\System32
COPY C:\Program Files\BioClinic\*.*

Just two simple lines and this batch file was working fine in the old
laptop
computer that was running Windows XP. I copied the same batch file to
the
brand new DELL latop that came with Windows Vista and NOT working.
Thanks, Pete

"SG" wrote:

Hi Pete,

Post the contents of your batch file, not the file it's self.

--
All the best,
SG
"CMD "COPY" command not working in Vista" CMD "COPY" command not
working
in
Vista @discussions.microsoft.com wrote in message
...
I am trying to create an automatic Backup batch file using "COPY"
command
in
CMD prompt in brand new laptop running Vista; but the operation not
working.
Any help please?

Pete





 




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 08:05 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.Search Engine Optimization by vBSEO 3.0.0 RC6
Copyright ©2004-2012 Vista Banter.
The comments are property of their posters.