PC Review


Reply
Thread Tools Rate Thread

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

 
 
CMD COPY command not working in Vista
Guest
Posts: n/a
 
      4th Feb 2008
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
 
Reply With Quote
 
 
 
 
SG
Guest
Posts: n/a
 
      4th Feb 2008
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
news:59DC385A-48A2-488B-9653-(E-Mail Removed)...
>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


 
Reply With Quote
 
Bob
Guest
Posts: n/a
 
      4th Feb 2008
Replace COPY with XCOPY.


"CMD "COPY" command not working in Vista" <CMD "COPY" command not working in
Vista @discussions.microsoft.com> wrote in message
news:59DC385A-48A2-488B-9653-(E-Mail Removed)...
>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


 
Reply With Quote
 
CMD COPY command not working in Vista
Guest
Posts: n/a
 
      5th Feb 2008
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
> news:59DC385A-48A2-488B-9653-(E-Mail Removed)...
> >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

>
>

 
Reply With Quote
 
Bob
Guest
Posts: n/a
 
      5th Feb 2008
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"
<(E-Mail Removed)> wrote in message
news:9BF5B6C5-D42F-4000-B0C1-(E-Mail Removed)...
> 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
>> news:59DC385A-48A2-488B-9653-(E-Mail Removed)...
>> >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

>>
>>


 
Reply With Quote
 
CMD COPY command not working in Vista
Guest
Posts: n/a
 
      5th Feb 2008
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"
> <(E-Mail Removed)> wrote in message
> news:9BF5B6C5-D42F-4000-B0C1-(E-Mail Removed)...
> > 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
> >> news:59DC385A-48A2-488B-9653-(E-Mail Removed)...
> >> >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
> >>
> >>

>
>

 
Reply With Quote
 
Ronnie Vernon MVP
Guest
Posts: n/a
 
      5th Feb 2008
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"
<(E-Mail Removed)> wrote in message
news:12EBEE35-4304-4D02-8DB0-(E-Mail Removed)...
> 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"
>> <(E-Mail Removed)> wrote in
>> message
>> news:9BF5B6C5-D42F-4000-B0C1-(E-Mail Removed)...
>> > 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
>> >> news:59DC385A-48A2-488B-9653-(E-Mail Removed)...
>> >> >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
>> >>
>> >>

>>
>>


 
Reply With Quote
 
Bob
Guest
Posts: n/a
 
      5th Feb 2008
You're welcome Pete.

"CMD "COPY" command not working in Vista"
<(E-Mail Removed)> wrote in message
news:12EBEE35-4304-4D02-8DB0-(E-Mail Removed)...
> 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"
>> <(E-Mail Removed)> wrote in
>> message
>> news:9BF5B6C5-D42F-4000-B0C1-(E-Mail Removed)...
>> > 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
>> >> news:59DC385A-48A2-488B-9653-(E-Mail Removed)...
>> >> >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
>> >>
>> >>

>>
>>


 
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
"Open command prompt here" and "Copy as path" Moody Marco Windows Vista Performance 10 4th May 2007 05:41 PM
after a ftp put command it just says "200 PORT command successful." and hangs forever. What could be wrong? when i test the ftp server using IE in "passive" mode it works fine. but ftp at command line hangs on "200 PORT comma Daniel Microsoft Windows 2000 1 29th Apr 2006 02:05 AM
Windows Explorer Problem: Clicking on "My Computer", then on "C" opens command prompt in C. Right click needed to open Windows GUI Uncle John Windows XP General 2 25th Mar 2006 02:11 PM
Want to copy "tree" command's output from cmd prompt to Word Chad Harris Windows XP Customization 2 1st Oct 2004 05:57 PM
Command to run Norton Viral Scan run box or command prompt/ "navwn32" doesn't work Chad Harris Windows XP Customization 8 16th Aug 2004 11:02 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 04:57 PM.