Go Back   TechArena Community > Technical Support > Computer Help > Windows Vista > Vista Help
Become a Member!
Forgot your username/password?
Register Tags Active Topics RSS Search Mark Forums Read SiteMap

Tags: , , , ,

Sponsored Links



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

Vista Help


Reply
 
Thread Tools Search this Thread
  #1  
Old 04-02-2008
CMD COPY command not working in Vista
 
Posts: n/a
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
Reply With Quote
  #2  
Old 05-02-2008
SG
 
Posts: n/a
Re: 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
news:59DC385A-48A2-488B-9653-B1CE8524BB2F@microsoft.com...
>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
  #3  
Old 05-02-2008
Bob
 
Posts: n/a
Re: 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
news:59DC385A-48A2-488B-9653-B1CE8524BB2F@microsoft.com...
>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
  #4  
Old 05-02-2008
CMD COPY command not working in Vista
 
Posts: n/a
Re: 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
> news:59DC385A-48A2-488B-9653-B1CE8524BB2F@microsoft.com...
> >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
  #5  
Old 06-02-2008
Bob
 
Posts: n/a
Re: 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"
<CMDCOPYcommandnotworkinginVista@discussions.microsoft.com> wrote in message
news:9BF5B6C5-D42F-4000-B0C1-F02D85FC3218@microsoft.com...
> 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-B1CE8524BB2F@microsoft.com...
>> >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
  #6  
Old 06-02-2008
CMD COPY command not working in Vista
 
Posts: n/a
Re: 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"
> <CMDCOPYcommandnotworkinginVista@discussions.microsoft.com> wrote in message
> news:9BF5B6C5-D42F-4000-B0C1-F02D85FC3218@microsoft.com...
> > 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-B1CE8524BB2F@microsoft.com...
> >> >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
  #7  
Old 06-02-2008
Ronnie Vernon MVP
 
Posts: n/a
Re: 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"
<CMDCOPYcommandnotworkinginVista@discussions.microsoft.com> wrote in message
news:12EBEE35-4304-4D02-8DB0-F9BA51B20CFA@microsoft.com...
> 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"
>> <CMDCOPYcommandnotworkinginVista@discussions.microsoft.com> wrote in
>> message
>> news:9BF5B6C5-D42F-4000-B0C1-F02D85FC3218@microsoft.com...
>> > 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-B1CE8524BB2F@microsoft.com...
>> >> >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
  #8  
Old 06-02-2008
Bob
 
Posts: n/a
Re: Command prompt "COPY" command not working in brand new Windows

You're welcome Pete.

"CMD "COPY" command not working in Vista"
<CMDCOPYcommandnotworkinginVista@discussions.microsoft.com> wrote in message
news:12EBEE35-4304-4D02-8DB0-F9BA51B20CFA@microsoft.com...
> 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"
>> <CMDCOPYcommandnotworkinginVista@discussions.microsoft.com> wrote in
>> message
>> news:9BF5B6C5-D42F-4000-B0C1-F02D85FC3218@microsoft.com...
>> > 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-B1CE8524BB2F@microsoft.com...
>> >> >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

  TechArena Community > Technical Support > Computer Help > Windows Vista > Vista Help


Thread Tools Search this Thread
Search this Thread:

Advanced Search


Similar Threads for: "Command prompt "COPY" command not working in brand new Windows Vis"
Thread Thread Starter Forum Replies Last Post
Shell command "load" not working in CloudMe jAYASENA Technology & Internet 4 18-06-2011 11:14 AM
Access denied to "C:" drive in command prompt zakir Operating Systems 3 14-08-2009 03:48 PM
Windows Mail Command "The Command Failed To Execute" Rainald Taesler Windows Vista Mail 2 17-06-2009 01:52 AM
Discover the amazing command "SystemInfo" in Windows XP/Vista TechyGuy Tips & Tweaks 0 05-12-2008 08:20 PM
SMTP command "xexch50" with "504 Need to authenticate first ". The full command sent was "XEXCH50 1020 2 ". ecscomp Small Business Server 3 08-12-2006 01:24 PM


All times are GMT +5.5. The time now is 05:23 AM.