Microsoft Windows Vista Community Forums - Vistaheads
Recommended Download



Welcome to the Microsoft Windows Vista Community Forums - Vistaheads, YOUR Largest Resource for Windows Vista related information.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so , join our community today!

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

Driver Scanner 2009 - Free Scan Now

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

microsoft.public.windows.vista.file management




Recommended Fix - Fix Vista Errors and Optimize Performance

Click On Your Flag for Translation
Simplified Chinese French Spanish Italian Portugeuse Japanese German Dutch
Driver Scanner 2009 - Free Scan Now
Reply
  #1 (permalink)  
Old 02-04-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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 02-04-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


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-04-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


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-05-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

>
>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-05-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.micro soft.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

>>
>>


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-05-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.micro soft.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
> >>
> >>

>
>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-05-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.micro soft.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.micro soft.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
>> >>
>> >>

>>
>>


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 02-05-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.micro soft.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.micro soft.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
>> >>
>> >>

>>
>>


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


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 Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Article ID: 937249 "Mirovanje" is used for both the "Sleep" command and the "Hibernate" command on the "Shut Down" menu in the Slovenian version of Windows Vista KBArticles English 0 10-22-2007 20:00
How can I add the icons "Delete", "Cut", "Copy" and "Paste" in Vis Moonwalker microsoft.public.windows.vista.file management 5 09-17-2007 23:53
"Open command prompt here" and "Copy as path" Moody Marco microsoft.public.windows.vista.performance maintenance 10 05-04-2007 17:41
How to modify "Program Files" from the command prompt with UAC on? Steve Maser microsoft.public.windows.vista.general 3 02-28-2007 23:08
"Open Command Prompt Here"? Scott microsoft.public.windows.vista.general 20 02-28-2007 20:50




All times are GMT +1. The time now is 16:52.




Driver Scanner - Free Scan Now

Vistaheads.com is part of the Heads Network. See also XPHeads.com and Win7Heads.com.


Funny Commercials to make you laugh :-)

Design by Vjacheslav Trushkin for phpBBStyles.com.
Powered by vBulletin® Version 3.6.7
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2

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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120